summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Doxyfile2512
-rw-r--r--images/tikzit.ai967
-rw-r--r--images/tikzit48x48.pngbin2606 -> 2435 bytes
-rw-r--r--images/tikzit512x512.pngbin0 -> 27019 bytes
-rw-r--r--src/gui/tikzscene.cpp11
5 files changed, 3490 insertions, 0 deletions
diff --git a/Doxyfile b/Doxyfile
new file mode 100644
index 0000000..039ed89
--- /dev/null
+++ b/Doxyfile
@@ -0,0 +1,2512 @@
+# Doxyfile 1.8.14
+
+# This file describes the settings to be used by the documentation system
+# doxygen (www.doxygen.org) for a project.
+#
+# All text after a double hash (##) is considered a comment and is placed in
+# front of the TAG it is preceding.
+#
+# All text after a single hash (#) is considered a comment and will be ignored.
+# The format is:
+# TAG = value [value, ...]
+# For lists, items can also be appended using:
+# TAG += value [value, ...]
+# Values that contain spaces should be placed between quotes (\" \").
+
+#---------------------------------------------------------------------------
+# Project related configuration options
+#---------------------------------------------------------------------------
+
+# This tag specifies the encoding used for all characters in the config file
+# that follow. The default is UTF-8 which is also the encoding used for all text
+# before the first occurrence of this tag. Doxygen uses libiconv (or the iconv
+# built into libc) for the transcoding. See
+# https://www.gnu.org/software/libiconv/ for the list of possible encodings.
+# The default value is: UTF-8.
+
+DOXYFILE_ENCODING = UTF-8
+
+# The PROJECT_NAME tag is a single word (or a sequence of words surrounded by
+# double-quotes, unless you are using Doxywizard) that should identify the
+# project for which the documentation is generated. This name is used in the
+# title of most generated pages and in a few other places.
+# The default value is: My Project.
+
+PROJECT_NAME = TikZiT
+
+# The PROJECT_NUMBER tag can be used to enter a project or revision number. This
+# could be handy for archiving the generated documentation or if some version
+# control system is used.
+
+PROJECT_NUMBER = 2.0
+
+# Using the PROJECT_BRIEF tag one can provide an optional one line description
+# for a project that appears at the top of each page and should give viewer a
+# quick idea about the purpose of the project. Keep the description short.
+
+PROJECT_BRIEF = "A GUI diagram editor for TikZ"
+
+# With the PROJECT_LOGO tag one can specify a logo or an icon that is included
+# in the documentation. The maximum height of the logo should not exceed 55
+# pixels and the maximum width should not exceed 200 pixels. Doxygen will copy
+# the logo to the output directory.
+
+PROJECT_LOGO = images/tikzit48x48.png
+
+# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) path
+# into which the generated documentation will be written. If a relative path is
+# entered, it will be relative to the location where doxygen was started. If
+# left blank the current directory will be used.
+
+OUTPUT_DIRECTORY = ../tikzit.github.io/docs
+
+# If the CREATE_SUBDIRS tag is set to YES then doxygen will create 4096 sub-
+# directories (in 2 levels) under the output directory of each output format and
+# will distribute the generated files over these directories. Enabling this
+# option can be useful when feeding doxygen a huge amount of source files, where
+# putting all generated files in the same directory would otherwise causes
+# performance problems for the file system.
+# The default value is: NO.
+
+CREATE_SUBDIRS = NO
+
+# If the ALLOW_UNICODE_NAMES tag is set to YES, doxygen will allow non-ASCII
+# characters to appear in the names of generated files. If set to NO, non-ASCII
+# characters will be escaped, for example _xE3_x81_x84 will be used for Unicode
+# U+3044.
+# The default value is: NO.
+
+ALLOW_UNICODE_NAMES = NO
+
+# The OUTPUT_LANGUAGE tag is used to specify the language in which all
+# documentation generated by doxygen is written. Doxygen will use this
+# information to generate all constant output in the proper language.
+# Possible values are: Afrikaans, Arabic, Armenian, Brazilian, Catalan, Chinese,
+# Chinese-Traditional, Croatian, Czech, Danish, Dutch, English (United States),
+# Esperanto, Farsi (Persian), Finnish, French, German, Greek, Hungarian,
+# Indonesian, Italian, Japanese, Japanese-en (Japanese with English messages),
+# Korean, Korean-en (Korean with English messages), Latvian, Lithuanian,
+# Macedonian, Norwegian, Persian (Farsi), Polish, Portuguese, Romanian, Russian,
+# Serbian, Serbian-Cyrillic, Slovak, Slovene, Spanish, Swedish, Turkish,
+# Ukrainian and Vietnamese.
+# The default value is: English.
+
+OUTPUT_LANGUAGE = English
+
+# If the BRIEF_MEMBER_DESC tag is set to YES, doxygen will include brief member
+# descriptions after the members that are listed in the file and class
+# documentation (similar to Javadoc). Set to NO to disable this.
+# The default value is: YES.
+
+BRIEF_MEMBER_DESC = YES
+
+# If the REPEAT_BRIEF tag is set to YES, doxygen will prepend the brief
+# description of a member or function before the detailed description
+#
+# Note: If both HIDE_UNDOC_MEMBERS and BRIEF_MEMBER_DESC are set to NO, the
+# brief descriptions will be completely suppressed.
+# The default value is: YES.
+
+REPEAT_BRIEF = YES
+
+# This tag implements a quasi-intelligent brief description abbreviator that is
+# used to form the text in various listings. Each string in this list, if found
+# as the leading text of the brief description, will be stripped from the text
+# and the result, after processing the whole list, is used as the annotated
+# text. Otherwise, the brief description is used as-is. If left blank, the
+# following values are used ($name is automatically replaced with the name of
+# the entity):The $name class, The $name widget, The $name file, is, provides,
+# specifies, contains, represents, a, an and the.
+
+ABBREVIATE_BRIEF = "The $name class" \
+ "The $name widget" \
+ "The $name file" \
+ is \
+ provides \
+ specifies \
+ contains \
+ represents \
+ a \
+ an \
+ the
+
+# If the ALWAYS_DETAILED_SEC and REPEAT_BRIEF tags are both set to YES then
+# doxygen will generate a detailed section even if there is only a brief
+# description.
+# The default value is: NO.
+
+ALWAYS_DETAILED_SEC = NO
+
+# If the INLINE_INHERITED_MEMB tag is set to YES, doxygen will show all
+# inherited members of a class in the documentation of that class as if those
+# members were ordinary class members. Constructors, destructors and assignment
+# operators of the base classes will not be shown.
+# The default value is: NO.
+
+INLINE_INHERITED_MEMB = NO
+
+# If the FULL_PATH_NAMES tag is set to YES, doxygen will prepend the full path
+# before files name in the file list and in the header files. If set to NO the
+# shortest path that makes the file name unique will be used
+# The default value is: YES.
+
+FULL_PATH_NAMES = YES
+
+# The STRIP_FROM_PATH tag can be used to strip a user-defined part of the path.
+# Stripping is only done if one of the specified strings matches the left-hand
+# part of the path. The tag can be used to show relative paths in the file list.
+# If left blank the directory from which doxygen is run is used as the path to
+# strip.
+#
+# Note that you can specify absolute paths here, but also relative paths, which
+# will be relative from the directory where doxygen is started.
+# This tag requires that the tag FULL_PATH_NAMES is set to YES.
+
+STRIP_FROM_PATH =
+
+# The STRIP_FROM_INC_PATH tag can be used to strip a user-defined part of the
+# path mentioned in the documentation of a class, which tells the reader which
+# header file to include in order to use a class. If left blank only the name of
+# the header file containing the class definition is used. Otherwise one should
+# specify the list of include paths that are normally passed to the compiler
+# using the -I flag.
+
+STRIP_FROM_INC_PATH =
+
+# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter (but
+# less readable) file names. This can be useful is your file systems doesn't
+# support long names like on DOS, Mac, or CD-ROM.
+# The default value is: NO.
+
+SHORT_NAMES = NO
+
+# If the JAVADOC_AUTOBRIEF tag is set to YES then doxygen will interpret the
+# first line (until the first dot) of a Javadoc-style comment as the brief
+# description. If set to NO, the Javadoc-style will behave just like regular Qt-
+# style comments (thus requiring an explicit @brief command for a brief
+# description.)
+# The default value is: NO.
+
+JAVADOC_AUTOBRIEF = NO
+
+# If the QT_AUTOBRIEF tag is set to YES then doxygen will interpret the first
+# line (until the first dot) of a Qt-style comment as the brief description. If
+# set to NO, the Qt-style will behave just like regular Qt-style comments (thus
+# requiring an explicit \brief command for a brief description.)
+# The default value is: NO.
+
+QT_AUTOBRIEF = NO
+
+# The MULTILINE_CPP_IS_BRIEF tag can be set to YES to make doxygen treat a
+# multi-line C++ special comment block (i.e. a block of //! or /// comments) as
+# a brief description. This used to be the default behavior. The new default is
+# to treat a multi-line C++ comment block as a detailed description. Set this
+# tag to YES if you prefer the old behavior instead.
+#
+# Note that setting this tag to YES also means that rational rose comments are
+# not recognized any more.
+# The default value is: NO.
+
+MULTILINE_CPP_IS_BRIEF = NO
+
+# If the INHERIT_DOCS tag is set to YES then an undocumented member inherits the
+# documentation from any documented member that it re-implements.
+# The default value is: YES.
+
+INHERIT_DOCS = YES
+
+# If the SEPARATE_MEMBER_PAGES tag is set to YES then doxygen will produce a new
+# page for each member. If set to NO, the documentation of a member will be part
+# of the file/class/namespace that contains it.
+# The default value is: NO.
+
+SEPARATE_MEMBER_PAGES = NO
+
+# The TAB_SIZE tag can be used to set the number of spaces in a tab. Doxygen
+# uses this value to replace tabs by spaces in code fragments.
+# Minimum value: 1, maximum value: 16, default value: 4.
+
+TAB_SIZE = 4
+
+# This tag can be used to specify a number of aliases that act as commands in
+# the documentation. An alias has the form:
+# name=value
+# For example adding
+# "sideeffect=@par Side Effects:\n"
+# will allow you to put the command \sideeffect (or @sideeffect) in the
+# documentation, which will result in a user-defined paragraph with heading
+# "Side Effects:". You can put \n's in the value part of an alias to insert
+# newlines (in the resulting output). You can put ^^ in the value part of an
+# alias to insert a newline as if a physical newline was in the original file.
+
+ALIASES =
+
+# This tag can be used to specify a number of word-keyword mappings (TCL only).
+# A mapping has the form "name=value". For example adding "class=itcl::class"
+# will allow you to use the command class in the itcl::class meaning.
+
+TCL_SUBST =
+
+# Set the OPTIMIZE_OUTPUT_FOR_C tag to YES if your project consists of C sources
+# only. Doxygen will then generate output that is more tailored for C. For
+# instance, some of the names that are used will be different. The list of all
+# members will be omitted, etc.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_FOR_C = NO
+
+# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java or
+# Python sources only. Doxygen will then generate output that is more tailored
+# for that language. For instance, namespaces will be presented as packages,
+# qualified scopes will look different, etc.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_JAVA = NO
+
+# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran
+# sources. Doxygen will then generate output that is tailored for Fortran.
+# The default value is: NO.
+
+OPTIMIZE_FOR_FORTRAN = NO
+
+# Set the OPTIMIZE_OUTPUT_VHDL tag to YES if your project consists of VHDL
+# sources. Doxygen will then generate output that is tailored for VHDL.
+# The default value is: NO.
+
+OPTIMIZE_OUTPUT_VHDL = NO
+
+# Doxygen selects the parser to use depending on the extension of the files it
+# parses. With this tag you can assign which parser to use for a given
+# extension. Doxygen has a built-in mapping, but you can override or extend it
+# using this tag. The format is ext=language, where ext is a file extension, and
+# language is one of the parsers supported by doxygen: IDL, Java, Javascript,
+# C#, C, C++, D, PHP, Objective-C, Python, Fortran (fixed format Fortran:
+# FortranFixed, free formatted Fortran: FortranFree, unknown formatted Fortran:
+# Fortran. In the later case the parser tries to guess whether the code is fixed
+# or free formatted code, this is the default for Fortran type files), VHDL. For
+# instance to make doxygen treat .inc files as Fortran files (default is PHP),
+# and .f files as C (default is Fortran), use: inc=Fortran f=C.
+#
+# Note: For files without extension you can use no_extension as a placeholder.
+#
+# Note that for custom extensions you also need to set FILE_PATTERNS otherwise
+# the files are not read by doxygen.
+
+EXTENSION_MAPPING =
+
+# If the MARKDOWN_SUPPORT tag is enabled then doxygen pre-processes all comments
+# according to the Markdown format, which allows for more readable
+# documentation. See http://daringfireball.net/projects/markdown/ for details.
+# The output of markdown processing is further processed by doxygen, so you can
+# mix doxygen, HTML, and XML commands with Markdown formatting. Disable only in
+# case of backward compatibilities issues.
+# The default value is: YES.
+
+MARKDOWN_SUPPORT = YES
+
+# When the TOC_INCLUDE_HEADINGS tag is set to a non-zero value, all headings up
+# to that level are automatically included in the table of contents, even if
+# they do not have an id attribute.
+# Note: This feature currently applies only to Markdown headings.
+# Minimum value: 0, maximum value: 99, default value: 0.
+# This tag requires that the tag MARKDOWN_SUPPORT is set to YES.
+
+TOC_INCLUDE_HEADINGS = 0
+
+# When enabled doxygen tries to link words that correspond to documented
+# classes, or namespaces to their corresponding documentation. Such a link can
+# be prevented in individual cases by putting a % sign in front of the word or
+# globally by setting AUTOLINK_SUPPORT to NO.
+# The default value is: YES.
+
+AUTOLINK_SUPPORT = YES
+
+# If you use STL classes (i.e. std::string, std::vector, etc.) but do not want
+# to include (a tag file for) the STL sources as input, then you should set this
+# tag to YES in order to let doxygen match functions declarations and
+# definitions whose arguments contain STL classes (e.g. func(std::string);
+# versus func(std::string) {}). This also make the inheritance and collaboration
+# diagrams that involve STL classes more complete and accurate.
+# The default value is: NO.
+
+BUILTIN_STL_SUPPORT = NO
+
+# If you use Microsoft's C++/CLI language, you should set this option to YES to
+# enable parsing support.
+# The default value is: NO.
+
+CPP_CLI_SUPPORT = NO
+
+# Set the SIP_SUPPORT tag to YES if your project consists of sip (see:
+# https://www.riverbankcomputing.com/software/sip/intro) sources only. Doxygen
+# will parse them like normal C++ but will assume all classes use public instead
+# of private inheritance when no explicit protection keyword is present.
+# The default value is: NO.
+
+SIP_SUPPORT = NO
+
+# For Microsoft's IDL there are propget and propput attributes to indicate
+# getter and setter methods for a property. Setting this option to YES will make
+# doxygen to replace the get and set methods by a property in the documentation.
+# This will only work if the methods are indeed getting or setting a simple
+# type. If this is not the case, or you want to show the methods anyway, you
+# should set this option to NO.
+# The default value is: YES.
+
+IDL_PROPERTY_SUPPORT = YES
+
+# If member grouping is used in the documentation and the DISTRIBUTE_GROUP_DOC
+# tag is set to YES then doxygen will reuse the documentation of the first
+# member in the group (if any) for the other members of the group. By default
+# all members of a group must be documented explicitly.
+# The default value is: NO.
+
+DISTRIBUTE_GROUP_DOC = NO
+
+# If one adds a struct or class to a group and this option is enabled, then also
+# any nested class or struct is added to the same group. By default this option
+# is disabled and one has to add nested compounds explicitly via \ingroup.
+# The default value is: NO.
+
+GROUP_NESTED_COMPOUNDS = NO
+
+# Set the SUBGROUPING tag to YES to allow class member groups of the same type
+# (for instance a group of public functions) to be put as a subgroup of that
+# type (e.g. under the Public Functions section). Set it to NO to prevent
+# subgrouping. Alternatively, this can be done per class using the
+# \nosubgrouping command.
+# The default value is: YES.
+
+SUBGROUPING = YES
+
+# When the INLINE_GROUPED_CLASSES tag is set to YES, classes, structs and unions
+# are shown inside the group in which they are included (e.g. using \ingroup)
+# instead of on a separate page (for HTML and Man pages) or section (for LaTeX
+# and RTF).
+#
+# Note that this feature does not work in combination with
+# SEPARATE_MEMBER_PAGES.
+# The default value is: NO.
+
+INLINE_GROUPED_CLASSES = NO
+
+# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and unions
+# with only public data fields or simple typedef fields will be shown inline in
+# the documentation of the scope in which they are defined (i.e. file,
+# namespace, or group documentation), provided this scope is documented. If set
+# to NO, structs, classes, and unions are shown on a separate page (for HTML and
+# Man pages) or section (for LaTeX and RTF).
+# The default value is: NO.
+
+INLINE_SIMPLE_STRUCTS = NO
+
+# When TYPEDEF_HIDES_STRUCT tag is enabled, a typedef of a struct, union, or
+# enum is documented as struct, union, or enum with the name of the typedef. So
+# typedef struct TypeS {} TypeT, will appear in the documentation as a struct
+# with name TypeT. When disabled the typedef will appear as a member of a file,
+# namespace, or class. And the struct will be named TypeS. This can typically be
+# useful for C code in case the coding convention dictates that all compound
+# types are typedef'ed and only the typedef is referenced, never the tag name.
+# The default value is: NO.
+
+TYPEDEF_HIDES_STRUCT = NO
+
+# The size of the symbol lookup cache can be set using LOOKUP_CACHE_SIZE. This
+# cache is used to resolve symbols given their name and scope. Since this can be
+# an expensive process and often the same symbol appears multiple times in the
+# code, doxygen keeps a cache of pre-resolved symbols. If the cache is too small
+# doxygen will become slower. If the cache is too large, memory is wasted. The
+# cache size is given by this formula: 2^(16+LOOKUP_CACHE_SIZE). The valid range
+# is 0..9, the default is 0, corresponding to a cache size of 2^16=65536
+# symbols. At the end of a run doxygen will report the cache usage and suggest
+# the optimal cache size from a speed point of view.
+# Minimum value: 0, maximum value: 9, default value: 0.
+
+LOOKUP_CACHE_SIZE = 0
+
+#---------------------------------------------------------------------------
+# Build related configuration options
+#---------------------------------------------------------------------------
+
+# If the EXTRACT_ALL tag is set to YES, doxygen will assume all entities in
+# documentation are documented, even if no documentation was available. Private
+# class members and static file members will be hidden unless the
+# EXTRACT_PRIVATE respectively EXTRACT_STATIC tags are set to YES.
+# Note: This will also disable the warnings about undocumented members that are
+# normally produced when WARNINGS is set to YES.
+# The default value is: NO.
+
+EXTRACT_ALL = NO
+
+# If the EXTRACT_PRIVATE tag is set to YES, all private members of a class will
+# be included in the documentation.
+# The default value is: NO.
+
+EXTRACT_PRIVATE = NO
+
+# If the EXTRACT_PACKAGE tag is set to YES, all members with package or internal
+# scope will be included in the documentation.
+# The default value is: NO.
+
+EXTRACT_PACKAGE = NO
+
+# If the EXTRACT_STATIC tag is set to YES, all static members of a file will be
+# included in the documentation.
+# The default value is: NO.
+
+EXTRACT_STATIC = NO
+
+# If the EXTRACT_LOCAL_CLASSES tag is set to YES, classes (and structs) defined
+# locally in source files will be included in the documentation. If set to NO,
+# only classes defined in header files are included. Does not have any effect
+# for Java sources.
+# The default value is: YES.
+
+EXTRACT_LOCAL_CLASSES = YES
+
+# This flag is only useful for Objective-C code. If set to YES, local methods,
+# which are defined in the implementation section but not in the interface are
+# included in the documentation. If set to NO, only methods in the interface are
+# included.
+# The default value is: NO.
+
+EXTRACT_LOCAL_METHODS = NO
+
+# If this flag is set to YES, the members of anonymous namespaces will be
+# extracted and appear in the documentation as a namespace called
+# 'anonymous_namespace{file}', where file will be replaced with the base name of
+# the file that contains the anonymous namespace. By default anonymous namespace
+# are hidden.
+# The default value is: NO.
+
+EXTRACT_ANON_NSPACES = NO
+
+# If the HIDE_UNDOC_MEMBERS tag is set to YES, doxygen will hide all
+# undocumented members inside documented classes or files. If set to NO these
+# members will be included in the various overviews, but no documentation
+# section is generated. This option has no effect if EXTRACT_ALL is enabled.
+# The default value is: NO.
+
+HIDE_UNDOC_MEMBERS = NO
+
+# If the HIDE_UNDOC_CLASSES tag is set to YES, doxygen will hide all
+# undocumented classes that are normally visible in the class hierarchy. If set
+# to NO, these classes will be included in the various overviews. This option
+# has no effect if EXTRACT_ALL is enabled.
+# The default value is: NO.
+
+HIDE_UNDOC_CLASSES = NO
+
+# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, doxygen will hide all friend
+# (class|struct|union) declarations. If set to NO, these declarations will be
+# included in the documentation.
+# The default value is: NO.
+
+HIDE_FRIEND_COMPOUNDS = NO
+
+# If the HIDE_IN_BODY_DOCS tag is set to YES, doxygen will hide any
+# documentation blocks found inside the body of a function. If set to NO, these
+# blocks will be appended to the function's detailed documentation block.
+# The default value is: NO.
+
+HIDE_IN_BODY_DOCS = NO
+
+# The INTERNAL_DOCS tag determines if documentation that is typed after a
+# \internal command is included. If the tag is set to NO then the documentation
+# will be excluded. Set it to YES to include the internal documentation.
+# The default value is: NO.
+
+INTERNAL_DOCS = NO
+
+# If the CASE_SENSE_NAMES tag is set to NO then doxygen will only generate file
+# names in lower-case letters. If set to YES, upper-case letters are also
+# allowed. This is useful if you have classes or files whose names only differ
+# in case and if your file system supports case sensitive file names. Windows
+# and Mac users are advised to set this option to NO.
+# The default value is: system dependent.
+
+CASE_SENSE_NAMES = NO
+
+# If the HIDE_SCOPE_NAMES tag is set to NO then doxygen will show members with
+# their full class and namespace scopes in the documentation. If set to YES, the
+# scope will be hidden.
+# The default value is: NO.
+
+HIDE_SCOPE_NAMES = NO
+
+# If the HIDE_COMPOUND_REFERENCE tag is set to NO (default) then doxygen will
+# append additional text to a page's title, such as Class Reference. If set to
+# YES the compound reference will be hidden.
+# The default value is: NO.
+
+HIDE_COMPOUND_REFERENCE= NO
+
+# If the SHOW_INCLUDE_FILES tag is set to YES then doxygen will put a list of
+# the files that are included by a file in the documentation of that file.
+# The default value is: YES.
+
+SHOW_INCLUDE_FILES = YES
+
+# If the SHOW_GROUPED_MEMB_INC tag is set to YES then Doxygen will add for each
+# grouped member an include statement to the documentation, telling the reader
+# which file to include in order to use the member.
+# The default value is: NO.
+
+SHOW_GROUPED_MEMB_INC = NO
+
+# If the FORCE_LOCAL_INCLUDES tag is set to YES then doxygen will list include
+# files with double quotes in the documentation rather than with sharp brackets.
+# The default value is: NO.
+
+FORCE_LOCAL_INCLUDES = NO
+
+# If the INLINE_INFO tag is set to YES then a tag [inline] is inserted in the
+# documentation for inline members.
+# The default value is: YES.
+
+INLINE_INFO = YES
+
+# If the SORT_MEMBER_DOCS tag is set to YES then doxygen will sort the
+# (detailed) documentation of file and class members alphabetically by member
+# name. If set to NO, the members will appear in declaration order.
+# The default value is: YES.
+
+SORT_MEMBER_DOCS = YES
+
+# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the brief
+# descriptions of file, namespace and class members alphabetically by member
+# name. If set to NO, the members will appear in declaration order. Note that
+# this will also influence the order of the classes in the class list.
+# The default value is: NO.
+
+SORT_BRIEF_DOCS = NO
+
+# If the SORT_MEMBERS_CTORS_1ST tag is set to YES then doxygen will sort the
+# (brief and detailed) documentation of class members so that constructors and
+# destructors are listed first. If set to NO the constructors will appear in the
+# respective orders defined by SORT_BRIEF_DOCS and SORT_MEMBER_DOCS.
+# Note: If SORT_BRIEF_DOCS is set to NO this option is ignored for sorting brief
+# member documentation.
+# Note: If SORT_MEMBER_DOCS is set to NO this option is ignored for sorting
+# detailed member documentation.
+# The default value is: NO.
+
+SORT_MEMBERS_CTORS_1ST = NO
+
+# If the SORT_GROUP_NAMES tag is set to YES then doxygen will sort the hierarchy
+# of group names into alphabetical order. If set to NO the group names will
+# appear in their defined order.
+# The default value is: NO.
+
+SORT_GROUP_NAMES = NO
+
+# If the SORT_BY_SCOPE_NAME tag is set to YES, the class list will be sorted by
+# fully-qualified names, including namespaces. If set to NO, the class list will
+# be sorted only by class name, not including the namespace part.
+# Note: This option is not very useful if HIDE_SCOPE_NAMES is set to YES.
+# Note: This option applies only to the class list, not to the alphabetical
+# list.
+# The default value is: NO.
+
+SORT_BY_SCOPE_NAME = NO
+
+# If the STRICT_PROTO_MATCHING option is enabled and doxygen fails to do proper
+# type resolution of all parameters of a function it will reject a match between
+# the prototype and the implementation of a member function even if there is
+# only one candidate or it is obvious which candidate to choose by doing a
+# simple string match. By disabling STRICT_PROTO_MATCHING doxygen will still
+# accept a match between prototype and implementation in such cases.
+# The default value is: NO.
+
+STRICT_PROTO_MATCHING = NO
+
+# The GENERATE_TODOLIST tag can be used to enable (YES) or disable (NO) the todo
+# list. This list is created by putting \todo commands in the documentation.
+# The default value is: YES.
+
+GENERATE_TODOLIST = YES
+
+# The GENERATE_TESTLIST tag can be used to enable (YES) or disable (NO) the test
+# list. This list is created by putting \test commands in the documentation.
+# The default value is: YES.
+
+GENERATE_TESTLIST = YES
+
+# The GENERATE_BUGLIST tag can be used to enable (YES) or disable (NO) the bug
+# list. This list is created by putting \bug commands in the documentation.
+# The default value is: YES.
+
+GENERATE_BUGLIST = YES
+
+# The GENERATE_DEPRECATEDLIST tag can be used to enable (YES) or disable (NO)
+# the deprecated list. This list is created by putting \deprecated commands in
+# the documentation.
+# The default value is: YES.
+
+GENERATE_DEPRECATEDLIST= YES
+
+# The ENABLED_SECTIONS tag can be used to enable conditional documentation
+# sections, marked by \if <section_label> ... \endif and \cond <section_label>
+# ... \endcond blocks.
+
+ENABLED_SECTIONS =
+
+# The MAX_INITIALIZER_LINES tag determines the maximum number of lines that the
+# initial value of a variable or macro / define can have for it to appear in the
+# documentation. If the initializer consists of more lines than specified here
+# it will be hidden. Use a value of 0 to hide initializers completely. The
+# appearance of the value of individual variables and macros / defines can be
+# controlled using \showinitializer or \hideinitializer command in the
+# documentation regardless of this setting.
+# Minimum value: 0, maximum value: 10000, default value: 30.
+
+MAX_INITIALIZER_LINES = 30
+
+# Set the SHOW_USED_FILES tag to NO to disable the list of files generated at
+# the bottom of the documentation of classes and structs. If set to YES, the
+# list will mention the files that were used to generate the documentation.
+# The default value is: YES.
+
+SHOW_USED_FILES = YES
+
+# Set the SHOW_FILES tag to NO to disable the generation of the Files page. This
+# will remove the Files entry from the Quick Index and from the Folder Tree View
+# (if specified).
+# The default value is: YES.
+
+SHOW_FILES = YES
+
+# Set the SHOW_NAMESPACES tag to NO to disable the generation of the Namespaces
+# page. This will remove the Namespaces entry from the Quick Index and from the
+# Folder Tree View (if specified).
+# The default value is: YES.
+
+SHOW_NAMESPACES = YES
+
+# The FILE_VERSION_FILTER tag can be used to specify a program or script that
+# doxygen should invoke to get the current version for each file (typically from
+# the version control system). Doxygen will invoke the program by executing (via
+# popen()) the command command input-file, where command is the value of the
+# FILE_VERSION_FILTER tag, and input-file is the name of an input file provided
+# by doxygen. Whatever the program writes to standard output is used as the file
+# version. For an example see the documentation.
+
+FILE_VERSION_FILTER =
+
+# The LAYOUT_FILE tag can be used to specify a layout file which will be parsed
+# by doxygen. The layout file controls the global structure of the generated
+# output files in an output format independent way. To create the layout file
+# that represents doxygen's defaults, run doxygen with the -l option. You can
+# optionally specify a file name after the option, if omitted DoxygenLayout.xml
+# will be used as the name of the layout file.
+#
+# Note that if you run doxygen from a directory containing a file called
+# DoxygenLayout.xml, doxygen will parse it automatically even if the LAYOUT_FILE
+# tag is left empty.
+
+LAYOUT_FILE =
+
+# The CITE_BIB_FILES tag can be used to specify one or more bib files containing
+# the reference definitions. This must be a list of .bib files. The .bib
+# extension is automatically appended if omitted. This requires the bibtex tool
+# to be installed. See also https://en.wikipedia.org/wiki/BibTeX for more info.
+# For LaTeX the style of the bibliography can be controlled using
+# LATEX_BIB_STYLE. To use this feature you need bibtex and perl available in the
+# search path. See also \cite for info how to create references.
+
+CITE_BIB_FILES =
+
+#---------------------------------------------------------------------------
+# Configuration options related to warning and progress messages
+#---------------------------------------------------------------------------
+
+# The QUIET tag can be used to turn on/off the messages that are generated to
+# standard output by doxygen. If QUIET is set to YES this implies that the
+# messages are off.
+# The default value is: NO.
+
+QUIET = NO
+
+# The WARNINGS tag can be used to turn on/off the warning messages that are
+# generated to standard error (stderr) by doxygen. If WARNINGS is set to YES
+# this implies that the warnings are on.
+#
+# Tip: Turn warnings on while writing the documentation.
+# The default value is: YES.
+
+WARNINGS = YES
+
+# If the WARN_IF_UNDOCUMENTED tag is set to YES then doxygen will generate
+# warnings for undocumented members. If EXTRACT_ALL is set to YES then this flag
+# will automatically be disabled.
+# The default value is: YES.
+
+WARN_IF_UNDOCUMENTED = YES
+
+# If the WARN_IF_DOC_ERROR tag is set to YES, doxygen will generate warnings for
+# potential errors in the documentation, such as not documenting some parameters
+# in a documented function, or documenting parameters that don't exist or using
+# markup commands wrongly.
+# The default value is: YES.
+
+WARN_IF_DOC_ERROR = YES
+
+# This WARN_NO_PARAMDOC option can be enabled to get warnings for functions that
+# are documented, but have no documentation for their parameters or return
+# value. If set to NO, doxygen will only warn about wrong or incomplete
+# parameter documentation, but not about the absence of documentation.
+# The default value is: NO.
+
+WARN_NO_PARAMDOC = NO
+
+# If the WARN_AS_ERROR tag is set to YES then doxygen will immediately stop when
+# a warning is encountered.
+# The default value is: NO.
+
+WARN_AS_ERROR = NO
+
+# The WARN_FORMAT tag determines the format of the warning messages that doxygen
+# can produce. The string should contain the $file, $line, and $text tags, which
+# will be replaced by the file and line number from which the warning originated
+# and the warning text. Optionally the format may contain $version, which will
+# be replaced by the version of the file (if it could be obtained via
+# FILE_VERSION_FILTER)
+# The default value is: $file:$line: $text.
+
+WARN_FORMAT = "$file:$line: $text"
+
+# The WARN_LOGFILE tag can be used to specify a file to which warning and error
+# messages should be written. If left blank the output is written to standard
+# error (stderr).
+
+WARN_LOGFILE =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the input files
+#---------------------------------------------------------------------------
+
+# The INPUT tag is used to specify the files and/or directories that contain
+# documented source files. You may enter file names like myfile.cpp or
+# directories like /usr/src/myproject. Separate the files or directories with
+# spaces. See also FILE_PATTERNS and EXTENSION_MAPPING
+# Note: If this tag is empty the current directory is searched.
+
+INPUT = /Users/alek/git/tikzit/src
+
+# This tag can be used to specify the character encoding of the source files
+# that doxygen parses. Internally doxygen uses the UTF-8 encoding. Doxygen uses
+# libiconv (or the iconv built into libc) for the transcoding. See the libiconv
+# documentation (see: https://www.gnu.org/software/libiconv/) for the list of
+# possible encodings.
+# The default value is: UTF-8.
+
+INPUT_ENCODING = UTF-8
+
+# If the value of the INPUT tag contains directories, you can use the
+# FILE_PATTERNS tag to specify one or more wildcard patterns (like *.cpp and
+# *.h) to filter out the source-files in the directories.
+#
+# Note that for custom extensions or not directly supported extensions you also
+# need to set EXTENSION_MAPPING for the extension otherwise the files are not
+# read by doxygen.
+#
+# If left blank the following patterns are tested:*.c, *.cc, *.cxx, *.cpp,
+# *.c++, *.java, *.ii, *.ixx, *.ipp, *.i++, *.inl, *.idl, *.ddl, *.odl, *.h,
+# *.hh, *.hxx, *.hpp, *.h++, *.cs, *.d, *.php, *.php4, *.php5, *.phtml, *.inc,
+# *.m, *.markdown, *.md, *.mm, *.dox, *.py, *.pyw, *.f90, *.f95, *.f03, *.f08,
+# *.f, *.for, *.tcl, *.vhd, *.vhdl, *.ucf and *.qsf.
+
+FILE_PATTERNS = *.c \
+ *.cc \
+ *.cxx \
+ *.cpp \
+ *.c++ \
+ *.java \
+ *.ii \
+ *.ixx \
+ *.ipp \
+ *.i++ \
+ *.inl \
+ *.idl \
+ *.ddl \
+ *.odl \
+ *.h \
+ *.hh \
+ *.hxx \
+ *.hpp \
+ *.h++ \
+ *.cs \
+ *.d \
+ *.php \
+ *.php4 \
+ *.php5 \
+ *.phtml \
+ *.inc \
+ *.m \
+ *.markdown \
+ *.md \
+ *.mm \
+ *.dox \
+ *.py \
+ *.pyw \
+ *.f90 \
+ *.f95 \
+ *.f03 \
+ *.f08 \
+ *.f \
+ *.for \
+ *.tcl \
+ *.vhd \
+ *.vhdl \
+ *.ucf \
+ *.qsf
+
+# The RECURSIVE tag can be used to specify whether or not subdirectories should
+# be searched for input files as well.
+# The default value is: NO.
+
+RECURSIVE = YES
+
+# The EXCLUDE tag can be used to specify files and/or directories that should be
+# excluded from the INPUT source files. This way you can easily exclude a
+# subdirectory from a directory tree whose root is specified with the INPUT tag.
+#
+# Note that relative paths are relative to the directory from which doxygen is
+# run.
+
+EXCLUDE =
+
+# The EXCLUDE_SYMLINKS tag can be used to select whether or not files or
+# directories that are symbolic links (a Unix file system feature) are excluded
+# from the input.
+# The default value is: NO.
+
+EXCLUDE_SYMLINKS = NO
+
+# If the value of the INPUT tag contains directories, you can use the
+# EXCLUDE_PATTERNS tag to specify one or more wildcard patterns to exclude
+# certain files from those directories.
+#
+# Note that the wildcards are matched against the file with absolute path, so to
+# exclude all test directories for example use the pattern */test/*
+
+EXCLUDE_PATTERNS =
+
+# The EXCLUDE_SYMBOLS tag can be used to specify one or more symbol names
+# (namespaces, classes, functions, etc.) that should be excluded from the
+# output. The symbol name can be a fully qualified name, a word, or if the
+# wildcard * is used, a substring. Examples: ANamespace, AClass,
+# AClass::ANamespace, ANamespace::*Test
+#
+# Note that the wildcards are matched against the file with absolute path, so to
+# exclude all test directories use the pattern */test/*
+
+EXCLUDE_SYMBOLS =
+
+# The EXAMPLE_PATH tag can be used to specify one or more files or directories
+# that contain example code fragments that are included (see the \include
+# command).
+
+EXAMPLE_PATH =
+
+# If the value of the EXAMPLE_PATH tag contains directories, you can use the
+# EXAMPLE_PATTERNS tag to specify one or more wildcard pattern (like *.cpp and
+# *.h) to filter out the source-files in the directories. If left blank all
+# files are included.
+
+EXAMPLE_PATTERNS = *
+
+# If the EXAMPLE_RECURSIVE tag is set to YES then subdirectories will be
+# searched for input files to be used with the \include or \dontinclude commands
+# irrespective of the value of the RECURSIVE tag.
+# The default value is: NO.
+
+EXAMPLE_RECURSIVE = NO
+
+# The IMAGE_PATH tag can be used to specify one or more files or directories
+# that contain images that are to be included in the documentation (see the
+# \image command).
+
+IMAGE_PATH =
+
+# The INPUT_FILTER tag can be used to specify a program that doxygen should
+# invoke to filter for each input file. Doxygen will invoke the filter program
+# by executing (via popen()) the command:
+#
+# <filter> <input-file>
+#
+# where <filter> is the value of the INPUT_FILTER tag, and <input-file> is the
+# name of an input file. Doxygen will then use the output that the filter
+# program writes to standard output. If FILTER_PATTERNS is specified, this tag
+# will be ignored.
+#
+# Note that the filter must not add or remove lines; it is applied before the
+# code is scanned, but not when the output code is generated. If lines are added
+# or removed, the anchors will not be placed correctly.
+#
+# Note that for custom extensions or not directly supported extensions you also
+# need to set EXTENSION_MAPPING for the extension otherwise the files are not
+# properly processed by doxygen.
+
+INPUT_FILTER =
+
+# The FILTER_PATTERNS tag can be used to specify filters on a per file pattern
+# basis. Doxygen will compare the file name with each pattern and apply the
+# filter if there is a match. The filters are a list of the form: pattern=filter
+# (like *.cpp=my_cpp_filter). See INPUT_FILTER for further information on how
+# filters are used. If the FILTER_PATTERNS tag is empty or if none of the
+# patterns match the file name, INPUT_FILTER is applied.
+#
+# Note that for custom extensions or not directly supported extensions you also
+# need to set EXTENSION_MAPPING for the extension otherwise the files are not
+# properly processed by doxygen.
+
+FILTER_PATTERNS =
+
+# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using
+# INPUT_FILTER) will also be used to filter the input files that are used for
+# producing the source files to browse (i.e. when SOURCE_BROWSER is set to YES).
+# The default value is: NO.
+
+FILTER_SOURCE_FILES = NO
+
+# The FILTER_SOURCE_PATTERNS tag can be used to specify source filters per file
+# pattern. A pattern will override the setting for FILTER_PATTERN (if any) and
+# it is also possible to disable source filtering for a specific pattern using
+# *.ext= (so without naming a filter).
+# This tag requires that the tag FILTER_SOURCE_FILES is set to YES.
+
+FILTER_SOURCE_PATTERNS =
+
+# If the USE_MDFILE_AS_MAINPAGE tag refers to the name of a markdown file that
+# is part of the input, its contents will be placed on the main page
+# (index.html). This can be useful if you have a project on for instance GitHub
+# and want to reuse the introduction page also for the doxygen output.
+
+USE_MDFILE_AS_MAINPAGE =
+
+#---------------------------------------------------------------------------
+# Configuration options related to source browsing
+#---------------------------------------------------------------------------
+
+# If the SOURCE_BROWSER tag is set to YES then a list of source files will be
+# generated. Documented entities will be cross-referenced with these sources.
+#
+# Note: To get rid of all source code in the generated output, make sure that
+# also VERBATIM_HEADERS is set to NO.
+# The default value is: NO.
+
+SOURCE_BROWSER = YES
+
+# Setting the INLINE_SOURCES tag to YES will include the body of functions,
+# classes and enums directly into the documentation.
+# The default value is: NO.
+
+INLINE_SOURCES = NO
+
+# Setting the STRIP_CODE_COMMENTS tag to YES will instruct doxygen to hide any
+# special comment blocks from generated source code fragments. Normal C, C++ and
+# Fortran comments will always remain visible.
+# The default value is: YES.
+
+STRIP_CODE_COMMENTS = YES
+
+# If the REFERENCED_BY_RELATION tag is set to YES then for each documented
+# function all documented functions referencing it will be listed.
+# The default value is: NO.
+
+REFERENCED_BY_RELATION = NO
+
+# If the REFERENCES_RELATION tag is set to YES then for each documented function
+# all documented entities called/used by that function will be listed.
+# The default value is: NO.
+
+REFERENCES_RELATION = NO
+
+# If the REFERENCES_LINK_SOURCE tag is set to YES and SOURCE_BROWSER tag is set
+# to YES then the hyperlinks from functions in REFERENCES_RELATION and
+# REFERENCED_BY_RELATION lists will link to the source code. Otherwise they will
+# link to the documentation.
+# The default value is: YES.
+
+REFERENCES_LINK_SOURCE = YES
+
+# If SOURCE_TOOLTIPS is enabled (the default) then hovering a hyperlink in the
+# source code will show a tooltip with additional information such as prototype,
+# brief description and links to the definition and documentation. Since this
+# will make the HTML file larger and loading of large files a bit slower, you
+# can opt to disable this feature.
+# The default value is: YES.
+# This tag requires that the tag SOURCE_BROWSER is set to YES.
+
+SOURCE_TOOLTIPS = YES
+
+# If the USE_HTAGS tag is set to YES then the references to source code will
+# point to the HTML generated by the htags(1) tool instead of doxygen built-in
+# source browser. The htags tool is part of GNU's global source tagging system
+# (see https://www.gnu.org/software/global/global.html). You will need version
+# 4.8.6 or higher.
+#
+# To use it do the following:
+# - Install the latest version of global
+# - Enable SOURCE_BROWSER and USE_HTAGS in the config file
+# - Make sure the INPUT points to the root of the source tree
+# - Run doxygen as normal
+#
+# Doxygen will invoke htags (and that will in turn invoke gtags), so these
+# tools must be available from the command line (i.e. in the search path).
+#
+# The result: instead of the source browser generated by doxygen, the links to
+# source code will now point to the output of htags.
+# The default value is: NO.
+# This tag requires that the tag SOURCE_BROWSER is set to YES.
+
+USE_HTAGS = NO
+
+# If the VERBATIM_HEADERS tag is set the YES then doxygen will generate a
+# verbatim copy of the header file for each class for which an include is
+# specified. Set to NO to disable this.
+# See also: Section \class.
+# The default value is: YES.
+
+VERBATIM_HEADERS = YES
+
+# If the CLANG_ASSISTED_PARSING tag is set to YES then doxygen will use the
+# clang parser (see: http://clang.llvm.org/) for more accurate parsing at the
+# cost of reduced performance. This can be particularly helpful with template
+# rich C++ code for which doxygen's built-in parser lacks the necessary type
+# information.
+# Note: The availability of this option depends on whether or not doxygen was
+# generated with the -Duse-libclang=ON option for CMake.
+# The default value is: NO.
+
+CLANG_ASSISTED_PARSING = NO
+
+# If clang assisted parsing is enabled you can provide the compiler with command
+# line options that you would normally use when invoking the compiler. Note that
+# the include paths will already be set by doxygen for the files and directories
+# specified with INPUT and INCLUDE_PATH.
+# This tag requires that the tag CLANG_ASSISTED_PARSING is set to YES.
+
+CLANG_OPTIONS =
+
+# If clang assisted parsing is enabled you can provide the clang parser with the
+# path to the compilation database (see:
+# http://clang.llvm.org/docs/HowToSetupToolingForLLVM.html) used when the files
+# were built. This is equivalent to specifying the "-p" option to a clang tool,
+# such as clang-check. These options will then be passed to the parser.
+# Note: The availability of this option depends on whether or not doxygen was
+# generated with the -Duse-libclang=ON option for CMake.
+# The default value is: 0.
+
+CLANG_COMPILATION_DATABASE_PATH= 0
+
+#---------------------------------------------------------------------------
+# Configuration options related to the alphabetical class index
+#---------------------------------------------------------------------------
+
+# If the ALPHABETICAL_INDEX tag is set to YES, an alphabetical index of all
+# compounds will be generated. Enable this if the project contains a lot of
+# classes, structs, unions or interfaces.
+# The default value is: YES.
+
+ALPHABETICAL_INDEX = YES
+
+# The COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns in
+# which the alphabetical index list will be split.
+# Minimum value: 1, maximum value: 20, default value: 5.
+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
+COLS_IN_ALPHA_INDEX = 5
+
+# In case all classes in a project start with a common prefix, all classes will
+# be put under the same header in the alphabetical index. The IGNORE_PREFIX tag
+# can be used to specify a prefix (or a list of prefixes) that should be ignored
+# while generating the index headers.
+# This tag requires that the tag ALPHABETICAL_INDEX is set to YES.
+
+IGNORE_PREFIX =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the HTML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_HTML tag is set to YES, doxygen will generate HTML output
+# The default value is: YES.
+
+GENERATE_HTML = YES
+
+# The HTML_OUTPUT tag is used to specify where the HTML docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: html.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_OUTPUT = html
+
+# The HTML_FILE_EXTENSION tag can be used to specify the file extension for each
+# generated HTML page (for example: .htm, .php, .asp).
+# The default value is: .html.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_FILE_EXTENSION = .html
+
+# The HTML_HEADER tag can be used to specify a user-defined HTML header file for
+# each generated HTML page. If the tag is left blank doxygen will generate a
+# standard header.
+#
+# To get valid HTML the header file that includes any scripts and style sheets
+# that doxygen needs, which is dependent on the configuration options used (e.g.
+# the setting GENERATE_TREEVIEW). It is highly recommended to start with a
+# default header using
+# doxygen -w html new_header.html new_footer.html new_stylesheet.css
+# YourConfigFile
+# and then modify the file new_header.html. See also section "Doxygen usage"
+# for information on how to generate the default header that doxygen normally
+# uses.
+# Note: The header is subject to change so you typically have to regenerate the
+# default header when upgrading to a newer version of doxygen. For a description
+# of the possible markers and block names see the documentation.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_HEADER =
+
+# The HTML_FOOTER tag can be used to specify a user-defined HTML footer for each
+# generated HTML page. If the tag is left blank doxygen will generate a standard
+# footer. See HTML_HEADER for more information on how to generate a default
+# footer and what special commands can be used inside the footer. See also
+# section "Doxygen usage" for information on how to generate the default footer
+# that doxygen normally uses.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_FOOTER =
+
+# The HTML_STYLESHEET tag can be used to specify a user-defined cascading style
+# sheet that is used by each HTML page. It can be used to fine-tune the look of
+# the HTML output. If left blank doxygen will generate a default style sheet.
+# See also section "Doxygen usage" for information on how to generate the style
+# sheet that doxygen normally uses.
+# Note: It is recommended to use HTML_EXTRA_STYLESHEET instead of this tag, as
+# it is more robust and this tag (HTML_STYLESHEET) will in the future become
+# obsolete.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_STYLESHEET =
+
+# The HTML_EXTRA_STYLESHEET tag can be used to specify additional user-defined
+# cascading style sheets that are included after the standard style sheets
+# created by doxygen. Using this option one can overrule certain style aspects.
+# This is preferred over using HTML_STYLESHEET since it does not replace the
+# standard style sheet and is therefore more robust against future updates.
+# Doxygen will copy the style sheet files to the output directory.
+# Note: The order of the extra style sheet files is of importance (e.g. the last
+# style sheet in the list overrules the setting of the previous ones in the
+# list). For an example see the documentation.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_EXTRA_STYLESHEET =
+
+# The HTML_EXTRA_FILES tag can be used to specify one or more extra images or
+# other source files which should be copied to the HTML output directory. Note
+# that these files will be copied to the base HTML output directory. Use the
+# $relpath^ marker in the HTML_HEADER and/or HTML_FOOTER files to load these
+# files. In the HTML_STYLESHEET file, use the file name only. Also note that the
+# files will be copied as-is; there are no commands or markers available.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_EXTRA_FILES =
+
+# The HTML_COLORSTYLE_HUE tag controls the color of the HTML output. Doxygen
+# will adjust the colors in the style sheet and background images according to
+# this color. Hue is specified as an angle on a colorwheel, see
+# https://en.wikipedia.org/wiki/Hue for more information. For instance the value
+# 0 represents red, 60 is yellow, 120 is green, 180 is cyan, 240 is blue, 300
+# purple, and 360 is red again.
+# Minimum value: 0, maximum value: 359, default value: 220.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_HUE = 220
+
+# The HTML_COLORSTYLE_SAT tag controls the purity (or saturation) of the colors
+# in the HTML output. For a value of 0 the output will use grayscales only. A
+# value of 255 will produce the most vivid colors.
+# Minimum value: 0, maximum value: 255, default value: 100.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_SAT = 100
+
+# The HTML_COLORSTYLE_GAMMA tag controls the gamma correction applied to the
+# luminance component of the colors in the HTML output. Values below 100
+# gradually make the output lighter, whereas values above 100 make the output
+# darker. The value divided by 100 is the actual gamma applied, so 80 represents
+# a gamma of 0.8, The value 220 represents a gamma of 2.2, and 100 does not
+# change the gamma.
+# Minimum value: 40, maximum value: 240, default value: 80.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_COLORSTYLE_GAMMA = 80
+
+# If the HTML_TIMESTAMP tag is set to YES then the footer of each generated HTML
+# page will contain the date and time when the page was generated. Setting this
+# to YES can help to show when doxygen was last run and thus if the
+# documentation is up to date.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_TIMESTAMP = NO
+
+# If the HTML_DYNAMIC_MENUS tag is set to YES then the generated HTML
+# documentation will contain a main index with vertical navigation menus that
+# are dynamically created via Javascript. If disabled, the navigation index will
+# consists of multiple levels of tabs that are statically embedded in every HTML
+# page. Disable this option to support browsers that do not have Javascript,
+# like the Qt help browser.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_DYNAMIC_MENUS = YES
+
+# If the HTML_DYNAMIC_SECTIONS tag is set to YES then the generated HTML
+# documentation will contain sections that can be hidden and shown after the
+# page has loaded.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_DYNAMIC_SECTIONS = NO
+
+# With HTML_INDEX_NUM_ENTRIES one can control the preferred number of entries
+# shown in the various tree structured indices initially; the user can expand
+# and collapse entries dynamically later on. Doxygen will expand the tree to
+# such a level that at most the specified number of entries are visible (unless
+# a fully collapsed tree already exceeds this amount). So setting the number of
+# entries 1 will produce a full collapsed tree by default. 0 is a special value
+# representing an infinite number of entries and will result in a full expanded
+# tree by default.
+# Minimum value: 0, maximum value: 9999, default value: 100.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+HTML_INDEX_NUM_ENTRIES = 100
+
+# If the GENERATE_DOCSET tag is set to YES, additional index files will be
+# generated that can be used as input for Apple's Xcode 3 integrated development
+# environment (see: https://developer.apple.com/tools/xcode/), introduced with
+# OSX 10.5 (Leopard). To create a documentation set, doxygen will generate a
+# Makefile in the HTML output directory. Running make will produce the docset in
+# that directory and running make install will install the docset in
+# ~/Library/Developer/Shared/Documentation/DocSets so that Xcode will find it at
+# startup. See https://developer.apple.com/tools/creatingdocsetswithdoxygen.html
+# for more information.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_DOCSET = NO
+
+# This tag determines the name of the docset feed. A documentation feed provides
+# an umbrella under which multiple documentation sets from a single provider
+# (such as a company or product suite) can be grouped.
+# The default value is: Doxygen generated docs.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_FEEDNAME = "Doxygen generated docs"
+
+# This tag specifies a string that should uniquely identify the documentation
+# set bundle. This should be a reverse domain-name style string, e.g.
+# com.mycompany.MyDocSet. Doxygen will append .docset to the name.
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_BUNDLE_ID = org.doxygen.Project
+
+# The DOCSET_PUBLISHER_ID tag specifies a string that should uniquely identify
+# the documentation publisher. This should be a reverse domain-name style
+# string, e.g. com.mycompany.MyDocSet.documentation.
+# The default value is: org.doxygen.Publisher.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_PUBLISHER_ID = org.doxygen.Publisher
+
+# The DOCSET_PUBLISHER_NAME tag identifies the documentation publisher.
+# The default value is: Publisher.
+# This tag requires that the tag GENERATE_DOCSET is set to YES.
+
+DOCSET_PUBLISHER_NAME = Publisher
+
+# If the GENERATE_HTMLHELP tag is set to YES then doxygen generates three
+# additional HTML index files: index.hhp, index.hhc, and index.hhk. The
+# index.hhp is a project file that can be read by Microsoft's HTML Help Workshop
+# (see: http://www.microsoft.com/en-us/download/details.aspx?id=21138) on
+# Windows.
+#
+# The HTML Help Workshop contains a compiler that can convert all HTML output
+# generated by doxygen into a single compiled HTML file (.chm). Compiled HTML
+# files are now used as the Windows 98 help format, and will replace the old
+# Windows help format (.hlp) on all Windows platforms in the future. Compressed
+# HTML files also contain an index, a table of contents, and you can search for
+# words in the documentation. The HTML workshop also contains a viewer for
+# compressed HTML files.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_HTMLHELP = NO
+
+# The CHM_FILE tag can be used to specify the file name of the resulting .chm
+# file. You can add a path in front of the file if the result should not be
+# written to the html output directory.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+CHM_FILE =
+
+# The HHC_LOCATION tag can be used to specify the location (absolute path
+# including file name) of the HTML help compiler (hhc.exe). If non-empty,
+# doxygen will try to run the HTML help compiler on the generated index.hhp.
+# The file has to be specified with full path.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+HHC_LOCATION =
+
+# The GENERATE_CHI flag controls if a separate .chi index file is generated
+# (YES) or that it should be included in the master .chm file (NO).
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+GENERATE_CHI = NO
+
+# The CHM_INDEX_ENCODING is used to encode HtmlHelp index (hhk), content (hhc)
+# and project file content.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+CHM_INDEX_ENCODING =
+
+# The BINARY_TOC flag controls whether a binary table of contents is generated
+# (YES) or a normal table of contents (NO) in the .chm file. Furthermore it
+# enables the Previous and Next buttons.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+BINARY_TOC = NO
+
+# The TOC_EXPAND flag can be set to YES to add extra items for group members to
+# the table of contents of the HTML help documentation and to the tree view.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTMLHELP is set to YES.
+
+TOC_EXPAND = NO
+
+# If the GENERATE_QHP tag is set to YES and both QHP_NAMESPACE and
+# QHP_VIRTUAL_FOLDER are set, an additional index file will be generated that
+# can be used as input for Qt's qhelpgenerator to generate a Qt Compressed Help
+# (.qch) of the generated HTML documentation.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_QHP = NO
+
+# If the QHG_LOCATION tag is specified, the QCH_FILE tag can be used to specify
+# the file name of the resulting .qch file. The path specified is relative to
+# the HTML output folder.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QCH_FILE =
+
+# The QHP_NAMESPACE tag specifies the namespace to use when generating Qt Help
+# Project output. For more information please see Qt Help Project / Namespace
+# (see: http://doc.qt.io/qt-4.8/qthelpproject.html#namespace).
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_NAMESPACE = org.doxygen.Project
+
+# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating Qt
+# Help Project output. For more information please see Qt Help Project / Virtual
+# Folders (see: http://doc.qt.io/qt-4.8/qthelpproject.html#virtual-folders).
+# The default value is: doc.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_VIRTUAL_FOLDER = doc
+
+# If the QHP_CUST_FILTER_NAME tag is set, it specifies the name of a custom
+# filter to add. For more information please see Qt Help Project / Custom
+# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_CUST_FILTER_NAME =
+
+# The QHP_CUST_FILTER_ATTRS tag specifies the list of the attributes of the
+# custom filter to add. For more information please see Qt Help Project / Custom
+# Filters (see: http://doc.qt.io/qt-4.8/qthelpproject.html#custom-filters).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_CUST_FILTER_ATTRS =
+
+# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this
+# project's filter section matches. Qt Help Project / Filter Attributes (see:
+# http://doc.qt.io/qt-4.8/qthelpproject.html#filter-attributes).
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHP_SECT_FILTER_ATTRS =
+
+# The QHG_LOCATION tag can be used to specify the location of Qt's
+# qhelpgenerator. If non-empty doxygen will try to run qhelpgenerator on the
+# generated .qhp file.
+# This tag requires that the tag GENERATE_QHP is set to YES.
+
+QHG_LOCATION =
+
+# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files will be
+# generated, together with the HTML files, they form an Eclipse help plugin. To
+# install this plugin and make it available under the help contents menu in
+# Eclipse, the contents of the directory containing the HTML and XML files needs
+# to be copied into the plugins directory of eclipse. The name of the directory
+# within the plugins directory should be the same as the ECLIPSE_DOC_ID value.
+# After copying Eclipse needs to be restarted before the help appears.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_ECLIPSEHELP = NO
+
+# A unique identifier for the Eclipse help plugin. When installing the plugin
+# the directory name containing the HTML and XML files should also have this
+# name. Each documentation set should have its own identifier.
+# The default value is: org.doxygen.Project.
+# This tag requires that the tag GENERATE_ECLIPSEHELP is set to YES.
+
+ECLIPSE_DOC_ID = org.doxygen.Project
+
+# If you want full control over the layout of the generated HTML pages it might
+# be necessary to disable the index and replace it with your own. The
+# DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) at top
+# of each HTML page. A value of NO enables the index and the value YES disables
+# it. Since the tabs in the index contain the same information as the navigation
+# tree, you can set this option to YES if you also set GENERATE_TREEVIEW to YES.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+DISABLE_INDEX = NO
+
+# The GENERATE_TREEVIEW tag is used to specify whether a tree-like index
+# structure should be generated to display hierarchical information. If the tag
+# value is set to YES, a side panel will be generated containing a tree-like
+# index structure (just like the one that is generated for HTML Help). For this
+# to work a browser that supports JavaScript, DHTML, CSS and frames is required
+# (i.e. any modern browser). Windows users are probably better off using the
+# HTML help feature. Via custom style sheets (see HTML_EXTRA_STYLESHEET) one can
+# further fine-tune the look of the index. As an example, the default style
+# sheet generated by doxygen has an example that shows how to put an image at
+# the root of the tree instead of the PROJECT_NAME. Since the tree basically has
+# the same information as the tab index, you could consider setting
+# DISABLE_INDEX to YES when enabling this option.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+GENERATE_TREEVIEW = NO
+
+# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values that
+# doxygen will group on one line in the generated HTML documentation.
+#
+# Note that a value of 0 will completely suppress the enum values from appearing
+# in the overview section.
+# Minimum value: 0, maximum value: 20, default value: 4.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+ENUM_VALUES_PER_LINE = 4
+
+# If the treeview is enabled (see GENERATE_TREEVIEW) then this tag can be used
+# to set the initial width (in pixels) of the frame in which the tree is shown.
+# Minimum value: 0, maximum value: 1500, default value: 250.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+TREEVIEW_WIDTH = 250
+
+# If the EXT_LINKS_IN_WINDOW option is set to YES, doxygen will open links to
+# external symbols imported via tag files in a separate window.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+EXT_LINKS_IN_WINDOW = NO
+
+# Use this tag to change the font size of LaTeX formulas included as images in
+# the HTML documentation. When you change the font size after a successful
+# doxygen run you need to manually remove any form_*.png images from the HTML
+# output directory to force them to be regenerated.
+# Minimum value: 8, maximum value: 50, default value: 10.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+FORMULA_FONTSIZE = 10
+
+# Use the FORMULA_TRANSPARENT tag to determine whether or not the images
+# generated for formulas are transparent PNGs. Transparent PNGs are not
+# supported properly for IE 6.0, but are supported on all modern browsers.
+#
+# Note that when changing this option you need to delete any form_*.png files in
+# the HTML output directory before the changes have effect.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+FORMULA_TRANSPARENT = YES
+
+# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax (see
+# https://www.mathjax.org) which uses client side Javascript for the rendering
+# instead of using pre-rendered bitmaps. Use this if you do not have LaTeX
+# installed or if you want to formulas look prettier in the HTML output. When
+# enabled you may also need to install MathJax separately and configure the path
+# to it using the MATHJAX_RELPATH option.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+USE_MATHJAX = NO
+
+# When MathJax is enabled you can set the default output format to be used for
+# the MathJax output. See the MathJax site (see:
+# http://docs.mathjax.org/en/latest/output.html) for more details.
+# Possible values are: HTML-CSS (which is slower, but has the best
+# compatibility), NativeMML (i.e. MathML) and SVG.
+# The default value is: HTML-CSS.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_FORMAT = HTML-CSS
+
+# When MathJax is enabled you need to specify the location relative to the HTML
+# output directory using the MATHJAX_RELPATH option. The destination directory
+# should contain the MathJax.js script. For instance, if the mathjax directory
+# is located at the same level as the HTML output directory, then
+# MATHJAX_RELPATH should be ../mathjax. The default value points to the MathJax
+# Content Delivery Network so you can quickly see the result without installing
+# MathJax. However, it is strongly recommended to install a local copy of
+# MathJax from https://www.mathjax.org before deployment.
+# The default value is: https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_RELPATH = https://cdnjs.cloudflare.com/ajax/libs/mathjax/2.7.2/
+
+# The MATHJAX_EXTENSIONS tag can be used to specify one or more MathJax
+# extension names that should be enabled during MathJax rendering. For example
+# MATHJAX_EXTENSIONS = TeX/AMSmath TeX/AMSsymbols
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_EXTENSIONS =
+
+# The MATHJAX_CODEFILE tag can be used to specify a file with javascript pieces
+# of code that will be used on startup of the MathJax code. See the MathJax site
+# (see: http://docs.mathjax.org/en/latest/output.html) for more details. For an
+# example see the documentation.
+# This tag requires that the tag USE_MATHJAX is set to YES.
+
+MATHJAX_CODEFILE =
+
+# When the SEARCHENGINE tag is enabled doxygen will generate a search box for
+# the HTML output. The underlying search engine uses javascript and DHTML and
+# should work on any modern browser. Note that when using HTML help
+# (GENERATE_HTMLHELP), Qt help (GENERATE_QHP), or docsets (GENERATE_DOCSET)
+# there is already a search function so this one should typically be disabled.
+# For large projects the javascript based search engine can be slow, then
+# enabling SERVER_BASED_SEARCH may provide a better solution. It is possible to
+# search using the keyboard; to jump to the search box use <access key> + S
+# (what the <access key> is depends on the OS and browser, but it is typically
+# <CTRL>, <ALT>/<option>, or both). Inside the search box use the <cursor down
+# key> to jump into the search results window, the results can be navigated
+# using the <cursor keys>. Press <Enter> to select an item or <escape> to cancel
+# the search. The filter options can be selected when the cursor is inside the
+# search box by pressing <Shift>+<cursor down>. Also here use the <cursor keys>
+# to select a filter and <Enter> or <escape> to activate or cancel the filter
+# option.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_HTML is set to YES.
+
+SEARCHENGINE = YES
+
+# When the SERVER_BASED_SEARCH tag is enabled the search engine will be
+# implemented using a web server instead of a web client using Javascript. There
+# are two flavors of web server based searching depending on the EXTERNAL_SEARCH
+# setting. When disabled, doxygen will generate a PHP script for searching and
+# an index file used by the script. When EXTERNAL_SEARCH is enabled the indexing
+# and searching needs to be provided by external tools. See the section
+# "External Indexing and Searching" for details.
+# The default value is: NO.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SERVER_BASED_SEARCH = NO
+
+# When EXTERNAL_SEARCH tag is enabled doxygen will no longer generate the PHP
+# script for searching. Instead the search results are written to an XML file
+# which needs to be processed by an external indexer. Doxygen will invoke an
+# external search engine pointed to by the SEARCHENGINE_URL option to obtain the
+# search results.
+#
+# Doxygen ships with an example indexer (doxyindexer) and search engine
+# (doxysearch.cgi) which are based on the open source search engine library
+# Xapian (see: https://xapian.org/).
+#
+# See the section "External Indexing and Searching" for details.
+# The default value is: NO.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTERNAL_SEARCH = NO
+
+# The SEARCHENGINE_URL should point to a search engine hosted by a web server
+# which will return the search results when EXTERNAL_SEARCH is enabled.
+#
+# Doxygen ships with an example indexer (doxyindexer) and search engine
+# (doxysearch.cgi) which are based on the open source search engine library
+# Xapian (see: https://xapian.org/). See the section "External Indexing and
+# Searching" for details.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SEARCHENGINE_URL =
+
+# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the unindexed
+# search data is written to a file for indexing by an external tool. With the
+# SEARCHDATA_FILE tag the name of this file can be specified.
+# The default file is: searchdata.xml.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+SEARCHDATA_FILE = searchdata.xml
+
+# When SERVER_BASED_SEARCH and EXTERNAL_SEARCH are both enabled the
+# EXTERNAL_SEARCH_ID tag can be used as an identifier for the project. This is
+# useful in combination with EXTRA_SEARCH_MAPPINGS to search through multiple
+# projects and redirect the results back to the right project.
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTERNAL_SEARCH_ID =
+
+# The EXTRA_SEARCH_MAPPINGS tag can be used to enable searching through doxygen
+# projects other than the one defined by this configuration file, but that are
+# all added to the same external search index. Each project needs to have a
+# unique id set via EXTERNAL_SEARCH_ID. The search mapping then maps the id of
+# to a relative location where the documentation can be found. The format is:
+# EXTRA_SEARCH_MAPPINGS = tagname1=loc1 tagname2=loc2 ...
+# This tag requires that the tag SEARCHENGINE is set to YES.
+
+EXTRA_SEARCH_MAPPINGS =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the LaTeX output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_LATEX tag is set to YES, doxygen will generate LaTeX output.
+# The default value is: YES.
+
+GENERATE_LATEX = NO
+
+# The LATEX_OUTPUT tag is used to specify where the LaTeX docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: latex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_OUTPUT = latex
+
+# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be
+# invoked.
+#
+# Note that when enabling USE_PDFLATEX this option is only used for generating
+# bitmaps for formulas in the HTML output, but not in the Makefile that is
+# written to the output directory.
+# The default file is: latex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_CMD_NAME = latex
+
+# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to generate
+# index for LaTeX.
+# The default file is: makeindex.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+MAKEINDEX_CMD_NAME = makeindex
+
+# If the COMPACT_LATEX tag is set to YES, doxygen generates more compact LaTeX
+# documents. This may be useful for small projects and may help to save some
+# trees in general.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+COMPACT_LATEX = NO
+
+# The PAPER_TYPE tag can be used to set the paper type that is used by the
+# printer.
+# Possible values are: a4 (210 x 297 mm), letter (8.5 x 11 inches), legal (8.5 x
+# 14 inches) and executive (7.25 x 10.5 inches).
+# The default value is: a4.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+PAPER_TYPE = a4
+
+# The EXTRA_PACKAGES tag can be used to specify one or more LaTeX package names
+# that should be included in the LaTeX output. The package can be specified just
+# by its name or with the correct syntax as to be used with the LaTeX
+# \usepackage command. To get the times font for instance you can specify :
+# EXTRA_PACKAGES=times or EXTRA_PACKAGES={times}
+# To use the option intlimits with the amsmath package you can specify:
+# EXTRA_PACKAGES=[intlimits]{amsmath}
+# If left blank no extra packages will be included.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+EXTRA_PACKAGES =
+
+# The LATEX_HEADER tag can be used to specify a personal LaTeX header for the
+# generated LaTeX document. The header should contain everything until the first
+# chapter. If it is left blank doxygen will generate a standard header. See
+# section "Doxygen usage" for information on how to let doxygen write the
+# default header to a separate file.
+#
+# Note: Only use a user-defined header if you know what you are doing! The
+# following commands have a special meaning inside the header: $title,
+# $datetime, $date, $doxygenversion, $projectname, $projectnumber,
+# $projectbrief, $projectlogo. Doxygen will replace $title with the empty
+# string, for the replacement values of the other commands the user is referred
+# to HTML_HEADER.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_HEADER =
+
+# The LATEX_FOOTER tag can be used to specify a personal LaTeX footer for the
+# generated LaTeX document. The footer should contain everything after the last
+# chapter. If it is left blank doxygen will generate a standard footer. See
+# LATEX_HEADER for more information on how to generate a default footer and what
+# special commands can be used inside the footer.
+#
+# Note: Only use a user-defined footer if you know what you are doing!
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_FOOTER =
+
+# The LATEX_EXTRA_STYLESHEET tag can be used to specify additional user-defined
+# LaTeX style sheets that are included after the standard style sheets created
+# by doxygen. Using this option one can overrule certain style aspects. Doxygen
+# will copy the style sheet files to the output directory.
+# Note: The order of the extra style sheet files is of importance (e.g. the last
+# style sheet in the list overrules the setting of the previous ones in the
+# list).
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_EXTRA_STYLESHEET =
+
+# The LATEX_EXTRA_FILES tag can be used to specify one or more extra images or
+# other source files which should be copied to the LATEX_OUTPUT output
+# directory. Note that the files will be copied as-is; there are no commands or
+# markers available.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_EXTRA_FILES =
+
+# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated is
+# prepared for conversion to PDF (using ps2pdf or pdflatex). The PDF file will
+# contain links (just like the HTML output) instead of page references. This
+# makes the output suitable for online browsing using a PDF viewer.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+PDF_HYPERLINKS = YES
+
+# If the USE_PDFLATEX tag is set to YES, doxygen will use pdflatex to generate
+# the PDF file directly from the LaTeX files. Set this option to YES, to get a
+# higher quality PDF documentation.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+USE_PDFLATEX = YES
+
+# If the LATEX_BATCHMODE tag is set to YES, doxygen will add the \batchmode
+# command to the generated LaTeX files. This will instruct LaTeX to keep running
+# if errors occur, instead of asking the user for help. This option is also used
+# when generating formulas in HTML.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_BATCHMODE = NO
+
+# If the LATEX_HIDE_INDICES tag is set to YES then doxygen will not include the
+# index chapters (such as File Index, Compound Index, etc.) in the output.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_HIDE_INDICES = NO
+
+# If the LATEX_SOURCE_CODE tag is set to YES then doxygen will include source
+# code with syntax highlighting in the LaTeX output.
+#
+# Note that which sources are shown also depends on other settings such as
+# SOURCE_BROWSER.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_SOURCE_CODE = NO
+
+# The LATEX_BIB_STYLE tag can be used to specify the style to use for the
+# bibliography, e.g. plainnat, or ieeetr. See
+# https://en.wikipedia.org/wiki/BibTeX and \cite for more info.
+# The default value is: plain.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_BIB_STYLE = plain
+
+# If the LATEX_TIMESTAMP tag is set to YES then the footer of each generated
+# page will contain the date and time when the page was generated. Setting this
+# to NO can help when comparing the output of multiple runs.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_LATEX is set to YES.
+
+LATEX_TIMESTAMP = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the RTF output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_RTF tag is set to YES, doxygen will generate RTF output. The
+# RTF output is optimized for Word 97 and may not look too pretty with other RTF
+# readers/editors.
+# The default value is: NO.
+
+GENERATE_RTF = NO
+
+# The RTF_OUTPUT tag is used to specify where the RTF docs will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: rtf.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_OUTPUT = rtf
+
+# If the COMPACT_RTF tag is set to YES, doxygen generates more compact RTF
+# documents. This may be useful for small projects and may help to save some
+# trees in general.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+COMPACT_RTF = NO
+
+# If the RTF_HYPERLINKS tag is set to YES, the RTF that is generated will
+# contain hyperlink fields. The RTF file will contain links (just like the HTML
+# output) instead of page references. This makes the output suitable for online
+# browsing using Word or some other Word compatible readers that support those
+# fields.
+#
+# Note: WordPad (write) and others do not support links.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_HYPERLINKS = NO
+
+# Load stylesheet definitions from file. Syntax is similar to doxygen's config
+# file, i.e. a series of assignments. You only have to provide replacements,
+# missing definitions are set to their default value.
+#
+# See also section "Doxygen usage" for information on how to generate the
+# default style sheet that doxygen normally uses.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_STYLESHEET_FILE =
+
+# Set optional variables used in the generation of an RTF document. Syntax is
+# similar to doxygen's config file. A template extensions file can be generated
+# using doxygen -e rtf extensionFile.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_EXTENSIONS_FILE =
+
+# If the RTF_SOURCE_CODE tag is set to YES then doxygen will include source code
+# with syntax highlighting in the RTF output.
+#
+# Note that which sources are shown also depends on other settings such as
+# SOURCE_BROWSER.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_RTF is set to YES.
+
+RTF_SOURCE_CODE = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the man page output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_MAN tag is set to YES, doxygen will generate man pages for
+# classes and files.
+# The default value is: NO.
+
+GENERATE_MAN = NO
+
+# The MAN_OUTPUT tag is used to specify where the man pages will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it. A directory man3 will be created inside the directory specified by
+# MAN_OUTPUT.
+# The default directory is: man.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_OUTPUT = man
+
+# The MAN_EXTENSION tag determines the extension that is added to the generated
+# man pages. In case the manual section does not start with a number, the number
+# 3 is prepended. The dot (.) at the beginning of the MAN_EXTENSION tag is
+# optional.
+# The default value is: .3.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_EXTENSION = .3
+
+# The MAN_SUBDIR tag determines the name of the directory created within
+# MAN_OUTPUT in which the man pages are placed. If defaults to man followed by
+# MAN_EXTENSION with the initial . removed.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_SUBDIR =
+
+# If the MAN_LINKS tag is set to YES and doxygen generates man output, then it
+# will generate one additional man file for each entity documented in the real
+# man page(s). These additional files only source the real man page, but without
+# them the man command would be unable to find the correct page.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_MAN is set to YES.
+
+MAN_LINKS = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the XML output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_XML tag is set to YES, doxygen will generate an XML file that
+# captures the structure of the code including all documentation.
+# The default value is: NO.
+
+GENERATE_XML = NO
+
+# The XML_OUTPUT tag is used to specify where the XML pages will be put. If a
+# relative path is entered the value of OUTPUT_DIRECTORY will be put in front of
+# it.
+# The default directory is: xml.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_OUTPUT = xml
+
+# If the XML_PROGRAMLISTING tag is set to YES, doxygen will dump the program
+# listings (including syntax highlighting and cross-referencing information) to
+# the XML output. Note that enabling this will significantly increase the size
+# of the XML output.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_XML is set to YES.
+
+XML_PROGRAMLISTING = YES
+
+#---------------------------------------------------------------------------
+# Configuration options related to the DOCBOOK output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_DOCBOOK tag is set to YES, doxygen will generate Docbook files
+# that can be used to generate PDF.
+# The default value is: NO.
+
+GENERATE_DOCBOOK = NO
+
+# The DOCBOOK_OUTPUT tag is used to specify where the Docbook pages will be put.
+# If a relative path is entered the value of OUTPUT_DIRECTORY will be put in
+# front of it.
+# The default directory is: docbook.
+# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
+
+DOCBOOK_OUTPUT = docbook
+
+# If the DOCBOOK_PROGRAMLISTING tag is set to YES, doxygen will include the
+# program listings (including syntax highlighting and cross-referencing
+# information) to the DOCBOOK output. Note that enabling this will significantly
+# increase the size of the DOCBOOK output.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_DOCBOOK is set to YES.
+
+DOCBOOK_PROGRAMLISTING = NO
+
+#---------------------------------------------------------------------------
+# Configuration options for the AutoGen Definitions output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_AUTOGEN_DEF tag is set to YES, doxygen will generate an
+# AutoGen Definitions (see http://autogen.sourceforge.net/) file that captures
+# the structure of the code including all documentation. Note that this feature
+# is still experimental and incomplete at the moment.
+# The default value is: NO.
+
+GENERATE_AUTOGEN_DEF = NO
+
+#---------------------------------------------------------------------------
+# Configuration options related to the Perl module output
+#---------------------------------------------------------------------------
+
+# If the GENERATE_PERLMOD tag is set to YES, doxygen will generate a Perl module
+# file that captures the structure of the code including all documentation.
+#
+# Note that this feature is still experimental and incomplete at the moment.
+# The default value is: NO.
+
+GENERATE_PERLMOD = NO
+
+# If the PERLMOD_LATEX tag is set to YES, doxygen will generate the necessary
+# Makefile rules, Perl scripts and LaTeX code to be able to generate PDF and DVI
+# output from the Perl module output.
+# The default value is: NO.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_LATEX = NO
+
+# If the PERLMOD_PRETTY tag is set to YES, the Perl module output will be nicely
+# formatted so it can be parsed by a human reader. This is useful if you want to
+# understand what is going on. On the other hand, if this tag is set to NO, the
+# size of the Perl module output will be much smaller and Perl will parse it
+# just the same.
+# The default value is: YES.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_PRETTY = YES
+
+# The names of the make variables in the generated doxyrules.make file are
+# prefixed with the string contained in PERLMOD_MAKEVAR_PREFIX. This is useful
+# so different doxyrules.make files included by the same Makefile don't
+# overwrite each other's variables.
+# This tag requires that the tag GENERATE_PERLMOD is set to YES.
+
+PERLMOD_MAKEVAR_PREFIX =
+
+#---------------------------------------------------------------------------
+# Configuration options related to the preprocessor
+#---------------------------------------------------------------------------
+
+# If the ENABLE_PREPROCESSING tag is set to YES, doxygen will evaluate all
+# C-preprocessor directives found in the sources and include files.
+# The default value is: YES.
+
+ENABLE_PREPROCESSING = YES
+
+# If the MACRO_EXPANSION tag is set to YES, doxygen will expand all macro names
+# in the source code. If set to NO, only conditional compilation will be
+# performed. Macro expansion can be done in a controlled way by setting
+# EXPAND_ONLY_PREDEF to YES.
+# The default value is: NO.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+MACRO_EXPANSION = NO
+
+# If the EXPAND_ONLY_PREDEF and MACRO_EXPANSION tags are both set to YES then
+# the macro expansion is limited to the macros specified with the PREDEFINED and
+# EXPAND_AS_DEFINED tags.
+# The default value is: NO.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+EXPAND_ONLY_PREDEF = NO
+
+# If the SEARCH_INCLUDES tag is set to YES, the include files in the
+# INCLUDE_PATH will be searched if a #include is found.
+# The default value is: YES.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+SEARCH_INCLUDES = YES
+
+# The INCLUDE_PATH tag can be used to specify one or more directories that
+# contain include files that are not input files but should be processed by the
+# preprocessor.
+# This tag requires that the tag SEARCH_INCLUDES is set to YES.
+
+INCLUDE_PATH =
+
+# You can use the INCLUDE_FILE_PATTERNS tag to specify one or more wildcard
+# patterns (like *.h and *.hpp) to filter out the header-files in the
+# directories. If left blank, the patterns specified with FILE_PATTERNS will be
+# used.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+INCLUDE_FILE_PATTERNS =
+
+# The PREDEFINED tag can be used to specify one or more macro names that are
+# defined before the preprocessor is started (similar to the -D option of e.g.
+# gcc). The argument of the tag is a list of macros of the form: name or
+# name=definition (no spaces). If the definition and the "=" are omitted, "=1"
+# is assumed. To prevent a macro definition from being undefined via #undef or
+# recursively expanded use the := operator instead of the = operator.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+PREDEFINED =
+
+# If the MACRO_EXPANSION and EXPAND_ONLY_PREDEF tags are set to YES then this
+# tag can be used to specify a list of macro names that should be expanded. The
+# macro definition that is found in the sources will be used. Use the PREDEFINED
+# tag if you want to use a different macro definition that overrules the
+# definition found in the source code.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+EXPAND_AS_DEFINED =
+
+# If the SKIP_FUNCTION_MACROS tag is set to YES then doxygen's preprocessor will
+# remove all references to function-like macros that are alone on a line, have
+# an all uppercase name, and do not end with a semicolon. Such function macros
+# are typically used for boiler-plate code, and will confuse the parser if not
+# removed.
+# The default value is: YES.
+# This tag requires that the tag ENABLE_PREPROCESSING is set to YES.
+
+SKIP_FUNCTION_MACROS = YES
+
+#---------------------------------------------------------------------------
+# Configuration options related to external references
+#---------------------------------------------------------------------------
+
+# The TAGFILES tag can be used to specify one or more tag files. For each tag
+# file the location of the external documentation should be added. The format of
+# a tag file without this location is as follows:
+# TAGFILES = file1 file2 ...
+# Adding location for the tag files is done as follows:
+# TAGFILES = file1=loc1 "file2 = loc2" ...
+# where loc1 and loc2 can be relative or absolute paths or URLs. See the
+# section "Linking to external documentation" for more information about the use
+# of tag files.
+# Note: Each tag file must have a unique name (where the name does NOT include
+# the path). If a tag file is not located in the directory in which doxygen is
+# run, you must also specify the path to the tagfile here.
+
+TAGFILES =
+
+# When a file name is specified after GENERATE_TAGFILE, doxygen will create a
+# tag file that is based on the input files it reads. See section "Linking to
+# external documentation" for more information about the usage of tag files.
+
+GENERATE_TAGFILE =
+
+# If the ALLEXTERNALS tag is set to YES, all external class will be listed in
+# the class index. If set to NO, only the inherited external classes will be
+# listed.
+# The default value is: NO.
+
+ALLEXTERNALS = NO
+
+# If the EXTERNAL_GROUPS tag is set to YES, all external groups will be listed
+# in the modules index. If set to NO, only the current project's groups will be
+# listed.
+# The default value is: YES.
+
+EXTERNAL_GROUPS = YES
+
+# If the EXTERNAL_PAGES tag is set to YES, all external pages will be listed in
+# the related pages index. If set to NO, only the current project's pages will
+# be listed.
+# The default value is: YES.
+
+EXTERNAL_PAGES = YES
+
+# The PERL_PATH should be the absolute path and name of the perl script
+# interpreter (i.e. the result of 'which perl').
+# The default file (with absolute path) is: /usr/bin/perl.
+
+PERL_PATH = /usr/bin/perl
+
+#---------------------------------------------------------------------------
+# Configuration options related to the dot tool
+#---------------------------------------------------------------------------
+
+# If the CLASS_DIAGRAMS tag is set to YES, doxygen will generate a class diagram
+# (in HTML and LaTeX) for classes with base or super classes. Setting the tag to
+# NO turns the diagrams off. Note that this option also works with HAVE_DOT
+# disabled, but it is recommended to install and use dot, since it yields more
+# powerful graphs.
+# The default value is: YES.
+
+CLASS_DIAGRAMS = YES
+
+# You can define message sequence charts within doxygen comments using the \msc
+# command. Doxygen will then run the mscgen tool (see:
+# http://www.mcternan.me.uk/mscgen/)) to produce the chart and insert it in the
+# documentation. The MSCGEN_PATH tag allows you to specify the directory where
+# the mscgen tool resides. If left empty the tool is assumed to be found in the
+# default search path.
+
+MSCGEN_PATH =
+
+# You can include diagrams made with dia in doxygen documentation. Doxygen will
+# then run dia to produce the diagram and insert it in the documentation. The
+# DIA_PATH tag allows you to specify the directory where the dia binary resides.
+# If left empty dia is assumed to be found in the default search path.
+
+DIA_PATH =
+
+# If set to YES the inheritance and collaboration graphs will hide inheritance
+# and usage relations if the target is undocumented or is not a class.
+# The default value is: YES.
+
+HIDE_UNDOC_RELATIONS = YES
+
+# If you set the HAVE_DOT tag to YES then doxygen will assume the dot tool is
+# available from the path. This tool is part of Graphviz (see:
+# http://www.graphviz.org/), a graph visualization toolkit from AT&T and Lucent
+# Bell Labs. The other options in this section have no effect if this option is
+# set to NO
+# The default value is: NO.
+
+HAVE_DOT = NO
+
+# The DOT_NUM_THREADS specifies the number of dot invocations doxygen is allowed
+# to run in parallel. When set to 0 doxygen will base this on the number of
+# processors available in the system. You can set it explicitly to a value
+# larger than 0 to get control over the balance between CPU load and processing
+# speed.
+# Minimum value: 0, maximum value: 32, default value: 0.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_NUM_THREADS = 0
+
+# When you want a differently looking font in the dot files that doxygen
+# generates you can specify the font name using DOT_FONTNAME. You need to make
+# sure dot is able to find the font, which can be done by putting it in a
+# standard location or by setting the DOTFONTPATH environment variable or by
+# setting DOT_FONTPATH to the directory containing the font.
+# The default value is: Helvetica.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTNAME = Helvetica
+
+# The DOT_FONTSIZE tag can be used to set the size (in points) of the font of
+# dot graphs.
+# Minimum value: 4, maximum value: 24, default value: 10.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTSIZE = 10
+
+# By default doxygen will tell dot to use the default font as specified with
+# DOT_FONTNAME. If you specify a different font using DOT_FONTNAME you can set
+# the path where dot can find it using this tag.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_FONTPATH =
+
+# If the CLASS_GRAPH tag is set to YES then doxygen will generate a graph for
+# each documented class showing the direct and indirect inheritance relations.
+# Setting this tag to YES will force the CLASS_DIAGRAMS tag to NO.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CLASS_GRAPH = YES
+
+# If the COLLABORATION_GRAPH tag is set to YES then doxygen will generate a
+# graph for each documented class showing the direct and indirect implementation
+# dependencies (inheritance, containment, and class references variables) of the
+# class with other documented classes.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+COLLABORATION_GRAPH = YES
+
+# If the GROUP_GRAPHS tag is set to YES then doxygen will generate a graph for
+# groups, showing the direct groups dependencies.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GROUP_GRAPHS = YES
+
+# If the UML_LOOK tag is set to YES, doxygen will generate inheritance and
+# collaboration diagrams in a style similar to the OMG's Unified Modeling
+# Language.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+UML_LOOK = NO
+
+# If the UML_LOOK tag is enabled, the fields and methods are shown inside the
+# class node. If there are many fields or methods and many nodes the graph may
+# become too big to be useful. The UML_LIMIT_NUM_FIELDS threshold limits the
+# number of items for each type to make the size more manageable. Set this to 0
+# for no limit. Note that the threshold may be exceeded by 50% before the limit
+# is enforced. So when you set the threshold to 10, up to 15 fields may appear,
+# but if the number exceeds 15, the total amount of fields shown is limited to
+# 10.
+# Minimum value: 0, maximum value: 100, default value: 10.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+UML_LIMIT_NUM_FIELDS = 10
+
+# If the TEMPLATE_RELATIONS tag is set to YES then the inheritance and
+# collaboration graphs will show the relations between templates and their
+# instances.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+TEMPLATE_RELATIONS = NO
+
+# If the INCLUDE_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are set to
+# YES then doxygen will generate a graph for each documented file showing the
+# direct and indirect include dependencies of the file with other documented
+# files.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INCLUDE_GRAPH = YES
+
+# If the INCLUDED_BY_GRAPH, ENABLE_PREPROCESSING and SEARCH_INCLUDES tags are
+# set to YES then doxygen will generate a graph for each documented file showing
+# the direct and indirect include dependencies of the file with other documented
+# files.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INCLUDED_BY_GRAPH = YES
+
+# If the CALL_GRAPH tag is set to YES then doxygen will generate a call
+# dependency graph for every global function or class method.
+#
+# Note that enabling this option will significantly increase the time of a run.
+# So in most cases it will be better to enable call graphs for selected
+# functions only using the \callgraph command. Disabling a call graph can be
+# accomplished by means of the command \hidecallgraph.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CALL_GRAPH = NO
+
+# If the CALLER_GRAPH tag is set to YES then doxygen will generate a caller
+# dependency graph for every global function or class method.
+#
+# Note that enabling this option will significantly increase the time of a run.
+# So in most cases it will be better to enable caller graphs for selected
+# functions only using the \callergraph command. Disabling a caller graph can be
+# accomplished by means of the command \hidecallergraph.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+CALLER_GRAPH = NO
+
+# If the GRAPHICAL_HIERARCHY tag is set to YES then doxygen will graphical
+# hierarchy of all classes instead of a textual one.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GRAPHICAL_HIERARCHY = YES
+
+# If the DIRECTORY_GRAPH tag is set to YES then doxygen will show the
+# dependencies a directory has on other directories in a graphical way. The
+# dependency relations are determined by the #include relations between the
+# files in the directories.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DIRECTORY_GRAPH = YES
+
+# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images
+# generated by dot. For an explanation of the image formats see the section
+# output formats in the documentation of the dot tool (Graphviz (see:
+# http://www.graphviz.org/)).
+# Note: If you choose svg you need to set HTML_FILE_EXTENSION to xhtml in order
+# to make the SVG files visible in IE 9+ (other browsers do not have this
+# requirement).
+# Possible values are: png, jpg, gif, svg, png:gd, png:gd:gd, png:cairo,
+# png:cairo:gd, png:cairo:cairo, png:cairo:gdiplus, png:gdiplus and
+# png:gdiplus:gdiplus.
+# The default value is: png.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_IMAGE_FORMAT = png
+
+# If DOT_IMAGE_FORMAT is set to svg, then this option can be set to YES to
+# enable generation of interactive SVG images that allow zooming and panning.
+#
+# Note that this requires a modern browser other than Internet Explorer. Tested
+# and working are Firefox, Chrome, Safari, and Opera.
+# Note: For IE 9+ you need to set HTML_FILE_EXTENSION to xhtml in order to make
+# the SVG files visible. Older versions of IE do not have SVG support.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+INTERACTIVE_SVG = NO
+
+# The DOT_PATH tag can be used to specify the path where the dot tool can be
+# found. If left blank, it is assumed the dot tool can be found in the path.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_PATH =
+
+# The DOTFILE_DIRS tag can be used to specify one or more directories that
+# contain dot files that are included in the documentation (see the \dotfile
+# command).
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOTFILE_DIRS =
+
+# The MSCFILE_DIRS tag can be used to specify one or more directories that
+# contain msc files that are included in the documentation (see the \mscfile
+# command).
+
+MSCFILE_DIRS =
+
+# The DIAFILE_DIRS tag can be used to specify one or more directories that
+# contain dia files that are included in the documentation (see the \diafile
+# command).
+
+DIAFILE_DIRS =
+
+# When using plantuml, the PLANTUML_JAR_PATH tag should be used to specify the
+# path where java can find the plantuml.jar file. If left blank, it is assumed
+# PlantUML is not used or called during a preprocessing step. Doxygen will
+# generate a warning when it encounters a \startuml command in this case and
+# will not generate output for the diagram.
+
+PLANTUML_JAR_PATH =
+
+# When using plantuml, the PLANTUML_CFG_FILE tag can be used to specify a
+# configuration file for plantuml.
+
+PLANTUML_CFG_FILE =
+
+# When using plantuml, the specified paths are searched for files specified by
+# the !include statement in a plantuml block.
+
+PLANTUML_INCLUDE_PATH =
+
+# The DOT_GRAPH_MAX_NODES tag can be used to set the maximum number of nodes
+# that will be shown in the graph. If the number of nodes in a graph becomes
+# larger than this value, doxygen will truncate the graph, which is visualized
+# by representing a node as a red box. Note that doxygen if the number of direct
+# children of the root node in a graph is already larger than
+# DOT_GRAPH_MAX_NODES then the graph will not be shown at all. Also note that
+# the size of a graph can be further restricted by MAX_DOT_GRAPH_DEPTH.
+# Minimum value: 0, maximum value: 10000, default value: 50.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_GRAPH_MAX_NODES = 50
+
+# The MAX_DOT_GRAPH_DEPTH tag can be used to set the maximum depth of the graphs
+# generated by dot. A depth value of 3 means that only nodes reachable from the
+# root by following a path via at most 3 edges will be shown. Nodes that lay
+# further from the root node will be omitted. Note that setting this option to 1
+# or 2 may greatly reduce the computation time needed for large code bases. Also
+# note that the size of a graph can be further restricted by
+# DOT_GRAPH_MAX_NODES. Using a depth of 0 means no depth restriction.
+# Minimum value: 0, maximum value: 1000, default value: 0.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+MAX_DOT_GRAPH_DEPTH = 0
+
+# Set the DOT_TRANSPARENT tag to YES to generate images with a transparent
+# background. This is disabled by default, because dot on Windows does not seem
+# to support this out of the box.
+#
+# Warning: Depending on the platform used, enabling this option may lead to
+# badly anti-aliased labels on the edges of a graph (i.e. they become hard to
+# read).
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_TRANSPARENT = NO
+
+# Set the DOT_MULTI_TARGETS tag to YES to allow dot to generate multiple output
+# files in one run (i.e. multiple -o and -T options on the command line). This
+# makes dot run faster, but since only newer versions of dot (>1.8.10) support
+# this, this feature is disabled by default.
+# The default value is: NO.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_MULTI_TARGETS = NO
+
+# If the GENERATE_LEGEND tag is set to YES doxygen will generate a legend page
+# explaining the meaning of the various boxes and arrows in the dot generated
+# graphs.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+GENERATE_LEGEND = YES
+
+# If the DOT_CLEANUP tag is set to YES, doxygen will remove the intermediate dot
+# files that are used to generate the various graphs.
+# The default value is: YES.
+# This tag requires that the tag HAVE_DOT is set to YES.
+
+DOT_CLEANUP = YES
diff --git a/images/tikzit.ai b/images/tikzit.ai
new file mode 100644
index 0000000..b1a8b89
--- /dev/null
+++ b/images/tikzit.ai
@@ -0,0 +1,967 @@
+%PDF-1.5 %
+1 0 obj <</Metadata 2 0 R/OCProperties<</D<</OFF[5 0 R 71 0 R]/ON[6 0 R 7 0 R 8 0 R 72 0 R 73 0 R 74 0 R]/Order 75 0 R/RBGroups[]>>/OCGs[5 0 R 6 0 R 7 0 R 8 0 R 71 0 R 72 0 R 73 0 R 74 0 R]>>/Pages 3 0 R/Type/Catalog>> endobj 2 0 obj <</Length 42458/Subtype/XML/Type/Metadata>>stream
+<?xpacket begin="" id="W5M0MpCehiHzreSzNTczkc9d"?>
+<x:xmpmeta xmlns:x="adobe:ns:meta/" x:xmptk="Adobe XMP Core 5.0-c060 61.134777, 2010/02/12-17:32:00 ">
+ <rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
+ <rdf:Description rdf:about=""
+ xmlns:dc="http://purl.org/dc/elements/1.1/">
+ <dc:format>application/pdf</dc:format>
+ <dc:title>
+ <rdf:Alt>
+ <rdf:li xml:lang="x-default">tikzit</rdf:li>
+ </rdf:Alt>
+ </dc:title>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmp="http://ns.adobe.com/xap/1.0/"
+ xmlns:xmpGImg="http://ns.adobe.com/xap/1.0/g/img/">
+ <xmp:CreatorTool>Adobe Illustrator CS5</xmp:CreatorTool>
+ <xmp:CreateDate>2011-07-30T18:14:32+01:00</xmp:CreateDate>
+ <xmp:ModifyDate>2018-01-10T09:38:56+01:00</xmp:ModifyDate>
+ <xmp:MetadataDate>2018-01-10T09:38:56+01:00</xmp:MetadataDate>
+ <xmp:Thumbnails>
+ <rdf:Alt>
+ <rdf:li rdf:parseType="Resource">
+ <xmpGImg:width>256</xmpGImg:width>
+ <xmpGImg:height>236</xmpGImg:height>
+ <xmpGImg:format>JPEG</xmpGImg:format>
+ <xmpGImg:image>/9j/4AAQSkZJRgABAgEASABIAAD/7QAsUGhvdG9zaG9wIDMuMAA4QklNA+0AAAAAABAASAAAAAEA&#xA;AQBIAAAAAQAB/+4ADkFkb2JlAGTAAAAAAf/bAIQABgQEBAUEBgUFBgkGBQYJCwgGBggLDAoKCwoK&#xA;DBAMDAwMDAwQDA4PEA8ODBMTFBQTExwbGxscHx8fHx8fHx8fHwEHBwcNDA0YEBAYGhURFRofHx8f&#xA;Hx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8fHx8f/8AAEQgA7AEAAwER&#xA;AAIRAQMRAf/EAaIAAAAHAQEBAQEAAAAAAAAAAAQFAwIGAQAHCAkKCwEAAgIDAQEBAQEAAAAAAAAA&#xA;AQACAwQFBgcICQoLEAACAQMDAgQCBgcDBAIGAnMBAgMRBAAFIRIxQVEGE2EicYEUMpGhBxWxQiPB&#xA;UtHhMxZi8CRygvElQzRTkqKyY3PCNUQnk6OzNhdUZHTD0uIIJoMJChgZhJRFRqS0VtNVKBry4/PE&#xA;1OT0ZXWFlaW1xdXl9WZ2hpamtsbW5vY3R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo+Ck5SVlpeYmZ&#xA;qbnJ2en5KjpKWmp6ipqqusra6voRAAICAQIDBQUEBQYECAMDbQEAAhEDBCESMUEFURNhIgZxgZEy&#xA;obHwFMHR4SNCFVJicvEzJDRDghaSUyWiY7LCB3PSNeJEgxdUkwgJChgZJjZFGidkdFU38qOzwygp&#xA;0+PzhJSktMTU5PRldYWVpbXF1eX1RlZmdoaWprbG1ub2R1dnd4eXp7fH1+f3OEhYaHiImKi4yNjo&#xA;+DlJWWl5iZmpucnZ6fkqOkpaanqKmqq6ytrq+v/aAAwDAQACEQMRAD8A9U4q7FXYq7FXYq7FXYq7&#xA;FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7F&#xA;XYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FX&#xA;Yq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXYq7FXY&#xA;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</xmpGImg:image>
+ </rdf:li>
+ </rdf:Alt>
+ </xmp:Thumbnails>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmpMM="http://ns.adobe.com/xap/1.0/mm/"
+ xmlns:stRef="http://ns.adobe.com/xap/1.0/sType/ResourceRef#"
+ xmlns:stEvt="http://ns.adobe.com/xap/1.0/sType/ResourceEvent#">
+ <xmpMM:DocumentID>xmp.did:F87F117407206811871F8ABB10CFDF09</xmpMM:DocumentID>
+ <xmpMM:InstanceID>uuid:2febaa8e-26d7-aa43-a652-eb95dd2e0916</xmpMM:InstanceID>
+ <xmpMM:OriginalDocumentID>uuid:44F4E52A333FDF119697BF3D5A982C1E</xmpMM:OriginalDocumentID>
+ <xmpMM:RenditionClass>proof:pdf</xmpMM:RenditionClass>
+ <xmpMM:DerivedFrom rdf:parseType="Resource">
+ <stRef:instanceID>uuid:807614af-ea61-034d-bdc9-4644d641c546</stRef:instanceID>
+ <stRef:documentID>uuid:44F4E52A333FDF119697BF3D5A982C1E</stRef:documentID>
+ <stRef:originalDocumentID>uuid:44F4E52A333FDF119697BF3D5A982C1E</stRef:originalDocumentID>
+ </xmpMM:DerivedFrom>
+ <xmpMM:History>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <stEvt:action>saved</stEvt:action>
+ <stEvt:instanceID>xmp.iid:F87F117407206811871F8ABB10CFDF09</stEvt:instanceID>
+ <stEvt:when>2011-07-30T18:14:29+01:00</stEvt:when>
+ <stEvt:softwareAgent>Adobe Illustrator CS5</stEvt:softwareAgent>
+ <stEvt:changed>/</stEvt:changed>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpMM:History>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:illustrator="http://ns.adobe.com/illustrator/1.0/">
+ <illustrator:Type>Document</illustrator:Type>
+ <illustrator:StartupProfile>Basic RGB</illustrator:StartupProfile>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:xmpTPg="http://ns.adobe.com/xap/1.0/t/pg/"
+ xmlns:stDim="http://ns.adobe.com/xap/1.0/sType/Dimensions#"
+ xmlns:xmpG="http://ns.adobe.com/xap/1.0/g/">
+ <xmpTPg:NPages>1</xmpTPg:NPages>
+ <xmpTPg:HasVisibleTransparency>True</xmpTPg:HasVisibleTransparency>
+ <xmpTPg:HasVisibleOverprint>False</xmpTPg:HasVisibleOverprint>
+ <xmpTPg:MaxPageSize rdf:parseType="Resource">
+ <stDim:w>512.000000</stDim:w>
+ <stDim:h>512.000000</stDim:h>
+ <stDim:unit>Pixels</stDim:unit>
+ </xmpTPg:MaxPageSize>
+ <xmpTPg:PlateNames>
+ <rdf:Seq>
+ <rdf:li>Cyan</rdf:li>
+ <rdf:li>Magenta</rdf:li>
+ <rdf:li>Yellow</rdf:li>
+ <rdf:li>Black</rdf:li>
+ </rdf:Seq>
+ </xmpTPg:PlateNames>
+ <xmpTPg:SwatchGroups>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:groupName>Default Swatch Group</xmpG:groupName>
+ <xmpG:groupType>0</xmpG:groupType>
+ <xmpG:Colorants>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>White</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>255</xmpG:green>
+ <xmpG:blue>255</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>Black</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>0</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Red</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>0</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Yellow</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>255</xmpG:green>
+ <xmpG:blue>0</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Green</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>255</xmpG:green>
+ <xmpG:blue>0</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Cyan</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>255</xmpG:green>
+ <xmpG:blue>255</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Blue</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>255</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>RGB Magenta</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>255</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>255</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=193 G=39 B=45</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>193</xmpG:red>
+ <xmpG:green>39</xmpG:green>
+ <xmpG:blue>45</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=237 G=28 B=36</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>237</xmpG:red>
+ <xmpG:green>28</xmpG:green>
+ <xmpG:blue>36</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=241 G=90 B=36</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>241</xmpG:red>
+ <xmpG:green>90</xmpG:green>
+ <xmpG:blue>36</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=247 G=147 B=30</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>247</xmpG:red>
+ <xmpG:green>147</xmpG:green>
+ <xmpG:blue>30</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=251 G=176 B=59</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>251</xmpG:red>
+ <xmpG:green>176</xmpG:green>
+ <xmpG:blue>59</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=252 G=238 B=33</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>252</xmpG:red>
+ <xmpG:green>238</xmpG:green>
+ <xmpG:blue>33</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=217 G=224 B=33</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>217</xmpG:red>
+ <xmpG:green>224</xmpG:green>
+ <xmpG:blue>33</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=140 G=198 B=63</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>140</xmpG:red>
+ <xmpG:green>198</xmpG:green>
+ <xmpG:blue>63</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=57 G=181 B=74</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>57</xmpG:red>
+ <xmpG:green>181</xmpG:green>
+ <xmpG:blue>74</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=0 G=146 B=69</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>146</xmpG:green>
+ <xmpG:blue>69</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=0 G=104 B=55</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>104</xmpG:green>
+ <xmpG:blue>55</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=34 G=181 B=115</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>34</xmpG:red>
+ <xmpG:green>181</xmpG:green>
+ <xmpG:blue>115</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=0 G=169 B=157</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>169</xmpG:green>
+ <xmpG:blue>157</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=41 G=171 B=226</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>41</xmpG:red>
+ <xmpG:green>171</xmpG:green>
+ <xmpG:blue>226</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=0 G=113 B=188</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>0</xmpG:red>
+ <xmpG:green>113</xmpG:green>
+ <xmpG:blue>188</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=46 G=49 B=146</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>46</xmpG:red>
+ <xmpG:green>49</xmpG:green>
+ <xmpG:blue>146</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=27 G=20 B=100</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>27</xmpG:red>
+ <xmpG:green>20</xmpG:green>
+ <xmpG:blue>100</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=102 G=45 B=145</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>102</xmpG:red>
+ <xmpG:green>45</xmpG:green>
+ <xmpG:blue>145</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=147 G=39 B=143</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>147</xmpG:red>
+ <xmpG:green>39</xmpG:green>
+ <xmpG:blue>143</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=158 G=0 B=93</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>158</xmpG:red>
+ <xmpG:green>0</xmpG:green>
+ <xmpG:blue>93</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=212 G=20 B=90</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>212</xmpG:red>
+ <xmpG:green>20</xmpG:green>
+ <xmpG:blue>90</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=237 G=30 B=121</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>237</xmpG:red>
+ <xmpG:green>30</xmpG:green>
+ <xmpG:blue>121</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=199 G=178 B=153</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>199</xmpG:red>
+ <xmpG:green>178</xmpG:green>
+ <xmpG:blue>153</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=153 G=134 B=117</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>153</xmpG:red>
+ <xmpG:green>134</xmpG:green>
+ <xmpG:blue>117</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=115 G=99 B=87</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>115</xmpG:red>
+ <xmpG:green>99</xmpG:green>
+ <xmpG:blue>87</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=83 G=71 B=65</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>83</xmpG:red>
+ <xmpG:green>71</xmpG:green>
+ <xmpG:blue>65</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=198 G=156 B=109</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>198</xmpG:red>
+ <xmpG:green>156</xmpG:green>
+ <xmpG:blue>109</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=166 G=124 B=82</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>166</xmpG:red>
+ <xmpG:green>124</xmpG:green>
+ <xmpG:blue>82</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=140 G=98 B=57</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>140</xmpG:red>
+ <xmpG:green>98</xmpG:green>
+ <xmpG:blue>57</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=117 G=76 B=36</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>117</xmpG:red>
+ <xmpG:green>76</xmpG:green>
+ <xmpG:blue>36</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=96 G=56 B=19</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>96</xmpG:red>
+ <xmpG:green>56</xmpG:green>
+ <xmpG:blue>19</xmpG:blue>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=66 G=33 B=11</xmpG:swatchName>
+ <xmpG:mode>RGB</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:red>66</xmpG:red>
+ <xmpG:green>33</xmpG:green>
+ <xmpG:blue>11</xmpG:blue>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpG:Colorants>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:groupName>Grayscale</xmpG:groupName>
+ <xmpG:groupType>1</xmpG:groupType>
+ <xmpG:Colorants>
+ <rdf:Seq>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=100</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>255</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=90</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>229</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=80</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>204</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=70</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>178</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=60</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>153</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=50</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>127</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=40</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>101</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=30</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>76</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=20</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>50</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>K=10</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>25</xmpG:gray>
+ </rdf:li>
+ <rdf:li rdf:parseType="Resource">
+ <xmpG:swatchName>R=241 G=241 B=242</xmpG:swatchName>
+ <xmpG:mode>GRAY</xmpG:mode>
+ <xmpG:type>PROCESS</xmpG:type>
+ <xmpG:gray>12</xmpG:gray>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpG:Colorants>
+ </rdf:li>
+ </rdf:Seq>
+ </xmpTPg:SwatchGroups>
+ </rdf:Description>
+ <rdf:Description rdf:about=""
+ xmlns:pdf="http://ns.adobe.com/pdf/1.3/">
+ <pdf:Producer>Adobe PDF library 9.90</pdf:Producer>
+ </rdf:Description>
+ </rdf:RDF>
+</x:xmpmeta>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+<?xpacket end="w"?> endstream endobj 3 0 obj <</Count 1/Kids[10 0 R]/Type/Pages>> endobj 10 0 obj <</ArtBox[0.0 0.0 512.0 512.0]/BleedBox[0.0 0.0 512.0 512.0]/Contents 76 0 R/Group 77 0 R/LastModified(D:20180110093856+01'00')/MediaBox[0.0 0.0 512.0 512.0]/Parent 3 0 R/PieceInfo<</Illustrator 78 0 R>>/Resources<</ColorSpace<</CS0 79 0 R/CS1 79 0 R>>/ExtGState<</GS0 80 0 R/GS1 81 0 R/GS2 82 0 R/GS3 83 0 R>>/Properties<</MC0 71 0 R/MC1 72 0 R/MC2 73 0 R/MC3 74 0 R>>/Shading<</Sh0 84 0 R/Sh1 85 0 R/Sh2 86 0 R/Sh3 87 0 R>>/XObject<</Fm0 88 0 R/Fm1 89 0 R>>>>/Thumb 90 0 R/TrimBox[0.0 0.0 512.0 512.0]/Type/Page>> endobj 76 0 obj <</Filter/FlateDecode/Length 1833>>stream
+HW˲7 WגrHL(‚9{* uƒ:ˣ{x܋nDm OOiyx} 6qFoڜcPw(8k>Tqϵles➗{$-D'|?FJub NRk?1.Q̇`4brV}D6 y/Ky&|eo\ ^'e} B]>5D
+ NJ={jpoUH4v-l6N^S_,"Q++Bx1m.#HR R*PܻتOT^Gq2 &h-!$m  m Pd%&vUL{gf&b}QVETɈ B">dcRW7 7{'
+)V|pRpS͋9t Φ /îՓ7[ut)oe |_VB)PM۔mSWs~`}22 t@F/nH2:9acݺH|%}%Oؓ<5>g`pw)@2baBp
+q;KݤW*ōD:°~ T`JOh\ZSBn7Q}K'{I葤LM
+z
+Do]̡/A/f'ўCt"ӁJAke9siBزPO`&^R 3φB$#
+8;ZD.gPs,o%!4_eHG&pt:\mXE#6aOKEBq.IT0"9n@!b"'E$!X((QH?s"5?G?K#P20
+O/d)\T,/P1'qS?i"`crJ?H8d*KjRXIZ+u6FTjS-):gaeT(>+?(!Z6FT)AEal%;;Q@
+kb3O4qsuY.N]*EB(@]Z27":::JI9hMb@0>:^nab-+NNs/JHE@q?G;3L!m9!^.::8g
+iM>Jef*'=g%mLeUpPAmn5I8u&(:V"^JE7%&U-SUu<iPVi!Vt+kfo9?Wi7Kh8W7:Uk
+P.sH+3a5pg_(PnrR:ppIeGd'_%_(&eY$9$:kAP:sCar&oSpLD^CF*eXn+>QX1AZ47
+)b\i'o<TjLJ1h'/B`4"]c5rB0?H9m3#u.gA^)U#>rh[PJOC%+(N\UM53;RTZn-;X.
+d$#BDrYE<Fk1!N;^L^[YaE<$2[TE%s[GLEMHh4THA%r'7#Pc5"dYKn2b1$I)JLXE;
+%$KNH&8t[N!&5;*a3UVs,C]J@rbq<[S&]*rVoHIQ]G$r=meed<+sXI$K:T7SGQFgA
+9%1kr"`lnt]9s5Cjlq,(PbA(RTK4.kA%5+;5A/D>[.o3UD]5(MDElGJ=9>,`#5E]%
+cN&-!^1@~> endstream endobj 92 0 obj [/Indexed/DeviceRGB 255 93 0 R] endobj 93 0 obj <</Filter[/ASCII85Decode/FlateDecode]/Length 428>>stream
+8;X]O>EqN@%''O_@%e@?J;%+8(9e>X=MR6S?i^YgA3=].HDXF.R$lIL@"pJ+EP(%0
+b]6ajmNZn*!='OQZeQ^Y*,=]?C.B+\Ulg9dhD*"iC[;*=3`oP1[!S^)?1)IZ4dup`
+E1r!/,*0[*9.aFIR2&b-C#s<Xl5FH@[<=!#6V)uDBXnIr.F>oRZ7Dl%MLY\.?d>Mn
+6%Q2oYfNRF$$+ON<+]RUJmC0I<jlL.oXisZ;SYU[/7#<&37rclQKqeJe#,UF7Rgb1
+VNWFKf>nDZ4OTs0S!saG>GGKUlQ*Q?45:CI&4J'_2j<etJICj7e7nPMb=O6S7UOH<
+PO7r\I.Hu&e0d&E<.')fERr/l+*W,)q^D*ai5<uuLX.7g/>$XKrcYp0n+Xl_nU*O(
+l[$6Nn+Z_Nq0]s7hs]`XX1nZ8&94a\~> endstream endobj 88 0 obj <</BBox[13.0 121.0 507.579 6.42187]/Group 94 0 R/Length 63/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ColorSpace<</CS0 79 0 R>>/ExtGState<</GS0 81 0 R>>>>/Subtype/Form>>stream
+/CS0 cs 0 0 0 scn
+/GS0 gs
+507.579 6.422 -494.579 114.578 re
+f
+ endstream endobj 89 0 obj <</BBox[-46.8945 565.894 536.576 244.91]/Group 95 0 R/Length 248/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ColorSpace<</CS0 79 0 R>>/ExtGState<</GS0 81 0 R>>>>/Subtype/Form>>stream
+/CS0 cs 1 1 1 scn
+/GS0 gs
+q 1 0 0 1 536.5762 405.4023 cm
+0 0 m
+0 -88.638 -130.614 -160.492 -291.735 -160.492 c
+-452.856 -160.492 -583.471 -88.638 -583.471 0 c
+-583.471 88.637 -452.856 160.492 -291.735 160.492 c
+-130.614 160.492 0 88.637 0 0 c
+f
+Q
+ endstream endobj 95 0 obj <</I false/K false/S/Transparency/Type/Group>> endobj 81 0 obj <</AIS false/BM/Normal/CA 1.0/OP false/OPM 1/SA true/SMask/None/Type/ExtGState/ca 1.0/op false>> endobj 79 0 obj [/ICCBased 96 0 R] endobj 96 0 obj <</Filter/FlateDecode/Length 2574/N 3>>stream
+HyTSwoɞc [5laQIBHADED2mtFOE.c}08׎8GNg9w߽
+ 
+V)gB0iW8#8wթ8_٥ʨQQj@&A)/g>'K
+x-
+ꇆnQt}MA0alSx k&^>0|>_',G!"F$H:R!zFQd?r 9\A&G rQ hE]a4zBgE#H *B=0HIpp0MxJ$D1D, VĭKĻYdE"EI2EBGt4MzNr!YK ?%_&#(0J:EAiQ(()ӔWT6U@P+!~mD eԴ!hӦh/']B/ҏӿ?a0nhF!X8܌kc&5S6lIa2cKMA!E#ƒdV(kel }}Cq9
+N')].uJr
+ wG xR^[oƜchg`>b$*~ :Eb~,m,-ݖ,Y¬*6X[ݱF=3뭷Y~dó ti zf6~`{v.Ng#{}}jc1X6fm;'_9 r:8q:˜O:ϸ8uJqnv=MmR 4
+n3ܣkGݯz=[==<=G</z^^j^ ޡZQB0FX'+t<u-{__ߘ-G,}/Hh 8mW2p[AiAN#8$X?AKHI{!7<qWy(!46-aaaW @@`lYĎH,$((Yh7ъb<b*b<~L&Y&9%uMssNpJP%MI JlN<DHJIڐtCj'KwKgC%Nd |ꙪO=%mLuvx:HoL!ȨC&13#s$/Y=OsbsrnsO1v=ˏϟ\h٢#¼oZ<]TUt}`IÒsKV-Y,+>TB(/S,]6*-W:#7*e^YDY}UjAyT`#D="b{ų+ʯ:!kJ4Gmt}uC%K7YVfFY .=b?SƕƩȺy چ k5%4m7lqlioZlG+Zz͹mzy]?uuw|"űNwW&e֥ﺱ*|j5kyݭǯg^ykEklD_p߶7Dmo꿻1ml{Mś nLl<9O
+zpg_XQKFAǿ=ȼ:ɹ8ʷ6˶5̵5͵6ζ7ϸ9к<Ѿ?DINU\dlvۀ܊ݖޢ)߯6DScs 2F[p(@Xr4Pm8Ww)Km
+
+0 g
+/GS0 gs
+-46.895 565.894 583.471 -320.984 re
+f
+q
+0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do
+Q
+ endstream endobj 113 0 obj <</CS/DeviceGray/I false/K false/S/Transparency/Type/Group>> endobj 114 0 obj <</BBox[-46.8945 565.894 536.576 244.91]/Group 115 0 R/Length 1778/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ColorSpace<</CS0 79 0 R/CS1 79 0 R>>/ExtGState<</GS0 81 0 R>>/Shading<</Sh0 116 0 R>>>>/Subtype/Form>>stream
+q
+419.6 365.446 m
+414.319 365.446 409.165 364.915 404.179 363.916 c
+374.027 434.636 303.875 484.212 222.14 484.212 c
+112.892 484.212 24.329 395.649 24.329 286.402 c
+24.329 241.821 39.081 200.689 63.963 167.609 c
+51.904 153.863 44.578 135.862 44.578 116.139 c
+44.578 73.004 79.545 38.036 122.68 38.036 c
+156.741 38.036 185.693 59.849 196.373 90.261 c
+204.807 89.163 213.406 88.591 222.14 88.591 c
+230.657 88.591 239.049 89.13 247.283 90.175 c
+257.895 59.637 286.907 37.708 321.059 37.708 c
+364.193 37.708 399.16 72.675 399.16 115.81 c
+399.16 135.448 391.896 153.38 379.928 167.104 c
+390 180.404 398.426 195.017 404.91 210.641 c
+409.67 209.734 414.576 209.241 419.6 209.241 c
+462.734 209.241 497.701 244.209 497.701 287.343 c
+497.701 330.478 462.734 365.446 419.6 365.446 c
+W n
+q
+0 g
+/GS0 gs
+-0.0000153 446.5039062 446.5039062 0.0000153 261.0146484 37.7080078 cm
+BX /Sh0 sh EX Q
+Q
+/CS1 CS 0 0 0 SCN
+10 w 4 M 0 j 0 J []0 d
+/GS0 gs
+q 1 0 0 1 419.5996 365.4458 cm
+0 0 m
+-5.28 0 -10.435 -0.531 -15.421 -1.53 c
+-45.572 69.19 -115.725 118.767 -197.46 118.767 c
+-306.708 118.767 -395.271 30.204 -395.271 -79.044 c
+-395.271 -123.625 -380.519 -164.756 -355.636 -197.836 c
+-367.696 -211.583 -375.022 -229.583 -375.022 -249.307 c
+-375.022 -292.442 -340.055 -327.41 -296.92 -327.41 c
+-262.858 -327.41 -233.907 -305.597 -223.227 -275.185 c
+-214.792 -276.283 -206.193 -276.855 -197.46 -276.855 c
+-188.942 -276.855 -180.55 -276.316 -172.316 -275.271 c
+-161.705 -305.809 -132.692 -327.738 -98.541 -327.738 c
+-55.406 -327.738 -20.439 -292.771 -20.439 -249.636 c
+-20.439 -229.998 -27.704 -212.066 -39.672 -198.342 c
+-29.6 -185.042 -21.174 -170.429 -14.689 -154.805 c
+-9.93 -155.711 -5.023 -156.205 0 -156.205 c
+43.135 -156.205 78.102 -121.237 78.102 -78.103 c
+78.102 -34.968 43.135 0 0 0 c
+h
+S
+Q
+ endstream endobj 115 0 obj <</CS 117 0 R/I true/K false/S/Transparency/Type/Group>> endobj 116 0 obj <</AntiAlias false/ColorSpace 79 0 R/Coords[0.0 0.0 1.0 0.0]/Domain[0.0 1.0]/Extend[true true]/Function 118 0 R/ShadingType 2>> endobj 118 0 obj <</Bounds[0.351654 0.92308]/Domain[0.0 1.0]/Encode[0.0 1.0 0.0 1.0 0.0 1.0]/FunctionType 3/Functions[119 0 R 120 0 R 121 0 R]>> endobj 119 0 obj <</C0[1.0 1.0 1.0]/C1[1.0 1.0 1.0]/Domain[0.0 1.0]/FunctionType 2/N 1.0>> endobj 120 0 obj <</C0[1.0 1.0 1.0]/C1[0.137253 0.121567 0.125488]/Domain[0.0 1.0]/FunctionType 2/N 1.0>> endobj 121 0 obj <</C0[0.137253 0.121567 0.125488]/C1[0.137253 0.121567 0.125488]/Domain[0.0 1.0]/FunctionType 2/N 1.0>> endobj 117 0 obj [/ICCBased 96 0 R] endobj 109 0 obj <</BC 122 0 R/G 123 0 R/S/Luminosity/Type/Mask>> endobj 122 0 obj [0.0] endobj 123 0 obj <</BBox[13.0 121.0 507.579 6.42187]/Group 124 0 R/Length 82/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 81 0 R>>/XObject<</Fm0 125 0 R>>>>/Subtype/Form>>stream
+0 g
+/GS0 gs
+13 121 494.579 -114.578 re
+f
+q
+0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do
+Q
+ endstream endobj 124 0 obj <</CS/DeviceGray/I false/K false/S/Transparency/Type/Group>> endobj 125 0 obj <</BBox[13.0 121.0 507.579 6.42187]/Group 126 0 R/Length 49/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ExtGState<</GS0 127 0 R>>/XObject<</Fm0 128 0 R>>>>/Subtype/Form>>stream
+q
+/GS0 gs
+0 Tc 0 Tw 0 Ts 100 Tz 0 Tr /Fm0 Do
+Q
+ endstream endobj 126 0 obj <</CS 117 0 R/I true/K false/S/Transparency/Type/Group>> endobj 128 0 obj <</BBox[7.97656 77.3076 507.01 8.75195]/Group 129 0 R/Length 213/Matrix[1.0 0.0 0.0 1.0 0.0 0.0]/Resources<</ColorSpace<</CS0 79 0 R>>/ExtGState<</GS0 81 0 R>>/Shading<</Sh0 130 0 R>>>>/Subtype/Form>>stream
+q
+7.977 8.752 m
+113.295 8.752 l
+408.581 8.752 l
+507.01 8.752 l
+507.01 37.756 l
+507.01 77.308 l
+408.581 77.308 l
+113.295 77.308 l
+7.977 77.308 l
+7.977 37.756 l
+h
+W n
+q
+0 g
+/GS0 gs
+1 0 0 -1 0 0 cm
+BX /Sh0 sh EX Q
+Q
+ endstream endobj 129 0 obj <</I false/K false/S/Transparency/Type/Group>> endobj 130 0 obj <</AntiAlias false/BitsPerComponent 8/BitsPerCoordinate 32/BitsPerFlag 8/ColorSpace 79 0 R/Decode[7.97656 507.01 -504.023 -4.99023 0.0 1.0 0.0 1.0 0.0 1.0]/Length 10152/ShadingType 7>>stream
+
+%!PS-Adobe-3.0 %%Creator: Adobe Illustrator(R) 15.0 %%AI8_CreatorVersion: 15.0.2 %%For: (Aleks Kissinger) () %%Title: (tikzit.ai) %%CreationDate: 10/01/2018 09:38 %%Canvassize: 16383 %%BoundingBox: -47 32 537 566 %%HiResBoundingBox: -46.8945 32.708 536.5762 565.894 %%DocumentProcessColors: Cyan Magenta Yellow Black %AI5_FileFormat 11.0 %AI12_BuildNumber: 399 %AI3_ColorUsage: Color %AI7_ImageSettings: 0 %%RGBProcessColor: 0 0 0 ([Registration]) %AI3_Cropmarks: 0 0 512 512 %AI3_TemplateBox: 256.5 255.5 256.5 255.5 %AI3_TileBox: -50 -140 562 652 %AI3_DocumentPreview: None %AI5_ArtSize: 14400 14400 %AI5_RulerUnits: 6 %AI9_ColorModel: 1 %AI5_ArtFlags: 0 0 0 1 0 0 1 0 0 %AI5_TargetResolution: 800 %AI5_NumLayers: 4 %AI9_OpenToView: -745 843 0.5 979 715 18 0 0 73 134 0 0 0 1 1 0 1 1 0 1 %AI5_OpenViewLayers: 7772 %%PageOrigin:0 0 %AI7_GridSettings: 72 8 72 8 1 0 0.8 0.8 0.8 0.9 0.9 0.9 %AI9_Flatten: 1 %AI12_CMSettings: 00.MS %%EndComments endstream endobj 133 0 obj <</Length 14560>>stream
+%%BoundingBox: -47 32 537 566 %%HiResBoundingBox: -46.8945 32.708 536.5762 565.894 %AI7_Thumbnail: 128 120 8 %%BeginData: 14412 Hex Bytes %0000330000660000990000CC0033000033330033660033990033CC0033FF %0066000066330066660066990066CC0066FF009900009933009966009999 %0099CC0099FF00CC0000CC3300CC6600CC9900CCCC00CCFF00FF3300FF66 %00FF9900FFCC3300003300333300663300993300CC3300FF333300333333 %3333663333993333CC3333FF3366003366333366663366993366CC3366FF %3399003399333399663399993399CC3399FF33CC0033CC3333CC6633CC99 %33CCCC33CCFF33FF0033FF3333FF6633FF9933FFCC33FFFF660000660033 %6600666600996600CC6600FF6633006633336633666633996633CC6633FF %6666006666336666666666996666CC6666FF669900669933669966669999 %6699CC6699FF66CC0066CC3366CC6666CC9966CCCC66CCFF66FF0066FF33 %66FF6666FF9966FFCC66FFFF9900009900339900669900999900CC9900FF %9933009933339933669933999933CC9933FF996600996633996666996699 %9966CC9966FF9999009999339999669999999999CC9999FF99CC0099CC33 %99CC6699CC9999CCCC99CCFF99FF0099FF3399FF6699FF9999FFCC99FFFF %CC0000CC0033CC0066CC0099CC00CCCC00FFCC3300CC3333CC3366CC3399 %CC33CCCC33FFCC6600CC6633CC6666CC6699CC66CCCC66FFCC9900CC9933 %CC9966CC9999CC99CCCC99FFCCCC00CCCC33CCCC66CCCC99CCCCCCCCCCFF %CCFF00CCFF33CCFF66CCFF99CCFFCCCCFFFFFF0033FF0066FF0099FF00CC %FF3300FF3333FF3366FF3399FF33CCFF33FFFF6600FF6633FF6666FF6699 %FF66CCFF66FFFF9900FF9933FF9966FF9999FF99CCFF99FFFFCC00FFCC33 %FFCC66FFCC99FFCCCCFFCCFFFFFF33FFFF66FFFF99FFFFCC110000001100 %000011111111220000002200000022222222440000004400000044444444 %550000005500000055555555770000007700000077777777880000008800 %000088888888AA000000AA000000AAAAAAAABB000000BB000000BBBBBBBB %DD000000DD000000DDDDDDDDEE000000EE000000EEEEEEEE0000000000FF %00FF0000FFFFFF0000FF00FFFFFF00FFFFFF %524C45FDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFDFCFFFD5BFF %A8FD76FFA8A85252FD0427F827F8272752527D7DA8A8FD6AFF7D52FD13F8 %27277DA8FD63FFA85227FD07F827277D527D7DA87D7D52522727FD06F827 %7DA8FD5EFF7D52FD05F85252A8A8FD0FFFA87D2727FD04F827A8FD5AFF7D %27FD04F8527DFD0BFFA8FD0BFFA8A85227F8F8F8277DFD56FF7D27F8F8F8 %277DFD1DFFA97D27F8F8F827A8FD52FFA827F8F8F827A8FD04FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF7D52F8F8 %F827A8FD4FFF7DF8F8F8277DFD26FFA827F8F8F852FD4CFFA827F8F8F87D %FFFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFFFFF7D27F8F827FD4AFF7D27F8F827FD05FFA8FF %FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF %A8FFFFFFA8FFFFFFA852F8F8F8A8FD47FF52F8F8F852FFFFFFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFFF7DF8F8F87DFD45FF52F8F827A8FFFFFFCBFFFFFF %CBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFFFFFFCBFF %FFFFCBFFFFFFCBFFFFFFA9FFFFA827F8F852FD43FF27F8F827A8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF27F8F852FD41FF27F8F852 %A8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FF %FFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFFA8FFFFFF52F8F852 %FD3FFF52F8F852A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FF52F8F852FD3DFF7DF8F852FFFFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFFFFF52F8F87DFD3BFF7DF8F827A8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF27 %F8F87DFD39FFA8F8F827A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FF27F8F8A8FD37FFA827F8F87EFFA8A8A8 %FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8 %A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFFD04A8 %F8F8F8FD37FF7DF8F87DFFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8 %FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFFFA8F8F852FD35FFA8F8F852FFA8FF %A8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8 %A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FF %A8A8A8FFFF52F8F87DFD34FF27F8F8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA827F827FD33 %FF52F8F87DFD45A8FF7DF8F87DFD31FFA827F852A8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FFA8FF %A8FF52F8F8FD31FF52F8F87DFFFD48A8F8F852FD30FFF8F852FFA8A8A8FF %A8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A9 %A8FFA8FFA8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FFA8A8A8FF %A8A8A8FFA8A8A8FFFF7DF8F8A8FD2EFF52F8F8FD22A8FFFD07A8FFFD1FA8 %AFA8F8F8527D7D527D7DA8A8FD27FF27F852A8FFA8AFA8FFA8AFA8FFA8AF %A8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8FF7D7D2752275227522752 %7DA8A8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AFA8FFA8AF %A8FFA8FF52FD08F827277DFD24FF7DF8F87DFD1CA8AFA87D27FD0CF8527D %FFFD1EA8F8F8F827F827FD05F82752FD22FF27F827FFA8A8A8A9A8A8A8A9 %A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8FF7D27F827F827F827F827 %F827F827F827F82727FD04A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 %A8A8A9A8A8A8FFA87D7DFD05A87D7D27FD04F8A8FD1FFFA8F8F87DFD1CA8 %27F8F827F827F827F827F827F827F827F827F8F8F87DFD23A8A9A8A87D52 %F8F8F852FD1EFF7DF827A8FFA8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8 %A8A9FD06A82727F827F827F827F827F827F827F827F827F827F827F87DA8 %FFA8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8A8A8A9A8 %A8A8A9A8A8A8FFA8A827F8F852FD1DFF27F827FD1BA827F8F827F827F827 %F827F827F827F827F827F827F827F827F87DFD28A827F8F852FD1CFF27F8 %7DFD1AA82727F827F827F827F827F827F827F827F827F827F827F827F827 %F87DFD1DA8FFFD09A8FF52F8F852FD1AFFA8F8F87DA8A8A87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DA8A8A87DA852F8F827F827F827F827F827F827 %F827F827F827F827F827F827F827F8FD05A87DA8A8A87DA8A8A87DA8A8A8 %7DA8A8A87DFD05A87D7D7D7E7DFD05A87DA8A8A827F8F87DFD19FF7DF8F8 %FD18A8FF7D27F8272727F8272727F8272727F8272727F8272727F8272727 %F8FD0427FFFD16A87D522727F827F82752FD08A8FF27F8F8FD19FF52F827 %FD04A87DA8A8A87DA8A8A87DA8A8A87DA8A8A87DFD04A852F827F827F827 %F827F827F827F827F827F827F827F827F827F827F827F8F87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DFD05A827F8F827F827F827F8F8F852A8A87DFD %04A87EF8F852FD18FF27F852FFFD17A87DF8272727F8272727F8272727F8 %272727F8272727F8272727F8272727F827F852FD14A82727F827F8272727 %F8272727F852FD07A852F827A8FD16FFA8F8F87DA8A87DA87DA87DA87DA8 %7DA87DA87DA87DA87DA87DA87DA827F8F827F827F827F827F827F827F827 %F827F827F827F827F827F827F827F827F87DA8A87DA87DA87DA87DA87DA8 %7DA87DA87DA827F8F827F827F827F827F827F827F852A8A87DA87DA87DF8 %F87DFD16FFA8F8F87DFD18A827F8272727F8272727F8272727F8272727F8 %272727F8272727F8272727F827272752FFFD0FA8FF5227F8272727F82727 %27F8272727F827F87DFD06A827F827FD16FF7DF8F8A8A8A87DA87EA87DA8 %7EA87DA87EA87DA87EA87DA87EA8A87DF827F827F827F827F827F827F827 %F827F827F827F827F827F827F827F827F827F8277DA87EA87DA87EA87DA8 %7EA87DA87EA87D27F827F827F827F827F827F827F827F82727A87DA87DA8 %847DF8F8A8FD15FFA8F8277DA8A8A884A8A8A884A8A8A884A8A8A884A8A8 %A884A8A8A852272727F8272727F8272727F8272727F8272727F8272727F8 %272727F8272727F827F85284A8A8A884A8A8A884A8A8A884A8A852F82727 %27F8272727F8272727F8272727F82759A87DA87DA87DF8F8A8FD15FF52F8 %F8A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8A852F827F827 %F827F827F827F827F827F827F827F827F827F827F827F827F827F827F827 %F82752A8A8A87DA8A8A87DFD05A82727F827F827F827F827F827F827F827 %F827F8527DA87DA87DA8F8F852FD15FF7DF8277EFD17A8FD2427F827277D %7DA87DA87DA87DA87D7DFD1527A87DA87DA87D27F87DFD15FF52F827A87D %A87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D27F827F827F827F8 %27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 %27F827F827F827F827F827F827F827F827F827F827F827F827F827F827F8 %F8F8277DA87DA87DA827F852FD15FF7DF8277DA87DA87EA87DA8A8A87DA8 %A8A87DA8A8A87DA8A8A87DA82727F8272727F8272727F8272727F8272727 %F8272727F8272727F8272727F8272727F8272727F8FD0427522752275227 %27F8272727F8272727F8FD0727FD05F8A87DA87DA8A852F852FD15FF52F8 %05A87D7D7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87D52F827F827 %F827F827F827F827F827F827F827F827F827F827F827F827F827F827F827 %F827275252A87DA87DA87DA87DA87D52F827F827F827F827F827F827FD07 %F8277DA87D7D7DA827F852FD15FF7DF8277DA87DA87DA87DA87DA87DA8A8 %A87DA8A8A87DA8A8A87DA852FD232752FD05A884A8A8A87EFD04A852FD0A %27FD08F827A87DA87DA87D27F87DFD15FF7DF8F87E7D7D7DA87D7D7DA87D %7D7DA87DA87DA87DA87DA87DA87D7DF827F827F827F827F827F827F827F8 %27F827F827F827F827F827F827F827F827F82752A87DA87DA87DA87DA87D %A87DA87DA85227F827F827F827FD0BF8527DA8FD047DF8F87DFD15FFA8F8 %277DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DA87DFD2227A8 %7DA87DA87DA87DA87DA87DA87DA8A8A8FD0427FD0DF8277DA87DA87DA852 %F8F8FD16FF7DF8F8FD127DA87DA87DA87D7E2727F827F827F827F827F827 %F827F827F827F827F827F827F827F827F827F827F8527DA87DA87DA87DA8 %7DA87DA87DA87DA87D52FD10F852A8FD057D27F827FD17FFF8F852A87DA8 %7DA87DA87DA87DA87DA87DA87DA87DA87DA87DA8A87DFD20277DA87DA87D %A87DA87DA87DA87DA87DA87DA87D52FD0EF827A87DA87DA87D7DF8F852FD %16FFA827F852FD177DA87D27F827F8272727F8272727F8272727F8272727 %F8272727F8272727F8FD0427A87DA87DA87DA87DA8FD0B7D27FD0CF827FD %067DA852F8F8A8FD17FF27F827A87DA87D7D7DA87D7D7DA87D7D7DA87D7D %7DA87D7D7D847DA827F8F827F8FD1A277D7DA87DA87DA87D7D7DA87D7D7D %847D7D7DA87DA87D52FD09F82752A87D7D7DA87DA87D27F852FD18FF52F8 %27FD1A7DFD0DF827F827F827F827F827F827F827F8F8F852FD187D2727F8 %F8F827F852FD097D27F8F8A8FD18FF7DF8F87D7DA87D7D7DA87D7D7DA87D %7D7DA87D7D7DA87D7D7DA87D7D7D52FD1BF8277D7E7D847D7D7DA87D7D7D %A87D7D7DA87D7D7DA87D7D7D847DA8FD057DA87D847DA87D7D7DA87D52F8 %F852FD19FFA8F8F852FD1A7D27FD1AF8527EFD277D52F8F827FD1BFF27F8 %52FD1B7D27FD18F852A8FD257D7E7D52F8F8F8FD1CFF52F8F87D7D7D537D %7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D52FD18F87D7D7D53 %7D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D %7D537D7D7D5227F8F8F8A8FD1CFFA8F8F852FD1B7DFD17F852FD237DA87D %7D5227F8F827FD1EFFA827F8527D7D597D7D7D597D7D7D597D7D7D597D7D %7D597D7D7D597D7D7D5327FD16F8277D7D7D597D7D7D597D7D7D597D7D7D %597D7D7D597D7D7D597D7D7D52FD077D5252FD04F852FD20FF52F8F8FD1B %7DFD17F852FD1B7D27F8FD0527FD05F852A8FD21FFA8F8F8527D527D527D %527D527D527D527D527D527D527D527D527D527D52FD05F8275252522727 %F827275252522827FD04F8277D527D527D527D527D527D527D527D527D52 %7D527D527D527D7D52FD09F82727A8FD24FF27F827FD197D52F8F8F8527D %7EFD0E7DF8F8F827FD1A7D27F8F87D5252277D7DA8FD27FF7DF8F8527D7D %527D537D527D537D527D537D527D537D527D537D527D27F8F8527D7D527D %537D527D537D527D537D527D7D7DF8F8F8527D7D537D527D537D527D537D %527D537D527D537D527D537D52F8F87DFD2FFF27F8277D7D7D537D7D7D53 %7D7D7D537D7D7D537D7D7D537D7D7D52F8F852FD047D537D7D7D537D7D7D %537D7D7D537D7D7DF8F8277D537D7D7D537D7D7D537D7D7D537D7D7D537D %7D7D537D7D27F827FD30FF7DF8F82E7D527D527D527D527D527D527D527D %527D527D527D7D27F8277D7D527D527D527D527D527D527D527D527D527D %7D52F8F8527D527D527D527D527D527D527D527D527D527D527D5252F8F8 %52FD31FF27F8277D7D537D7D7D537D7D7D537D7D7D537D7D7D537D7D7DF8 %27527D537D7D7D537D7D7D537D7D7D537D7D7D53FD047D52F827FD047D53 %7D7D7D537D7D7D537D7D7D53FD057D27F827FD32FF7DF8F8527D7D527D52 %7D527D527D527D527D527D527D527D05F8277D527D527D527D527D527D52 %7D527D527D527D527D527D5227F852527D527D527D527D527D527D527D52 %7D527D527D27F8F87DFD33FF52F8F87D7D7D527D537D527D537D527D537D %527D537D52F8F87D527D537D527D537D527D537D527D537D527D537D527D %537D27F8F87D527D537D527D537D527D537D527D537D527D52F8F852FD35 %FFF8F8F87D527D527D527D527D527D527D527D527D52F8F852527D527D52 %7D527D527D527D527D527D527D527D527D527D527DF8F8277D527D527D52 %7D527D527D527D527D527D5227F8F8A8FD35FFA8F8F8277D527D537D527D %537D527D7D7D527D7D27F8277D7D527D537D527D537D527D537D527D537D %527D537D527D537D7D52F8F8527D7D7D537D7D7D527D527D527D537D7D52 %F8F87DFD36FF52F8F852527D527D527D527D525227FD045227F8F8277D52 %7D527D527D527D527D527D527D527D527D527D527D527D527D5227F8F827 %7D52522752527D527D527D527D527D27F8F87DFD35FF7DF8F82E527D527D %527D7D522727FD09F87D527D527D527D527D527D527D527D527D527D527D %527D527D527D527D27FD04F827F8F8F8272752527D527D527D527D27F8F8 %A8FD34FF27F8275259527D527D5227FD0BF8005253527D5252527D525252 %7D5252527D5252527D5252527D5252527D5252FD0CF8277D5252527D5252 %F8F827FD33FFA8F8F8527D527D527D5227FD0DF852527D527D527D527D52 %7D527D527D527D527D527D527D527D527D527D27FD0DF8527D527D527D52 %52F8F87DFD32FF27F8F87D5252527D5227FD0FF852527D5252527D525252 %7D5252527D5252527D5252527D5252527D27FD0FF8527D527D52525227F8 %52FD31FFA8F8F852527D527D5252FD10F8277D527D527D527D527D527D52 %7D527D527D527D527D527D527D52FD10F827527D527D527D27F8F8FD31FF %7DF8F8FD0652FD12F827FD185227FD11F8FD0752F8F87DFD30FF52F8277D %527D527D27FD12F827527D527D527D527D527D527D527D527D527D527D52 %7D5252FD13F87D527D527D5227F852FD30FF27F827FD055227FD13F8FD16 %527D27FD13F8FD05525327F827FD30FFF8F8277D5252527D27FD13F85253 %527D5252527D5252527D5252527D5252527D52525227FD13F8FD04527D52 %52F827FD2FFFA8F8F8FD065227FD13F8FD1752FD14F827FD055227F8F8FD %30FFF8F8277D5252527D27FD12F827527D527D5252527D5252527D525252 %7D5252527D52525227FD13F8FD04527D5252F827FD2FFFA8F8F8FD065227 %FD13F8FD175227FD13F827FD055227F8F8FD30FFF8F827FD04525327FD12 %F827FD1852FD13F8FD0752F827FD30FF27F827525228525252FD12F82752 %28FD07522852525228FD0752285227FD12F827525228525252F8F827FD30 %FF52F8F8FD065227FD11F8FD0A527D52525259FD0A5227FD11F827FD0652 %27F87DFD30FF7DF8F828FD055227FD10F827FD0652FD05F827F827F827F8 %F8F827FD0652FD11F8FD0752F8F87DFD31FF27F8FD06525327FD0EF82752 %535252525952FD0EF8FD0752FD0FF8FD06527D27F8F8FD32FF27F8F8FD07 %5227FD0CF827FD075227F8F8527D525227FD04527DF8F827FD065227FD0D %F8FD0852F8F852FD32FFA8F8F8277D527D5259527D5227FD09F852527D52 %7D52595253F8F852FD0AFF52F827527D527D52595252FD0AF8277D525952 %7D52595252F8F8A8FD33FF52F8F8525252535252527D5228F827F8F8F827 %27525259525252535259F8F8F8A8FD0AFFA8F8F827525252535252525327 %27F827F8F8F8275253FD0852F8F827FD34FFA8F8F827527D527D527D527D %527D527D527D527D527D527D527D527D27F8F87DFD0CFF52F8F852537D52 %7D527D527D527D527D527D527D527D527D527D527D27F8F8FD36FF7DF8F8 %2752595259525252595252527D5252525952525259527D27F8F827FD0EFF %F8F8F8FD045259525252595252527D5252525952525259527D00F8F87DFD %37FF52F8F827527D527D527D527D527D527D527D527D527D537D5205F827 %A8FD0EFFA8F8F8F8527D7D527D527D527D527D527D527D527D527D7D7D27 %F8F852FD39FF27F8F827527D527D527D527D527D527D527D527D527D27F8 %F827A8FD10FFA8F8F8F852527D527D527D527D527D527D527D527D5259F8 %F8F852FD3BFF52F8F8F8277D7D7D527D537D527D537D527D7D52F8F8F827 %A8FD12FFA8F8F8F827527D7D7D527D537D527D597D537D5952F8F8F852FD %3DFF7DFD04F827527D527D597D527D52592727F8F8F852A8FD14FFA827F8 %F8F82752527D527D537D527D52522727F8F8F87DFD3FFFA852FD05F82827 %5227522727FD04F827A8FD18FF7D27F8F8F82727FD05522727FD04F827FD %43FFA85227FD0BF8277DFD1BFFA87DFD0DF8527DFD46FFA8A85252FD0527 %527DA8FD20FFA87D2727F827F827277D7DFD7AFFA8FD2EFFFF %%EndData endstream endobj 134 0 obj <</Length 50255>>stream
+%AI12_CompressedDatax=BI 0zDk`sOWuwL guSU]wWOr[;K^}lfnԩzfW~Ab֗yV];Um[GyVB~>otQ]X^4z:|k|k"=pk==y~<֗ +r.]AAV*>ml׻CCT>q a@MJpS?z[~-N~ʮ׎Zml-6k'ܭ6u >rb<Ձ<w5ʗ]hg
+ގY!<k>7띗FM6kG]ҏ5^:G,iii :.0<^_9.Yh(2W>~x 
+d$ȋVrXa( T ESB?j&Be(aGqzW~P2`pWYTT(bʇ3O0у8 Vk̄<bGS'
+)\0O'<V $9`n%eEÙ(MU\ rb ,OTE3O
+"uFf~!vD! s<3|yK/Ce
+)!d( (˲K/LJI/CfSī*]tU!.h-/KyI,8nA|IŌa_eZ0ٲ-s܍[Lph&,
+>5*TtR3=ߏBQq dLl|nt\$d
+x"{
+ƇJ
+ _(]>"2#A`2Ra ŰK`XbTJ+@GC2XYB MNzA~ r5|MfLR
+؃X[B`9'2X"u+K9_x
+ƨ&T
+T.W$/.ϔuHŷ2E-b +tWKŗA/LMefڿkAaR^Ѓe@ʕ^)CFH]/Py=}6qc,wEgVQ ]e@eP*AAAAڛ5/5Ou.\l|`Di1'V{b~QvG, +0~z$s<(5t]m5ي ho0 \evBHG:!(B mA@ks1! aaL09 TN
+Oʓ+ZEWL'.
+PP(~e*%J~hPSSA*Ҹ̟v\檠K;2̒K\-|t릗=nBߖ+ o yf[RŶk@3jT7W?Ͽ<Fb􏒿N
+^HDU]\JYkZIk[17RHyԕ3#5 w0Řd,)ԚKjs1]5dt妬S5ک0-ee
+hE
+aC[
+*M{2̴cq](i __9ײO_F8=2=2=2=2=2=+ӷLn2}IJNn2}&7&N\<?#ߜqߧ{ʧ]ӮiW|U~ iW|U~c;]Zv]cs2ӋN\Y~#'!<<{ٝZޥBd̷˼0뾦&7_O
+1;ЫKK4U? ga <݃̂@k B4;
+'9b1W$YMG$ /}4/pf X*< , Bi`>*8Gm]oP`E) <ca9Z$ <C99u
+.%j]XV01xm0 58Cʠ\;1ؕ
+#ڽL$!>鱡ay 7k
+ t/3/( AXVk<dZĠ<@qV >͠- H0
+Rݐ{X
+
+suS)s%!LC7 17
+7 _l@a+zDhߝAvI(j"&RpŅ-L#R% S;IX\qŀ|G֫[fƝT5 T +^A"֮
+hH\"Z)M$a 3if7p4慉ʞI
+)|0r0 8B_
+
+hβȅsmvr
+|6Q"7l @!5[AL#QI=X#*G6@u|/PD:i12q]26WrP[`_9'!M@9/}}܅Q\F
+'@]>M6tq~q@!=LO1i@#<:3@ *S[w6Fk%lގD pۘTU,Qd0$ d&H ,qlaɀɽj!`5 ,T&GiS##IAG31mP8`RO[B\j@JAlLG@]^g|4',
++h`q;f6h@a]0e tZlji+R[ZfX#0 ӑ*aB Aʥ:Dku/ F,Xhmh \8=
+p@|tB@a2:VuI PGu؜Ympu0[XL
+\ 4-]:5TqΐF`#"ڥ@,AzdCn䐁M=)%ĂinN4'Rt۽3D0r(BQ#+l j +0Fu5e
+I^5zpQܡm؅8PJ9= ] [Qsb$Aң9X8JW䕰5CZl"YnSF}i L]KLO6Ѧ?(O co As694~ڮg$Js&)E~! FFE."h0 ^ٔ-ǹ UnbRF
+ʧL^eʏ0xBu  ͳPcj0b^"L=y, v!U~(8ʬ+
+`:9F$($ٶF7{6vU 98S.zv-v!fl3>Tɽ؀*]7u8G!"AS8e2\M(b,jR]m@dR2a*IAIOX m8-IڇI:=]t2A,i= KK:g8<E;dŴhO~w䪸k+<ЎP
+(t_A`Bp΀Gn\8M 
+۽RUӺCV_&o"cT&cT#zIYp:2D>$HxL2߹'qIL"I햔k{|+I"n4M+za4lʃD\m7I+_Tmt-65f;L=XFelap QW!prh_9H "ןc
+X#!vn_j"
+nXSLB;k`Nt=i͂c9ԅv-CzM7au4ABkJgIV6(I0kQq>這Fzl;.&.[BO<?F@]bڮ{vP :CcqvW-鬘֗.jp S\@廁QN +2`ثf.#/]V}j!P:Ni$pa1{E+G˝پ
+2aKXbN*@S"!ZܱNe,XcAZ"]H}5&2Nm=09PJ:7\L_Kf6&&$" 1S䜰p7
+()lu 3
+Eb ⳭxnFtp<>a
+^mp>%SwKJxޝGI9Uop붤OQ)G 5'Oj }ɜ6x[i%Nbs{
+f'@h2w6WG9(X|N
+tքyętb([mqڢ1}e#v |E`=Y|iu0ײ/#w%e"\ }]Θ<3ň5 02A`:;:
+ ]rvj:T1=EEH tmHN/e|J{S MFySrhDO ,݉У,E(.k@I1^lLe~7r!PQ3Z4X|^]B(5Q<D\̋O vJG0`
+ا0A;nsw]zǔ2x'dGhz{( =k]EI!  \mQ hdܑLXp*:"sLR?6HQ{hVFA0kwj2rG)0ct`m<=܋N-L{|Cz+9
+(j )Vvޘ ؗ<qNܻ#C#A_WUZ/hJ4ec~fF?.jbvy8 6[o\ˌKVo3rө}~hEo[̓N?/7{vE[% 7cfi{.Uz]TQDk_48n"Z}O cVtsW21,U%?H^[v<_' k
+"o{ 7dKӳvK l&\v__ΎZFkXK#OO}YS;tيųDi,~Tf?7zd'?H&?]|㟛I?#7PX-4ώk~( {LO^obE)Bk\fL+; mni7RTQti7M4ݛ{tFqt/]4K}RwZǸRbgHxOiNY[wPi pd|W&PL¨LoKcF⭃I~笾o:ksnzk6JՙT TwK2md&%nYJĕ\c~_1esXۯךh!sn[E,[^mr*SIdLpubmڐailw}lRD!- }IOzk".Яj VqӺYN=uz/e IN.m"=D%gZ GTo( +zccOR}Ѹnү&X>_)kV=Qi#Z=QK,e|F(bKs\;h07eh9;n7G_袮⧫t ]1>h4k)+kt$oQS;h'zMjcu>f-e25fi1ezR_&UČpXӵ,
+?qKRZQzPuzZ^kK;տ?~rהk8t-ϥaTntϚi[7]͆_
+ ĝ?iSѦu>]26TwЈ.Z:)ZzsެO^NeD m[~T9J;Rz FGt$锈H\?=JW~]ך.w4]2&M,]ّSE5x%{#ZqZKgaٜUKW~j[׾^.5 40&tQd>_6__ҵ4z⃴7$vp5LFv8*bIm}0)iF^KWxLТO7$*Y!h膞d&~M 1?M{2E͖Rc\#[J׺)]m
+F/hOׂLaR,i SEɴkO~ݴfX ]u
+æ1]Ŧj0f$~=&mrvaXOa0vem $z]ך2#~4]ai;͈ӕ^<Laҵ.k.4:hƯBڶUHHߋcY~)#zo3L] Ḛn7N~ I_JJW p·i]]'1eĻ5S6hWh*U$#S6hEwڗE-]O5h\i6gS{vsY‘سt1ڳw|0KrwŝڤFmT F&]ܹjkIS?m_Z雴~@9MZW e} zY
+=b`CyѡR$o+(;g}R;ӺӴ[ԝlԝlJuiVxZw֝RAٴ4;4qۼ[~z;-Mh籥k2 iQyoN .RF㩼j&]hPF<5UD:Q{Vg'3"F۪5.s_7"4oR:}w9t+̻ƻ3ҵxwglE)#|gT3ufznީN~W|T:/ΩKOsԽFsjT'7魫H6T]Iyښ Ado8:!-K!i%iz7)69⪤}+F&;ǵ7ܬsMSij6azHf)%L!HRF45flM}vͥ4AYq0H2)ԯ.2]ԌxIk(g$pBQ#]8ӢF/~=mޏtiNLOa3lpzA o:2}uG?c~jzS_I?}O|ѕ3ىsةj͍v#eA+_'U 1Ha ebS>)Lm9Dwnqblߤo`K0Ւ+S}vryJ*L߻26JAwb;QWK۩iuZjBKvtiq#c~t<Bi[WRֈzkFҵzkRFww֤뫉K^3M /F)߄NE4Kf|ӌo񥇤iƗ>::RM_F̉aJ"ZxEҟ /R~M"jF,͊?l/oESG8uo=D13_yY?y5Ymz?mQKܯSFiVk|SVtl{WУ>!)5-yM_Mf 3Kqoe| Q&L*Lש>ԕ4~tO;~m"]6fAI.M|:>NנuL׉Ճ
+-sHFhRc.up/U1^Z8׏~ĪYUǦKIGO华$FMr7i%k
+ {δxދu)BEfXbĭEWXξl=ctL/U"Oz||?FmY~jҿѯ
+ *UPVj$D%\rqżx]G2ءF:+[|6&r}%mϧvqZ 4([ZѻO>M$k {͖&#/ok0ficűC0LQAтc M>|%Y~SI3/zGg{9A yeb]ʆ L|4e+8>A#~!awgMgѬ%0q['jSk.uX[f1='. ~XDgGZ9R6zZ"(QjnJ1]?=GvHI_vطf =\@A@V:uH0&Q䈣ѥ5B~0 TQ\ f*<<=f^ի񾊀B.
+~Ka|G<GC!mܪ4}W:"?Bd8UߋB-<d!-Y
+a 0AO}@RC@#>Gf LA%th\RKYhAaSҬmQS<$@դ
+].iR"L)p?Ը 4 a4ĩjUұQƺ<ҜWC#hs\XbuЈjBF2\ˌ{iӫb9 YRūP}rBFhFig!<'_k}GhJ/`_ h`ݎ)pPDvnZ}WS1V!AbFXc F(akTۚZy\[]LŽ .5ZZbAC<i#b131"ކ!%;Ο&4dӼ|:np]ٹl&[8o mC].~Ww|݅M~)1XO[EVRxɄU@GW=򻶑6?4`><!v~D\p~[%C['݅;ιKz^v 6&iW;_\0/Nw{vzO9b{./~toP%ㅝ=Osaw{ Na2y ݴ4ܛDS
+v ͐x~XbTe 60nDžHߔ+؂4+˄L{OfcpRI] TR2LͪtQd)RFkX-c+m$}\NP0wSB?k >\6;#ݟz1q %T}k6^F0ky]9~46V;2Nw7:7K'?*y0KaGjױXy(qݬ5KN}la/8Z+5Oh@'?W!21V˓d('p'vCtLwVjX
+^9rd0e*l _j;ٮ7_Mt?e4qmқ!άviv7ncؔݳfm B?U?i߬w ʹ)houzK=O/[9hjCCwtQE;[ٹhqsם1 C=,J{N…w3:Yklv/esv64a)wzZsd< P?iNp)^vn/npHm,yTsKzh^:n4t4 0w }1o$ބ7eQ8Ѿ&o]vbD-]&a'twػpH.5F,k_&Od _yyVYxx_zΑKv.kgoַZe0g!:l7qlr] 6dl:0;$/πZ/IO~ P=l\2`8ospێdu ޣ#T̗5\? O51$Cɨ61ao:fUvyQ;h~@vG #?Ga<r~ [vn|8gݩu![RR՚57M猢z F٢E #k >i&B+rA6zIFz<o0v%X8$?l;8;Qyz?\.PRsDZTΒa ,ٰC44G =,P9C5/aRKs2 Λ ϝ6z埞j/,Hy<{NROS]zNUfaW
+~>z!y%AjӽI÷pH[9ŝ:餤*le8^ki5k;1['Y+,WW@lŎBkU; %yN~B5?SS5s$q`I)3,M[T}πEp5 k~G^4֙_<KĢ'j٤܎=RN
+;Z] r7Q:g$K&&^|e-qvنe~o5(^`x]tDj/h.V
+zͼ=d4Ty6&{x8XzV{b,Fn~f뀪o'b*jՅiKIYF}r3vGD"yʲnґ \:vod~txAHg*A$=vڽQrA\YXvv[q(1>;q&&ʞ`}~3Q_qm{g M<=0!G<ܳ^_rǥщ;JoZP}g3>ڪk,r xdS{/O IPԚMeZ<<yu /tNZ0vdq~dIg#U[1ܾ
+#.|f ^/5>.vn>73~n^y#w7%Jnq]ny L1wWObn0nA=g{rRr\vrui܃}|] ѳWrOZ\rnv7WU>?=;{[<=_rk㻋ysKܫܛJ)߼ rlB9;<x;nzyiϹf~%y\{:[gfϊ37/g{3Kݹfڃfff 3<]cILs1a9nٚy{bx33;ݙSxU6x Ng>̜mjvfskv^<>]l콞]QOg}6la=8}gOw듇[/>=\};x{Ct63[X~~s:=mmg[3oݾW:u-Od[n[Oya[Wn_~uvݭǷNoVs7ksw֜1h̭y<N2vfc|&o9?=̃['Bfn~Ez>5b7_b.ͷʯ׷绯n/՗>o?mq{usGon,?^}޽}{w1ؿۏћ ?Ju /Z; -4Z,.KwG?v+ŭg׋s^S?7Cyg;COɝVΟڝ;ܼsNч,l}tfn/ƽr7Oanof;[؝-cՍ{,ݫt{{o?l{ʽӽK3'KKs.
+Kϯ7K{K'kS_-οZV|Y<R=>. [9{=5:*ksՅ̜o,.w՚lKmt(0]]i祏oٛ;An>Wb/^[Az?b˽]`^<{{wFs'oouEʻ'wz2zȕRiN\\KG|N)>VSU-.;jTBAoWIpi [7_<}z>/EG6'',b[QqYg-{4y~u&6˙7Di\}agj?YǓҧ[|>_-=|t`Fx[=ѽG{m<hg󏗖J'mt><<[z\+?բ'˛+O
+dga.䬐kׇۣOk|*FOϼNcqexٿ+7R=*zJ{+ʷFl3/x}\(SYԨ;sJןQu~򲺷/>\KǕ xʇw;Oyiysq;ͣ{/?Z-,.~Z}n)Z<[쳍gw8UwsH#Byp3sk; w֎_^?jK/^6x*6^ٍ?ޗ7|7ӿrr{?y﹞$
+_`
+ 2&'c 8޳\ne! |9ꮮ]]㮥V:nqL8tK^ۧs<7^\5ןfyo֢n{v_,ϙ{#U4cӗ`;A܏/3l{v%oL툽L-5}=Z_Tܝޣ{]9ں>ǠK~:}g6y쭒_/ߍ{ײ9 ]~4ړ{~w2鿍@y]Ǯߵ{k=UktZ{z/Zo=ؒ];`<?z /aB{f8ƞFti=GQ)ظLK/b2M7IԟC_/6>O91ӗ\:4xp~6OS|ަ
+/vs'-+%u9%+xjj6WLu;\3nRM*nQsH+{ d5pA:ۓth_w6ABCI
+]
+>| {7LjS? s`8I׷2ϥ<cmiOmP!O݇md `!m7!XJ=mj{GMTj*O^MFvHs>
+0o?s#:ڭ\rd95k>ݤhte o߷{D,ش=gM27j
+y2w1%)rOeFk(2i@+,7;`hۇhhfԤ+y |Љߢl}ʖUq}·W j'~N7fkrZYЧ$8 -qdogIM%~fPLJ eXP鸷
+zsOT}GM Qs 'ʠF" ':~MPojK0fu
+Q00 $Rؐ&a܊dαT\ d,%uD(dSLD,6 <*+%`.}0sTc9)a? b_YSe lWQYv,J#+'GB3jFTJ5&h&+U E\wjRZQ"TbBk`K5JjItfQTxh<  p0|ğX # 1/_{"4nPݢ"ɩV;@&-^욮TʼV9!
+^p2r XT[⚑pX2L?燦7W izj`?@> 7vLB^(]X2aixN7vy];ogTĶ❊'|u1!2€0H%F(~J>+O ,}wu=ۦpÙ~U&j'>}As@; `.7oI:4u iB&9 ҏk';e$Cu+Gۘ}9`7yK$s?^-N'P{gV?I&\$EAHi
+TYS-&
+cyw=7zvANrsgW TjP7e=VG8ԯV2Z
+Қ?peK/s}yC^V9PSu'Y_>A]fzӾ6lEZڙ)0/@
+-3ziiDQ+Z?gm+;rB4KV%7S1=a^Le= ̳uaB|z9b)<l#zns N&HScxd;iwDc|XZTu=JT JlwL6S°%kI8Oac걊 R X3*w׼ч^f&([kC,rfnd=}:JSa.qj:?Za٧kO`^$ ~ B'6+R&njNhpo#K/L1cM[p,#N+W-S"A.?x391~3c+[Eáqм@Pti6MAo}ݛ#"BvL\–0Ay֓T>&0\'X4S3> 6;IoSт2oCVNGe`3(^pTnga$؝5=XʗshAa >N;Wr˛Yycm:o8yH.˸&[MYn*آ
+a,l LT X
+1Ci:L"O?wfM""W]xy^Xv'W(bAܨf]%h]?rf L~uǤHVp_.{D%懂UۥZ@4q0 tz
+u?,sHe&H{/gkU >ʋ>d5ըz[ȓ#G!~'gt2V\;ȟY zBԗ+_gAZPܳ
+)bׁ9_
+f&Bʡaކ%`i:f]l7<OGƟBv(V.ßyk3h`=taɦ_)XP"
+B<},ty;/$HH%
+ǧo6UT쾼}L?͖k)W{/\M~5( \vđ xkۨݸMD*t'
+Po`/mdgjlQ}C҉ڏq'V`fMF \#lŭQ]Vs %a[U+xH4[q_eIDW+b&+I
+ Ey~reӏw. nՓd;U[ÏXlYN3#`3Ϗ,5Ol1we8{sZHw,h+XVLw+}a1m37tЋʱp\X/:M&-ąT9)
+' JFD-_#wU
+E]u烫@w=<*o *"!
+{߰_3WNp$6U/IiHo]<l#r(>IoQ4rsl710%FpfKnYMjVЧxb)^Cy5Yk2UƮQ;O}p8XFvK-ҟ[1ޥ.l4;} dcy/Jvk?;}l>^=;}wXtxt7Pm(=d@ tyMv>@ H1\@t~:{Ѭ..٠F˟B`rl)EC} b_
+Mel-7j4jNfE’-vgF@rel8R-⥽6|#2qkmeVK^wܨ%z8ͦNb<y#x(մ"n0!BRS뢴d7ﮔ8׻ɎWyF~6QMjs]i#SCS |ruWlC-l7 L*yhzm [bm֝ m7>6q:@AMV\Zn}d g`؄*^-wz%E -Dh*S]ʬ{0N~(Zm|L=6@KmmxxDDi G Wr#~.)T%#4 Z<6ZDB;Q TJ3>JjA[KGB܎n5_ڨQ3
+K\$bEOeY·&6) 撺^dI)]z t""\$[((i\yP9I2"# 
+
+BGKQÂD _P"PCoTP}jˉayЇ";{+b._!fΝ  15CqK' SUrLɨ7J>GQF9> PO-k1Z% ,<QFVJ^wW3rau}:b7uMWYӌx_Pq0p2.c
+8hjӝ,о
+ ?]
+w/:4]n|= coԃ̎OHHoύ8Ђ5ײo(t=j5^4Nقe9%ˢB%{B,=_QֺXuKI3:N~1v$ɀh\t OHd;} h
+QZxQ>1FdyJts#R36;R۟L6;9g<W#ٽ6̞KS?r`AsYl=t.7 >~'L3KoRg56d*6._}{%|'rVH'+ZpXhkݝ
+OVZ:Znjt򀕪DCZHyg%"9E|M .*XIU'-%J;bcIi=LRwlMHa^}O=# ZD!B<".OsQ F
+ce,>K=/HD>tZɦ$吶o iA=NTC^!u)lp<u [xj e,B#]_Z^GS'UDz7lЄR$^q^u{}W>|;H_Mqlc(/w:*m{. uʵRKx #z{SGzw/U_2FX[AAgμH~WHV ,m]hxckH[D~2" ?xͩ//1@]+;pH{Shծ #IGI>*튦R
+"_iq&ClaUVF[H-" h#Eֿ&R c>=U&RlSHڗE6ES6&™}̍k hXv1w?Ӝ<Xߎ9Γ$@,7pi+?D=1hr:I\9+HFJ_܋d#̴(8ɼ_r #lK .b)O 20g<I-f.f(4!,Ep+\L \7Ƞݻxv;'%# (DܠD%h?!_^ZS.uv`{e%$q4E8>swy֙Wݬ9>M!95ϟE1"YXo, K4A;O$JY*~O*y8bSHE&mbEPrCk17R
+]=kuykǓ8ڑ uڵfM*q<NuhӇ&bxpKw7njGrnŨZL2awIR0;νIh+,C);oso9iȮ^}`g;sqPGi(Lw.pu Fם]ٽ~Υ<-٤8` tŤCހ R7B$cU{,ZLݳ
+;wNɠx
+3*zɦ ،bcf>vjd;e~&ӭ'?(
++1K?u&/_װ8ffpa5,Nbm.b9`~4LPNk;1 Rj]L)&h'k%|6.=:@JjΠA|DI lUUy[[Os؃,-H䉟NQC-In|4nBAuVStî:-ϣɑe/#5TO ?NMI!#l$mTF<?FP,A *>4HY0NL h}lj٨
+1t
+m]Ad9Sx c%rSiXL^iJh9lFTSҧЎpl1_oCvGH|>oDN;Q hNdp:\#
+<k*dܑ<7ܞ8 BI
+/Os}`Ӕ|Ў Cnqf1?aç&eh@ `=> #t"eZL)ѶSDNx$j$ I/hϢDS,x%dp ;_ &N^
+"9-jwQaZAc|3ע?4d7ISa/nZ6r/X y 2Wd32"wlzX1-Uh#'ܷ{Y}{ ^`Ύ"L}V=4{ƎUQXJ<f<3'XdA+4$}S =1hu*=G>E0(#g4/9 ؟enĝ̔SxX/4Q%Y~[+?TRW2f|,a?- 4
+ka8upA qb%l4N<׮P,Bh%PL>D.]
+T8yTr'I pT8 N=>f?kRQ ?Y/iyVȍr{,;=@ E 0Na.>usA2w;/r5'b9ܬ̫ԼG訊z/Q.q|g/N2 k]h&kg_hކZlx=IKLl4V:]"N\,3%q9Jygz&e/y[x/ >K.[ܼʰ ~MD˰=NZHu Re.VԽDnqULHv%>Ry=\+ÎXS+C/lal65Tҡ~=6GQh!3‚F?q|5.֎*Z> 5:!{I~TzcGn{EGTYMjʨv.It:upsʎܩb WI(G#ِN+"{8?)"9>oNJZ~Έ. _/šv!"F Gzɦ;/sj6l:\MT˳r|ΦSū$NFnͪ?vQ6#7MwF>1NmFЕMK'&N-ٞb|˦S]l:5Fzvor4n Kctn6qju60N hMᳲl˿ͦ3NK{MwNΦͱl:ΦS
+<Z=W3?,N4偡%FSs;z4:<F %9l:a}p~!`9vx!2DПU2]9f{]PTG΃> 3|
+;ѭ˾?||+UԹ}p vU"9df
+e %jՀP&6
+I!cc[#L4IT#zzg][('uzIfp!*‹|Rj7Txbsw8pK
+c.hͱE&R{Ѫ
+\"kAJTn:"!55dix]ewRb <2#hew5[$KT"}ҫ#x4.NvZ+z>qI{W/}vtl'ͯ$]Ѵr$Pf +ϬNXPtMQN$bv Ħ픤ãU]BݩԦMۿ̂G*$ViNAe@8^֝ Ҏdd2OMS'DQU5tpJK^ SZ&^ħu 9-?gc*t75Ss%
+>YY]:W9EWd(d,|QHQc(3o\^dS
+(a}DQ>YPKI
+Sf8K ֮wP`]?CwC]\O2?Jiέ_כּTG=3Pg;QOd߱L?
+V3N
+j"vqv]?YGQDNSO5QVs1)zuo/맫XA]?I7PwuUOAQO-MR\zCAq맿b2 weFuTLMIU?iu₺~eHȫ:9={~UNkIFEu-5^Tsuv]?}b 鬵z|.}()'gEu(l~:yGOOoɣ9I</ˀ9$[7O_ONmxn=ih#T$c782#~AU?6c~B^]ы9<vr]?~0g?_z|ge*a]%U$X.wJVӺԺ~ǻZ~1̋pS' ~RwAE]?]T
+WrxN{f!J?iza̟ S`8V\?և
+}wۘb;4}4qs\8#k^7Ym9u,֝ڶI-íJ;mQ.;cG`9rkv&N;NSD!s!
+~(27Owıن_[Kmit'W]\iosE,ln ޫH__!Z(II+VԈݠyfͱFG>Y^ޛIb/Pe60P&iO5=:v9tٴ
+eK߉z1R%NPL1රY
+p?.lHz6N&d;/ySmi;PZ=dk_zeCU,eDTNkI;Ɲ|~Ie_!T vV: 8$J,}d`ĤۡO")r:"J}RP>ĥ6ROH]b)ۧkmv(We{mTE1EFE=_4-rvQoQrh[d3zz\ LѨh_4-lFErh[Uyh[7/ʽEto0"j;Od]pbRvt+N|5 _C,F[.Xs /Paɽpa-gPgm@|*˞!A"̯"*,AyDmLgXrJ굏E)7{T-N),VS ŒOp ?gf3Y\yL1?]&`Y r~>\쮢Wt#[.a9^ wH=K dȍ"iFD+)B^.%PdCA6$̞o}-0ø7,0e 7}}_}U.g:^U)E&?2T#t׾43H"'Bf3b =BX 
+zre' A֖X=0O]jlxzÿ l3weCk%75@(b2,˄DqS|!A2ᖼZ E "2Ϸ_b?i"b%>b.f=P{[X! S.@W O6\DR) j#LmяDu}i[bV+ `Mga._N†86"EV=l"(謄p aVS<% :g ^n@zW^G,={sl{#^O$zm*)S0W.ژ>7' ыO+7?j֣$כ逖hi7 Yt&Lcös3,l K!dyea<IKc] d$i@8 &{)X{}_EC<bڦ.7Ɲw4.vGoT Y;W x/dK[xu_Gx-DOWRJ:[1jϳ&>$zbas&2#8ŪA:0
+swDawy 6m ~jY3{ķM b߫qę7Sxs58(VM
+",(ADHrg"+ts mPl,qrOklz
+=QYbs\PZÞa8-;qMk>): 0E= [ֻNYL ٖo셼a`6\Pj;̾v?tg
+_d3ϟ;{ů[
+5v2ßɢg1WG_"`ѣjMΫdӛ]nM柫(zv_}.箢Wl]93DZ+'
+v+f7UV2NzUsym4wLUƔӣ1(!H&k|_xq5@LA" " Pd8|57𥊾*6T|4zN!~v|fԕe¯,U g5d~Wו1o?uw0TxW'_𩘹gbk/!_$0Wa ,u}"#þ
+:AVqG/_¥C`D
+Ol^
+`M| "$h_8
+`/P)GҀLx7$ G`Tb+N%KBD|@'Jx ,LS@G@!F
+G!/
+& #P "p #QU,)A(h6Ba 9 U"DX
+ S5BX @h0мCI$&|@$t~$<~f+
+4D J!h^AR$p8z@%=ğ Bt px8&DO(4 O`rm.
+&JAkg3+`]M(bѝW?`NIфTo/o%7`|A]IVwIXFos4 A U|E#&CW^X
+>
+R0gx̀ SXo'dug2u* r{Pqr0ߓU t I; 5kǰ!8B2V (MS0΁LH
+0Cgd
+][% mS/[zAB/p! O`,L%hJm1G!MF (|>oWG;;׮CJtܺ\mw¯g4A^fzQ!~` VGz76l
+NWBēd%xCx!;pSt*JTR<GVdgcNŎi-^ ZD!&BCd$睝^$/9bV1_Tjј^9e{Ϊfڭsީ ?!jc췞gr(X+__ZRHH/γDkls
+IdS`0I hAL`P|5"
+dɪwX@Bz' ^v'Yfg@QAOz#ɰ`LY 
+}Y ~=F#,%f;ZD?
+T3ӌYW~/f ~|ػ﫬v]4 "#VvR
+fmycלﶨN'Nm{aBieΐGݣ@7y&MLcgַ <"I6=ߋ2+#Hg 7w=v etyL :m;`e6bf>3 ;
+H@ 3k\;Zj'܎/oa&f<>wuRY+ ^Hx}Z)hWCZiy<0rT5,~LzF{=hZ׎H7ؐ9N+'/DB1uB('2*Ռʘ7xc
+ΣqCpAkQHw>SsX6#%bP+۔fjФ71 2e#KB赹Q`9",̅.(AU|$׆
+
+_!" 7/H4̾؊jMV!ӉuϡUǒ%򭛾
+e띢 $
+ĵd0i\0ђӐ0AP<r‰c) xtnqa}``0Rb'5C2؟r
+\Z)D#&%@)Nv.ozBwEnS2Rwe4A)nhC% _;Hֹ
+]:<-X8V'*^2Uke)Ezㅡט{ٶx8Ɵ GXUS54o{z~,Zj`ɗL+@T9_nʗ endstream endobj 91 0 obj [/ICCBased 96 0 R] endobj 5 0 obj <</Intent 36 0 R/Name(Layer 4)/Type/OCG/Usage 37 0 R>> endobj 6 0 obj <</Intent 38 0 R/Name(Layer 2)/Type/OCG/Usage 39 0 R>> endobj 7 0 obj <</Intent 40 0 R/Name(Layer 1)/Type/OCG/Usage 41 0 R>> endobj 8 0 obj <</Intent 42 0 R/Name(Layer 2 copy)/Type/OCG/Usage 43 0 R>> endobj 42 0 obj [/View/Design] endobj 43 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 15.0)/Subtype/Artwork>>>> endobj 40 0 obj [/View/Design] endobj 41 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 15.0)/Subtype/Artwork>>>> endobj 38 0 obj [/View/Design] endobj 39 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 15.0)/Subtype/Artwork>>>> endobj 36 0 obj [/View/Design] endobj 37 0 obj <</CreatorInfo<</Creator(Adobe Illustrator 15.0)/Subtype/Artwork>>>> endobj 75 0 obj [74 0 R 73 0 R 72 0 R 71 0 R] endobj 135 0 obj <</CreationDate(D:20110730181432+01'00')/Creator(Adobe Illustrator CS5)/ModDate(D:20180110093856+01'00')/Producer(Adobe PDF library 9.90)/Title(tikzit)>> endobj xref 0 136 0000000004 65535 f
+0000000016 00000 n
+0000000242 00000 n
+0000042777 00000 n
+0000000000 00000 f
+0000134069 00000 n
+0000134139 00000 n
+0000134209 00000 n
+0000134279 00000 n
+0000000000 00000 f
+0000042829 00000 n
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000134702 00000 n
+0000134733 00000 n
+0000134586 00000 n
+0000134617 00000 n
+0000134470 00000 n
+0000134501 00000 n
+0000134354 00000 n
+0000134385 00000 n
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000000000 00000 f
+0000051735 00000 n
+0000051808 00000 n
+0000051881 00000 n
+0000051954 00000 n
+0000134818 00000 n
+0000043361 00000 n
+0000045264 00000 n
+0000067864 00000 n
+0000047535 00000 n
+0000052504 00000 n
+0000047422 00000 n
+0000052620 00000 n
+0000052733 00000 n
+0000050281 00000 n
+0000050424 00000 n
+0000050615 00000 n
+0000050807 00000 n
+0000046632 00000 n
+0000046900 00000 n
+0000045326 00000 n
+0000134034 00000 n
+0000046071 00000 n
+0000046119 00000 n
+0000050218 00000 n
+0000047359 00000 n
+0000047570 00000 n
+0000051390 00000 n
+0000051000 00000 n
+0000051509 00000 n
+0000051614 00000 n
+0000052386 00000 n
+0000052418 00000 n
+0000052268 00000 n
+0000052300 00000 n
+0000052150 00000 n
+0000052182 00000 n
+0000052032 00000 n
+0000052064 00000 n
+0000056072 00000 n
+0000052859 00000 n
+0000052925 00000 n
+0000052948 00000 n
+0000053249 00000 n
+0000053327 00000 n
+0000055354 00000 n
+0000055428 00000 n
+0000056036 00000 n
+0000055573 00000 n
+0000055718 00000 n
+0000055809 00000 n
+0000055915 00000 n
+0000056138 00000 n
+0000056161 00000 n
+0000056448 00000 n
+0000056526 00000 n
+0000056781 00000 n
+0000067740 00000 n
+0000056855 00000 n
+0000057304 00000 n
+0000057368 00000 n
+0000067939 00000 n
+0000068117 00000 n
+0000069113 00000 n
+0000083726 00000 n
+0000134864 00000 n
+trailer <</Size 136/Root 1 0 R/Info 135 0 R/ID[<E4526AFBC273421D80EC20D6110FDA86><779150255FD24E0494C6DDB168101D01>]>> startxref 135035 %%EOF \ No newline at end of file
diff --git a/images/tikzit48x48.png b/images/tikzit48x48.png
index 056d04b..802d504 100644
--- a/images/tikzit48x48.png
+++ b/images/tikzit48x48.png
Binary files differ
diff --git a/images/tikzit512x512.png b/images/tikzit512x512.png
new file mode 100644
index 0000000..89b17ec
--- /dev/null
+++ b/images/tikzit512x512.png
Binary files differ
diff --git a/src/gui/tikzscene.cpp b/src/gui/tikzscene.cpp
index 3431c0c..edc1af4 100644
--- a/src/gui/tikzscene.cpp
+++ b/src/gui/tikzscene.cpp
@@ -124,6 +124,11 @@ void TikzScene::mousePressEvent(QGraphicsSceneMouseEvent *event)
case ToolPalette::VERTEX:
break;
case ToolPalette::EDGE:
+ {
+ QLineF line(mousePos,mousePos);
+ _drawEdgeItem->setLine(line);
+ _drawEdgeItem->setVisible(true);
+ }
break;
case ToolPalette::CROP:
break;
@@ -226,6 +231,11 @@ void TikzScene::mouseMoveEvent(QGraphicsSceneMouseEvent *event)
case ToolPalette::VERTEX:
break;
case ToolPalette::EDGE:
+ if (_drawEdgeItem->isVisible()) {
+ QPointF p1 = _drawEdgeItem->line().p1();
+ QLineF line(p1, mousePos);
+ _drawEdgeItem->setLine(line);
+ }
break;
case ToolPalette::CROP:
break;
@@ -293,6 +303,7 @@ void TikzScene::mouseReleaseEvent(QGraphicsSceneMouseEvent *event)
}
break;
case ToolPalette::EDGE:
+ _drawEdgeItem->setVisible(false);
break;
case ToolPalette::CROP:
break;