diff options
| author | Markus Engel <markus.engel@tum.de> | 2013-09-19 17:32:15 +0000 |
|---|---|---|
| committer | Markus Engel <markus.engel@tum.de> | 2013-09-19 17:32:15 +0000 |
| commit | 658a60b2ffdb7ed361b3c3b57d62efd419f7ba47 (patch) | |
| tree | 7f0f76347c27e59a784b4a3af990af7b247c5b41 | |
| parent | Added gpl notice (diff) | |
| parent | Do not require a new layer for clipping paths in the Cairo renderer. (diff) | |
| download | inkscape-658a60b2ffdb7ed361b3c3b57d62efd419f7ba47.tar.gz inkscape-658a60b2ffdb7ed361b3c3b57d62efd419f7ba47.zip | |
Merged from trunk (r12544).
(bzr r11608.1.126)
78 files changed, 32355 insertions, 9071 deletions
diff --git a/CMakeLists.txt b/CMakeLists.txt index 86d7060c1..34bbb9a82 100644 --- a/CMakeLists.txt +++ b/CMakeLists.txt @@ -123,7 +123,7 @@ if(UNIX) install( DIRECTORY ${CMAKE_SOURCE_DIR}/share/attributes - ${CMAKE_SOURCE_DIR}/share/clipart + ${CMAKE_SOURCE_DIR}/share/branding ${CMAKE_SOURCE_DIR}/share/examples ${CMAKE_SOURCE_DIR}/share/extensions ${CMAKE_SOURCE_DIR}/share/filters @@ -1,217 +1,269 @@ -# Doxyfile 1.5.7 +# Doxyfile 1.8.3.1 # This file describes the settings to be used by the documentation system -# doxygen (www.doxygen.org) for a project +# doxygen (www.doxygen.org) for a project. # -# All text after a hash (#) is considered a comment and will be ignored +# All text after a 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 (" ") +# 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 +# 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 # http://www.gnu.org/software/libiconv for the list of possible encodings. DOXYFILE_ENCODING = UTF-8 -# The PROJECT_NAME tag is a single word (or a sequence of words surrounded -# by quotes) that should identify the project. +# The PROJECT_NAME tag is a single word (or sequence of words) that should +# identify the project. Note that if you do not use Doxywizard you need +# to put quotes around the project name if it contains spaces. PROJECT_NAME = inkscape -# The PROJECT_NUMBER tag can be used to enter a project or revision number. -# This could be handy for archiving the generated documentation or +# 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 = +PROJECT_NUMBER = -# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) -# base path where the generated documentation will be put. -# If a relative path is entered, it will be relative to the location +# 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 = Vector Graphics Editor + +# With the PROJECT_LOGO tag one can specify an logo or 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 = inkscape.png + +# The OUTPUT_DIRECTORY tag is used to specify the (relative or absolute) +# base path where the generated documentation will be put. +# 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 = doxygen -# 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 +# 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 cause performance problems for the file system. CREATE_SUBDIRS = 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. -# The default language is English, other supported languages are: -# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, -# Croatian, Czech, Danish, Dutch, Farsi, Finnish, French, German, Greek, -# Hungarian, Italian, Japanese, Japanese-en (Japanese with English messages), -# Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, Polish, -# Portuguese, Romanian, Russian, Serbian, Serbian-Cyrilic, Slovak, Slovene, -# Spanish, Swedish, and Ukrainian. +# 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. +# The default language is English, other supported languages are: +# Afrikaans, Arabic, Brazilian, Catalan, Chinese, Chinese-Traditional, +# Croatian, Czech, Danish, Dutch, Esperanto, Farsi, Finnish, French, German, +# Greek, Hungarian, Italian, Japanese, Japanese-en (Japanese with English +# messages), Korean, Korean-en, Lithuanian, Norwegian, Macedonian, Persian, +# Polish, Portuguese, Romanian, Russian, Serbian, Serbian-Cyrillic, Slovak, +# Slovene, Spanish, Swedish, Ukrainian, and Vietnamese. OUTPUT_LANGUAGE = English -# If the BRIEF_MEMBER_DESC tag is set to YES (the default) Doxygen will -# include brief member descriptions after the members that are listed in -# the file and class documentation (similar to JavaDoc). +# If the BRIEF_MEMBER_DESC tag is set to YES (the default) 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. BRIEF_MEMBER_DESC = YES -# If the REPEAT_BRIEF tag is set to YES (the default) 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 +# If the REPEAT_BRIEF tag is set to YES (the default) 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. 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" +# 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" "the" -ABBREVIATE_BRIEF = +ABBREVIATE_BRIEF = -# 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 +# 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. 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 +# 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. INLINE_INHERITED_MEMB = NO -# If the FULL_PATH_NAMES tag is set to YES then Doxygen will prepend the full -# path before files name in the file list and in the header files. If set +# If the FULL_PATH_NAMES tag is set to YES then 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. FULL_PATH_NAMES = YES -# If the FULL_PATH_NAMES tag is set to YES then 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. - -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 include paths that +# If the FULL_PATH_NAMES tag is set to YES then 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 specify absolute paths here, but also +# relative paths, which will be relative from the directory where doxygen is +# started. + +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 include paths that # are normally passed to the compiler using the -I flag. -STRIP_FROM_INC_PATH = +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 +# If the SHORT_NAMES tag is set to YES, doxygen will generate much shorter +# (but less readable) file names. This can be useful if your file system # doesn't support long names like on DOS, Mac, or CD-ROM. 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 -# comments will behave just like regular Qt-style comments +# 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 +# comments will behave just like regular Qt-style comments # (thus requiring an explicit @brief command for a brief description.) JAVADOC_AUTOBRIEF = YES -# 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 comments -# will behave just like regular Qt-style comments (thus requiring +# 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 comments +# will behave just like regular Qt-style comments (thus requiring # an explicit \brief command for a brief description.) 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 behaviour. -# The new default is to treat a multi-line C++ comment block as a detailed +# 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 behaviour. +# 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 behaviour instead. MULTILINE_CPP_IS_BRIEF = NO -# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented -# member inherits the documentation from any documented member that it +# If the INHERIT_DOCS tag is set to YES (the default) then an undocumented +# member inherits the documentation from any documented member that it # re-implements. 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 +# 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. SEPARATE_MEMBER_PAGES = NO -# The TAB_SIZE tag can be used to set the number of spaces in a tab. +# 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. TAB_SIZE = 4 -# This tag can be used to specify a number of aliases that acts -# 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:". +# This tag can be used to specify a number of aliases that acts +# 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. -ALIASES = +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 +# 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. OPTIMIZE_OUTPUT_FOR_C = YES -# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java -# sources only. Doxygen will then generate output that is more tailored for -# Java. For instance, namespaces will be presented as packages, qualified +# Set the OPTIMIZE_OUTPUT_JAVA tag to YES if your project consists of Java +# sources only. Doxygen will then generate output that is more tailored for +# Java. For instance, namespaces will be presented as packages, qualified # scopes will look different, etc. OPTIMIZE_OUTPUT_JAVA = NO -# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran -# sources only. Doxygen will then generate output that is more tailored for +# Set the OPTIMIZE_FOR_FORTRAN tag to YES if your project consists of Fortran +# sources only. Doxygen will then generate output that is more tailored for # Fortran. 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 +# 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. OPTIMIZE_OUTPUT_VHDL = NO -# 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); v.s. -# func(std::string) {}). This also make the inheritance and collaboration +# 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, CSharp, C, C++, D, PHP, Objective-C, Python, Fortran, VHDL, C, +# C++. 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 +# that for custom extensions you also need to set FILE_PATTERNS otherwise the +# files are not read by doxygen. + +EXTENSION_MAPPING = + +# If MARKDOWN_SUPPORT is enabled (the default) 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. + +MARKDOWN_SUPPORT = YES + +# 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 by putting a % sign in front of the word or +# globally by setting AUTOLINK_SUPPORT to NO. + +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); v.s. +# func(std::string) {}). This also makes the inheritance and collaboration # diagrams that involve STL classes more complete and accurate. BUILTIN_STL_SUPPORT = YES @@ -221,69 +273,96 @@ BUILTIN_STL_SUPPORT = YES CPP_CLI_SUPPORT = NO -# Set the SIP_SUPPORT tag to YES if your project consists of sip sources only. -# Doxygen will parse them like normal C++ but will assume all classes use public +# Set the SIP_SUPPORT tag to YES if your project consists of sip 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. 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 (the default) -# 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 +# For Microsoft's IDL there are propget and propput attributes to indicate +# getter and setter methods for a property. Setting this option to YES (the +# default) will make doxygen 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. 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 +# 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. DISTRIBUTE_GROUP_DOC = NO -# Set the SUBGROUPING tag to YES (the default) 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 +# Set the SUBGROUPING tag to YES (the default) 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. SUBGROUPING = YES -# When TYPEDEF_HIDES_STRUCT 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 +# 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). + +INLINE_GROUPED_CLASSES = NO + +# When the INLINE_SIMPLE_STRUCTS tag is set to YES, structs, classes, and +# unions with only public data 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 (the default), +# structs, classes, and unions are shown on a separate page (for HTML and Man +# pages) or section (for LaTeX and RTF). + +INLINE_SIMPLE_STRUCTS = NO + +# When TYPEDEF_HIDES_STRUCT 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. TYPEDEF_HIDES_STRUCT = NO -# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to +# The SYMBOL_CACHE_SIZE determines the size of the internal cache use to # determine which symbols to keep in memory and which to flush to disk. # When the cache is full, less often used symbols will be written to disk. -# For small to medium size projects (<1000 input files) the default value is -# probably good enough. For larger projects a too small cache size can cause -# doxygen to be busy swapping symbols to and from disk most of the time -# causing a significant performance penality. -# If the system has enough physical memory increasing the cache will improve the -# performance by keeping more symbols in memory. Note that the value works on -# a logarithmic scale so increasing the size by one will rougly double the -# memory usage. The cache size is given by this formula: -# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, -# corresponding to a cache size of 2^16 = 65536 symbols +# For small to medium size projects (<1000 input files) the default value is +# probably good enough. For larger projects a too small cache size can cause +# doxygen to be busy swapping symbols to and from disk most of the time +# causing a significant performance penalty. +# If the system has enough physical memory increasing the cache will improve the +# performance by keeping more symbols in memory. Note that the value works on +# a logarithmic scale so increasing the size by one will roughly double the +# memory usage. The cache size is given by this formula: +# 2^(16+SYMBOL_CACHE_SIZE). The valid range is 0..9, the default is 0, +# corresponding to a cache size of 2^16 = 65536 symbols. SYMBOL_CACHE_SIZE = 0 +# Similar to the SYMBOL_CACHE_SIZE 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 appear 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. + +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 +# 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 and EXTRACT_STATIC tags are set to YES EXTRACT_ALL = YES @@ -293,252 +372,289 @@ EXTRACT_ALL = YES EXTRACT_PRIVATE = YES -# If the EXTRACT_STATIC tag is set to YES all static members of a file +# If the EXTRACT_PACKAGE tag is set to YES all members with package or internal +# scope will be included in the documentation. + +EXTRACT_PACKAGE = NO + +# If the EXTRACT_STATIC tag is set to YES all static members of a file # will be included in the documentation. EXTRACT_STATIC = YES -# 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 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. EXTRACT_LOCAL_CLASSES = NO -# This flag is only useful for Objective-C code. When set to YES local -# methods, which are defined in the implementation section but not in -# the interface are included in the documentation. +# This flag is only useful for Objective-C code. When 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 (the default) only methods in the interface are included. 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. +# 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 namespaces are hidden. EXTRACT_ANON_NSPACES = NO -# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all -# undocumented members of documented classes, files or namespaces. -# If set to NO (the default) these members will be included in the -# various overviews, but no documentation section is generated. +# If the HIDE_UNDOC_MEMBERS tag is set to YES, Doxygen will hide all +# undocumented members of documented classes, files or namespaces. +# If set to NO (the default) 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. 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 (the default) these classes will be included in the various +# 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 (the default) these classes will be included in the various # overviews. This option has no effect if EXTRACT_ALL is enabled. 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 (the default) these declarations will be included in the +# If the HIDE_FRIEND_COMPOUNDS tag is set to YES, Doxygen will hide all +# friend (class|struct|union) declarations. +# If set to NO (the default) these declarations will be included in the # documentation. 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 (the default) these blocks will be appended to the +# 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 (the default) these blocks will be appended to the # function's detailed documentation block. 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 (the default) then the documentation will be excluded. +# The INTERNAL_DOCS tag determines if documentation +# that is typed after a \internal command is included. If the tag is set +# to NO (the default) then the documentation will be excluded. # Set it to YES to include the internal documentation. 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 +# 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. CASE_SENSE_NAMES = YES -# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen -# will show members with their full class and namespace scopes in the +# If the HIDE_SCOPE_NAMES tag is set to NO (the default) then Doxygen +# will show members with their full class and namespace scopes in the # documentation. If set to YES the scope will be hidden. HIDE_SCOPE_NAMES = YES -# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen -# will put a list of the files that are included by a file in the documentation +# If the SHOW_INCLUDE_FILES tag is set to YES (the default) then Doxygen +# will put a list of the files that are included by a file in the documentation # of that file. SHOW_INCLUDE_FILES = YES -# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] +# 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. + +FORCE_LOCAL_INCLUDES = NO + +# If the INLINE_INFO tag is set to YES (the default) then a tag [inline] # is inserted in the documentation for inline members. INLINE_INFO = YES -# If the SORT_MEMBER_DOCS tag is set to YES (the default) 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 +# If the SORT_MEMBER_DOCS tag is set to YES (the default) 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. SORT_MEMBER_DOCS = YES -# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the -# brief documentation of file, namespace and class members alphabetically -# by member name. If set to NO (the default) the members will appear in +# If the SORT_BRIEF_DOCS tag is set to YES then doxygen will sort the +# brief documentation of file, namespace and class members alphabetically +# by member name. If set to NO (the default) the members will appear in # declaration order. SORT_BRIEF_DOCS = 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 default) +# 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 default) +# the constructors will appear in the respective orders defined by +# SORT_MEMBER_DOCS and SORT_BRIEF_DOCS. +# This tag will be ignored for brief docs if SORT_BRIEF_DOCS is set to NO +# and ignored for detailed docs if SORT_MEMBER_DOCS is set to 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 default) # the group names will appear in their defined order. 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 default), the class list will be sorted only by class name, -# not including the namespace part. +# 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 default), 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 +# Note: This option applies only to the class list, not to the # alphabetical list. SORT_BY_SCOPE_NAME = NO -# The GENERATE_TODOLIST tag can be used to enable (YES) or -# disable (NO) the todo list. This list is created by putting \todo +# 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. + +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. 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 +# 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. 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 +# 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. 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 +# 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. GENERATE_DEPRECATEDLIST= YES -# The ENABLED_SECTIONS tag can be used to enable conditional -# documentation sections, marked by \if sectionname ... \endif. +# 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 = +ENABLED_SECTIONS = -# The MAX_INITIALIZER_LINES tag determines the maximum number of lines -# the initial value of a variable or define consists of 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 initializer of individual variables and defines in the -# documentation can be controlled using \showinitializer or \hideinitializer +# The MAX_INITIALIZER_LINES tag determines the maximum number of lines +# the initial value of a variable or macro consists of 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 initializer of individual variables and macros in the +# documentation can be controlled using \showinitializer or \hideinitializer # command in the documentation regardless of this setting. 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 +# 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. SHOW_USED_FILES = YES -# If the sources in your project are distributed over multiple directories -# then setting the SHOW_DIRECTORIES tag to YES will show the directory hierarchy -# in the documentation. The default is NO. - -SHOW_DIRECTORIES = NO - # 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 +# This will remove the Files entry from the Quick Index and from the # Folder Tree View (if specified). The default 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 +# 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 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 +# 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. See the manual for examples. -FILE_VERSION_FILTER = +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. + +LAYOUT_FILE = -# 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. The 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. +# The CITE_BIB_FILES tag can be used to specify one or more bib files +# containing the references data. This must be a list of .bib files. The +# .bib extension is automatically appended if omitted. Using this command +# requires the bibtex tool to be installed. See also +# http://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. Do not use +# file names with spaces, bibtex cannot handle them. -LAYOUT_FILE = +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 +# The QUIET tag can be used to turn on/off the messages that are generated # by doxygen. Possible values are YES and NO. If left blank NO is used. QUIET = NO -# The WARNINGS tag can be used to turn on/off the warning messages that are -# generated by doxygen. Possible values are YES and NO. If left blank +# The WARNINGS tag can be used to turn on/off the warning messages that are +# generated by doxygen. Possible values are YES and NO. If left blank # NO is used. WARNINGS = YES -# If WARN_IF_UNDOCUMENTED is set to YES, then doxygen will generate warnings -# for undocumented members. If EXTRACT_ALL is set to YES then this flag will +# If WARN_IF_UNDOCUMENTED 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. WARN_IF_UNDOCUMENTED = NO -# If WARN_IF_DOC_ERROR 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 +# If WARN_IF_DOC_ERROR 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. WARN_IF_DOC_ERROR = YES -# This WARN_NO_PARAMDOC option can be abled to get warnings for -# functions that are documented, but have no documentation for their parameters -# or return value. If set to NO (the default) doxygen will only warn about -# wrong or incomplete parameter documentation, but not about the absence of +# The 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 (the default) doxygen will only warn about +# wrong or incomplete parameter documentation, but not about the absence of # documentation. WARN_NO_PARAMDOC = 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 +# 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) 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 +# 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 stderr. WARN_LOGFILE = doxygen_warnings.log @@ -547,145 +663,166 @@ WARN_LOGFILE = doxygen_warnings.log # configuration options related to the input files #--------------------------------------------------------------------------- -# The INPUT tag can be 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 +# The INPUT tag can be 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. INPUT = 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, which is -# also the default input encoding. Doxygen uses libiconv (or the iconv built -# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for +# This tag can be used to specify the character encoding of the source files +# that doxygen parses. Internally doxygen uses the UTF-8 encoding, which is +# also the default input encoding. Doxygen uses libiconv (or the iconv built +# into libc) for the transcoding. See http://www.gnu.org/software/libiconv for # the list of possible encodings. 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 pattern (like *.cpp -# and *.h) to filter out the source-files in the directories. If left -# blank the following patterns are tested: -# *.c *.cc *.cxx *.cpp *.c++ *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh *.hxx -# *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.py *.f90 +# If the value of the INPUT tag contains directories, you can use the +# FILE_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 the following patterns are tested: +# *.c *.cc *.cxx *.cpp *.c++ *.d *.java *.ii *.ixx *.ipp *.i++ *.inl *.h *.hh +# *.hxx *.hpp *.h++ *.idl *.odl *.cs *.php *.php3 *.inc *.m *.mm *.dox *.py +# *.f90 *.f *.for *.vhd *.vhdl FILE_PATTERNS = *.cpp *.h -# The RECURSIVE tag can be used to turn specify whether or not subdirectories -# should be searched for input files as well. Possible values are YES and NO. +# The RECURSIVE tag can be used to turn specify whether or not subdirectories +# should be searched for input files as well. Possible values are YES and NO. # If left blank NO is used. RECURSIVE = YES -# The EXCLUDE tag can be used to specify files and/or directories that should -# excluded from the INPUT source files. This way you can easily exclude a +# 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 select whether or not files or -# directories that are symbolic links (a Unix filesystem feature) are excluded +# 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. EXCLUDE_SYMLINKS = YES -# 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 +# 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 = +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, +# 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 -EXCLUDE_SYMBOLS = +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 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 = +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 +# 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 = +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. +# 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. # Possible values are YES and NO. If left blank NO is used. EXAMPLE_RECURSIVE = NO -# The IMAGE_PATH tag can be used to specify one or more files or -# directories that contain image that are included in the documentation (see +# The IMAGE_PATH tag can be used to specify one or more files or +# directories that contain image that are included in the documentation (see # the \image command). -IMAGE_PATH = +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 +# 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. -INPUT_FILTER = +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 -# info on how filters are used. If FILTER_PATTERNS is empty, INPUT_FILTER -# is applied to all files. +# 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 +# info on how filters are used. If FILTER_PATTERNS is empty or if +# non of the patterns match the file name, INPUT_FILTER is applied. -FILTER_PATTERNS = +FILTER_PATTERNS = -# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using -# INPUT_FILTER) will be used to filter the input files when producing source +# If the FILTER_SOURCE_FILES tag is set to YES, the input filter (if set using +# INPUT_FILTER) will be used to filter the input files when producing source # files to browse (i.e. when SOURCE_BROWSER is set to YES). 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 option only has effect when +# FILTER_SOURCE_FILES is enabled. + +FILTER_SOURCE_PATTERNS = + +# If the USE_MD_FILE_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 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 also +# 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 also # VERBATIM_HEADERS is set to NO. SOURCE_BROWSER = NO -# Setting the INLINE_SOURCES tag to YES will include the body +# Setting the INLINE_SOURCES tag to YES will include the body # of functions and classes directly in the documentation. INLINE_SOURCES = NO -# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct -# doxygen to hide any special comment blocks from generated source code -# fragments. Normal C and C++ comments will always remain visible. +# Setting the STRIP_CODE_COMMENTS tag to YES (the default) will instruct +# doxygen to hide any special comment blocks from generated source code +# fragments. Normal C, C++ and Fortran comments will always remain visible. STRIP_CODE_COMMENTS = YES -# If the REFERENCED_BY_RELATION tag is set to YES -# then for each documented function all documented +# If the REFERENCED_BY_RELATION tag is set to YES +# then for each documented function all documented # functions referencing it will be listed. REFERENCED_BY_RELATION = YES -# If the REFERENCES_RELATION tag is set to YES -# then for each documented function all documented entities +# 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. REFERENCES_RELATION = YES @@ -693,20 +830,21 @@ REFERENCES_RELATION = YES # If the REFERENCES_LINK_SOURCE tag is set to YES (the default) # 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 documentstion. +# link to the source code. +# Otherwise they will link to the documentation. REFERENCES_LINK_SOURCE = 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 http://www.gnu.org/software/global/global.html). You +# 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 http://www.gnu.org/software/global/global.html). You # will need version 4.8.6 or higher. USE_HTAGS = NO -# If the VERBATIM_HEADERS tag is set to YES (the default) then Doxygen -# will generate a verbatim copy of the header file for each class for +# If the VERBATIM_HEADERS tag is set to YES (the default) 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. VERBATIM_HEADERS = NO @@ -715,124 +853,201 @@ VERBATIM_HEADERS = NO # configuration options related to the alphabetical class index #--------------------------------------------------------------------------- -# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then -# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns +# 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. + +ALPHABETICAL_INDEX = YES + +# If the alphabetical index is enabled (see ALPHABETICAL_INDEX) then +# the COLS_IN_ALPHA_INDEX tag can be used to specify the number of columns # in which this list will be split (can be a number in the range [1..20]) 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 one or more prefixes that +# 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 one or more prefixes that # should be ignored while generating the index headers. -IGNORE_PREFIX = +IGNORE_PREFIX = #--------------------------------------------------------------------------- # configuration options related to the HTML output #--------------------------------------------------------------------------- -# If the GENERATE_HTML tag is set to YES (the default) Doxygen will +# If the GENERATE_HTML tag is set to YES (the default) Doxygen will # generate HTML output. 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 +# 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. If left blank `html' will be used as the default path. 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). If it is left blank +# The HTML_FILE_EXTENSION tag can be used to specify the file extension for +# each generated HTML page (for example: .htm,.php,.asp). If it is left blank # doxygen will generate files with .html extension. HTML_FILE_EXTENSION = .html -# The HTML_HEADER tag can be used to specify a personal HTML header for -# each generated HTML page. If it is left blank doxygen will generate a -# standard header. +# The HTML_HEADER tag can be used to specify a personal HTML header for +# each generated HTML page. If it is left blank doxygen will generate a +# standard header. Note that when using a custom header you are responsible +# for the proper inclusion of any scripts and style sheets that doxygen +# needs, which is dependent on the configuration options used. +# It is advised to generate a default header using "doxygen -w html +# header.html footer.html stylesheet.css YourConfigFile" and then modify +# that header. Note that the header is subject to change so you typically +# have to redo this when upgrading to a newer version of doxygen or when +# changing the value of configuration settings such as GENERATE_TREEVIEW! + +HTML_HEADER = + +# The HTML_FOOTER tag can be used to specify a personal HTML footer for +# each generated HTML page. If it is left blank doxygen will generate a +# standard footer. -HTML_HEADER = +HTML_FOOTER = -# The HTML_FOOTER tag can be used to specify a personal HTML footer for -# each generated HTML page. If it is left blank doxygen will generate a -# standard 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. Note that it is recommended to use +# HTML_EXTRA_STYLESHEET instead of this one, as it is more robust and this +# tag will in the future become obsolete. + +HTML_STYLESHEET = + +# The HTML_EXTRA_STYLESHEET tag can be used to specify an additional +# user-defined cascading style sheet that is 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 therefor more +# robust against future updates. Doxygen will copy the style sheet file to +# the output directory. -HTML_FOOTER = +HTML_EXTRA_STYLESHEET = -# 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 the tag is left blank doxygen -# will generate a default style sheet. Note that doxygen will try to copy -# the style sheet file to the HTML output directory, so don't put your own -# stylesheet in the HTML output directory as well, or it will be erased! +# 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. -HTML_STYLESHEET = +HTML_EXTRA_FILES = -# If the HTML_ALIGN_MEMBERS tag is set to YES, the members of classes, -# files or namespaces will be aligned in HTML using tables. If set to -# NO a bullet list will be used. +# 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 http://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. +# The allowed range is 0 to 359. -HTML_ALIGN_MEMBERS = YES +HTML_COLORSTYLE_HUE = 220 -# 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. For this to work a browser that supports -# JavaScript and DHTML is required (for instance Mozilla 1.0+, Firefox -# Netscape 6.0+, Internet explorer 5.0+, Konqueror, or Safari). +# 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. + +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. + +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 NO can help when comparing the output of multiple runs. + +HTML_TIMESTAMP = 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. HTML_DYNAMIC_SECTIONS = NO -# 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, 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 http://developer.apple.com/tools/creatingdocsetswithdoxygen.html for more information. +# 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. + +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, 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 http://developer.apple.com/tools/creatingdocsetswithdoxygen.html +# for more information. GENERATE_DOCSET = NO -# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the -# feed. A documentation feed provides an umbrella under which multiple -# documentation sets from a single provider (such as a company or product suite) +# When GENERATE_DOCSET tag is set to YES, this tag determines the name of the +# 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. DOCSET_FEEDNAME = "Doxygen generated docs" -# When GENERATE_DOCSET tag is set to YES, 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 +# When GENERATE_DOCSET tag is set to YES, 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. DOCSET_BUNDLE_ID = org.doxygen.Project -# If the GENERATE_HTMLHELP tag is set to YES, additional index files -# will be generated that can be used as input for tools like the -# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) +# When GENERATE_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. + +DOCSET_PUBLISHER_ID = org.doxygen.Publisher + +# The GENERATE_PUBLISHER_NAME tag identifies the documentation publisher. + +DOCSET_PUBLISHER_NAME = Publisher + +# If the GENERATE_HTMLHELP tag is set to YES, additional index files +# will be generated that can be used as input for tools like the +# Microsoft HTML help workshop to generate a compiled HTML help file (.chm) # of the generated HTML documentation. GENERATE_HTMLHELP = NO -# If the GENERATE_HTMLHELP tag is set to YES, 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 +# If the GENERATE_HTMLHELP tag is set to YES, 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. -CHM_FILE = +CHM_FILE = -# If the GENERATE_HTMLHELP tag is set to YES, 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 +# If the GENERATE_HTMLHELP tag is set to YES, 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. -HHC_LOCATION = +HHC_LOCATION = -# If the GENERATE_HTMLHELP tag is set to YES, the GENERATE_CHI flag -# controls if a separate .chi index file is generated (YES) or that +# If the GENERATE_HTMLHELP tag is set to YES, 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). GENERATE_CHI = NO @@ -841,235 +1056,401 @@ GENERATE_CHI = NO # is used to encode HtmlHelp index (hhk), content (hhc) and project file # content. -CHM_INDEX_ENCODING = +CHM_INDEX_ENCODING = -# If the GENERATE_HTMLHELP tag is set to YES, the BINARY_TOC flag -# controls whether a binary table of contents is generated (YES) or a +# If the GENERATE_HTMLHELP tag is set to YES, 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. BINARY_TOC = NO -# The TOC_EXPAND flag can be set to YES to add extra items for group members +# The TOC_EXPAND flag can be set to YES to add extra items for group members # to the contents of the HTML help documentation and to the tree view. 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. +# 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. 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. +# 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. -QCH_FILE = +QCH_FILE = -# The QHP_NAMESPACE tag specifies the namespace to use when generating -# Qt Help Project output. For more information please see -# <a href="http://doc.trolltech.com/qthelpproject.html#namespace">Qt Help Project / Namespace</a>. +# The QHP_NAMESPACE tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#namespace 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 -# <a href="http://doc.trolltech.com/qthelpproject.html#virtual-folders">Qt Help Project / Virtual Folders</a>. +# The QHP_VIRTUAL_FOLDER tag specifies the namespace to use when generating +# Qt Help Project output. For more information please see +# http://doc.trolltech.com/qthelpproject.html#virtual-folders QHP_VIRTUAL_FOLDER = doc -# If the GENERATE_QHP tag is set to YES, 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 . +# If QHP_CUST_FILTER_NAME is set, it specifies the name of a custom filter to +# add. For more information please see +# http://doc.trolltech.com/qthelpproject.html#custom-filters -QHG_LOCATION = +QHP_CUST_FILTER_NAME = -# The DISABLE_INDEX tag can be used to turn on/off the condensed index at -# top of each HTML page. The value NO (the default) enables the index and -# the value YES disables it. +# The QHP_CUST_FILT_ATTRS tag specifies the list of the attributes of the +# custom filter to add. For more information please see +# <a href="http://doc.trolltech.com/qthelpproject.html#custom-filters"> +# Qt Help Project / Custom Filters</a>. -DISABLE_INDEX = NO +QHP_CUST_FILTER_ATTRS = -# This tag can be used to set the number of enum values (range [1..20]) -# that doxygen will group on one line in the generated HTML documentation. +# The QHP_SECT_FILTER_ATTRS tag specifies the list of the attributes this +# project's +# filter section matches. +# <a href="http://doc.trolltech.com/qthelpproject.html#filter-attributes"> +# Qt Help Project / Filter Attributes</a>. -ENUM_VALUES_PER_LINE = 4 +QHP_SECT_FILTER_ATTRS = + +# If the GENERATE_QHP tag is set to YES, 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. + +QHG_LOCATION = + +# If the GENERATE_ECLIPSEHELP tag is set to YES, additional index files +# will be generated, which together with the HTML files, 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. + +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. + +ECLIPSE_DOC_ID = org.doxygen.Project + +# The DISABLE_INDEX tag can be used to turn on/off the condensed index (tabs) +# at top of each HTML page. The value NO (the default) enables the index and +# the value YES disables it. Since the tabs have the same information as the +# navigation tree you can set this option to NO if you already set +# GENERATE_TREEVIEW 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 FRAME, 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 (for instance Mozilla 1.0+, -# Netscape 6.0+, Internet explorer 5.0+, or Konqueror). Windows users are -# probably better off using the HTML help feature. Other possible values -# for this tag are: HIERARCHIES, which will generate the Groups, Directories, -# and Class Hierarchy pages using a tree view instead of an ordered list; -# ALL, which combines the behavior of FRAME and HIERARCHIES; and NONE, which -# disables this behavior completely. For backwards compatibility with previous -# releases of Doxygen, the values YES and NO are equivalent to FRAME and NONE -# respectively. +# 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. +# Since the tree basically has the same information as the tab index you +# could consider to set DISABLE_INDEX to NO when enabling this option. GENERATE_TREEVIEW = NO -# 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 +# The ENUM_VALUES_PER_LINE tag can be used to set the number of enum values +# (range [0,1..20]) 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. + +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. TREEVIEW_WIDTH = 250 -# Use this tag to change the font size of Latex formulas included -# as images in the HTML documentation. The default is 10. Note that -# 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 +# When 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. + +EXT_LINKS_IN_WINDOW = NO + +# Use this tag to change the font size of Latex formulas included +# as images in the HTML documentation. The default is 10. Note that +# 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. FORMULA_FONTSIZE = 10 +# Use the FORMULA_TRANPARENT 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 before the changes have effect. + +FORMULA_TRANSPARENT = YES + +# Enable the USE_MATHJAX option to render LaTeX formulas using MathJax +# (see http://www.mathjax.org) which uses client side Javascript for the +# rendering instead of using prerendered 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. + +USE_MATHJAX = NO + +# When MathJax is enabled you can set the default output format to be used for +# thA MathJax output. Supported types are HTML-CSS, NativeMML (i.e. MathML) and +# SVG. The default value is HTML-CSS, which is slower, but has the best +# compatibility. + +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 http://www.mathjax.org before deployment. + +MATHJAX_RELPATH = http://cdn.mathjax.org/mathjax/latest + +# The MATHJAX_EXTENSIONS tag can be used to specify one or MathJax extension +# names that should be enabled during MathJax rendering. + +MATHJAX_EXTENSIONS = + +# 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. + +SEARCHENGINE = NO + +# 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 flavours of web server based search 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 manual for details. + +SERVER_BASED_SEARCH = NO + +# When EXTERNAL_SEARCH 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 the manual for configuration details. + +EXTERNAL_SEARCH = NO + +# The SEARCHENGINE_URL should point to a search engine hosted by a web server +# which will returned the search results when EXTERNAL_SEARCH is enabled. +# Doxygen ships with an example search engine (doxysearch) which is based on +# the open source search engine library Xapian. See the manual for configuration +# details. + +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. + +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. + +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 = id1=loc1 id2=loc2 ... + +EXTRA_SEARCH_MAPPINGS = + #--------------------------------------------------------------------------- # configuration options related to the LaTeX output #--------------------------------------------------------------------------- -# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will +# If the GENERATE_LATEX tag is set to YES (the default) Doxygen will # generate Latex output. 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 +# 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. If left blank `latex' will be used as the default path. LATEX_OUTPUT = latex -# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be +# The LATEX_CMD_NAME tag can be used to specify the LaTeX command name to be # invoked. If left blank `latex' will be used as the default command name. +# 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. LATEX_CMD_NAME = latex -# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to -# generate index for LaTeX. If left blank `makeindex' will be used as the +# The MAKEINDEX_CMD_NAME tag can be used to specify the command name to +# generate index for LaTeX. If left blank `makeindex' will be used as the # default command name. 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 +# 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. 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, a4wide, letter, legal and +# The PAPER_TYPE tag can be used to set the paper type that is used +# by the printer. Possible values are: a4, letter, legal and # executive. If left blank a4wide will be used. -PAPER_TYPE = a4wide +PAPER_TYPE = a4 -# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX +# The EXTRA_PACKAGES tag can be to specify one or more names of LaTeX # packages that should be included in the LaTeX output. EXTRA_PACKAGES = amsmath amssymb -# 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 +# 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. Notice: only use this tag if you know what you are doing! -LATEX_HEADER = +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. Notice: only use this tag if you know what you are doing! + +LATEX_FOOTER = -# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated -# is prepared for conversion to pdf (using ps2pdf). The pdf file will -# contain links (just like the HTML output) instead of page references +# If the PDF_HYPERLINKS tag is set to YES, the LaTeX that is generated +# is prepared for conversion to pdf (using ps2pdf). 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. PDF_HYPERLINKS = NO -# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of -# plain latex in the generated Makefile. Set this option to YES to get a +# If the USE_PDFLATEX tag is set to YES, pdflatex will be used instead of +# plain latex in the generated Makefile. Set this option to YES to get a # higher quality PDF documentation. -USE_PDFLATEX = NO +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. +# 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. LATEX_BATCHMODE = NO -# If LATEX_HIDE_INDICES is set to YES then doxygen will not -# include the index chapters (such as File Index, Compound Index, etc.) +# If LATEX_HIDE_INDICES is set to YES then doxygen will not +# include the index chapters (such as File Index, Compound Index, etc.) # in the output. LATEX_HIDE_INDICES = NO +# If LATEX_SOURCE_CODE 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. + +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. The default style is "plain". See +# http://en.wikipedia.org/wiki/BibTeX for more info. + +LATEX_BIB_STYLE = plain + #--------------------------------------------------------------------------- # 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 very pretty with +# 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 very pretty with # other RTF readers or editors. 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 +# 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. If left blank `rtf' will be used as the default path. 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 +# 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. 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 other -# programs which support those fields. +# 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 other +# programs which support those fields. # Note: wordpad (write) and others do not support links. 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 +# Load style sheet 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. -RTF_STYLESHEET_FILE = +RTF_STYLESHEET_FILE = -# Set optional variables used in the generation of an rtf document. +# Set optional variables used in the generation of an rtf document. # Syntax is similar to doxygen's config file. -RTF_EXTENSIONS_FILE = +RTF_EXTENSIONS_FILE = #--------------------------------------------------------------------------- # configuration options related to the man page output #--------------------------------------------------------------------------- -# If the GENERATE_MAN tag is set to YES (the default) Doxygen will +# If the GENERATE_MAN tag is set to YES (the default) Doxygen will # generate man pages 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 +# 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. If left blank `man' will be used as the default path. MAN_OUTPUT = man -# The MAN_EXTENSION tag determines the extension that is added to +# The MAN_EXTENSION tag determines the extension that is added to # the generated man pages (default is the subroutine's section .3) MAN_EXTENSION = .3 -# 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 +# 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 is NO. MAN_LINKS = NO @@ -1078,33 +1459,33 @@ 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 +# 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. 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 +# 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. If left blank `xml' will be used as the default path. XML_OUTPUT = xml -# The XML_SCHEMA tag can be used to specify an XML schema, -# which can be used by a validating XML parser to check the +# The XML_SCHEMA tag can be used to specify an XML schema, +# which can be used by a validating XML parser to check the # syntax of the XML files. -XML_SCHEMA = +XML_SCHEMA = -# The XML_DTD tag can be used to specify an XML DTD, -# which can be used by a validating XML parser to check the +# The XML_DTD tag can be used to specify an XML DTD, +# which can be used by a validating XML parser to check the # syntax of the XML files. -XML_DTD = +XML_DTD = -# 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 +# 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. XML_PROGRAMLISTING = YES @@ -1113,10 +1494,10 @@ XML_PROGRAMLISTING = YES # configuration options for the AutoGen Definitions output #--------------------------------------------------------------------------- -# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will -# generate an AutoGen Definitions (see autogen.sf.net) file -# that captures the structure of the code including all -# documentation. Note that this feature is still experimental +# If the GENERATE_AUTOGEN_DEF tag is set to YES Doxygen will +# generate an AutoGen Definitions (see autogen.sf.net) file +# that captures the structure of the code including all +# documentation. Note that this feature is still experimental # and incomplete at the moment. GENERATE_AUTOGEN_DEF = NO @@ -1125,338 +1506,364 @@ 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 +# 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. 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 +# 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. 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 +# 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. 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 +# 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. -PERLMOD_MAKEVAR_PREFIX = +PERLMOD_MAKEVAR_PREFIX = #--------------------------------------------------------------------------- -# Configuration options related to the preprocessor +# Configuration options related to the preprocessor #--------------------------------------------------------------------------- -# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will -# evaluate all C-preprocessor directives found in the sources and include +# If the ENABLE_PREPROCESSING tag is set to YES (the default) Doxygen will +# evaluate all C-preprocessor directives found in the sources and include # files. 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 (the default) only conditional -# compilation will be performed. Macro expansion can be done in a controlled +# If the MACRO_EXPANSION tag is set to YES Doxygen will expand all macro +# names in the source code. If set to NO (the default) only conditional +# compilation will be performed. Macro expansion can be done in a controlled # way by setting EXPAND_ONLY_PREDEF 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 +# 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. EXPAND_ONLY_PREDEF = NO -# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files -# in the INCLUDE_PATH (see below) will be search if a #include is found. +# If the SEARCH_INCLUDES tag is set to YES (the default) the includes files +# pointed to by INCLUDE_PATH will be searched when a #include is found. 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 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. INCLUDE_PATH = src -# 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 +# 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. -INCLUDE_FILE_PATTERNS = +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 -# 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 +# 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 +# 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. -PREDEFINED = +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. +# 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. -EXPAND_AS_DEFINED = +EXPAND_AS_DEFINED = -# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) then -# doxygen's preprocessor will remove all 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. +# If the SKIP_FUNCTION_MACROS tag is set to YES (the default) 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, because these will confuse the parser if not removed. SKIP_FUNCTION_MACROS = YES #--------------------------------------------------------------------------- -# Configuration::additions related to external references +# Configuration::additions related to external references #--------------------------------------------------------------------------- -# The TAGFILES option can be used to specify one or more tagfiles. -# Optionally an initial location of the external documentation -# can be added for each tagfile. 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. If a location is present for each tag, the installdox tool -# does not have to be run to correct the links. -# Note that 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 +# The TAGFILES option can be used to specify one or more tagfiles. 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. Note that 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. -GENERATE_TAGFILE = +GENERATE_TAGFILE = -# If the ALLEXTERNALS tag is set to YES all external classes will be listed -# in the class index. If set to NO only the inherited external classes +# If the ALLEXTERNALS tag is set to YES all external classes will be listed +# in the class index. If set to NO only the inherited external classes # will be listed. 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 +# 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. EXTERNAL_GROUPS = YES -# The PERL_PATH should be the absolute path and name of the perl script +# The PERL_PATH should be the absolute path and name of the perl script # interpreter (i.e. the result of `which perl'). PERL_PATH = /usr/bin/perl #--------------------------------------------------------------------------- -# Configuration options related to the dot tool +# Configuration options related to the dot tool #--------------------------------------------------------------------------- -# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will -# generate a inheritance diagram (in HTML, RTF and LaTeX) for classes with base -# or super classes. Setting the tag to NO turns the diagrams off. Note that -# this option is superseded by the HAVE_DOT option below. This is only a -# fallback. It is recommended to install and use dot, since it yields more -# powerful graphs. +# If the CLASS_DIAGRAMS tag is set to YES (the default) Doxygen will +# generate a inheritance diagram (in HTML, RTF 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. 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 +# 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 = +MSCGEN_PATH = -# If set to YES, the inheritance and collaboration graphs will hide -# inheritance and usage relations if the target is undocumented +# 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. 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, a graph visualization -# toolkit from AT&T and Lucent Bell Labs. The other options in this section +# 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, 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) HAVE_DOT = YES -# By default doxygen will write a font called FreeSans.ttf to the output -# directory and reference it in all dot files that doxygen generates. This -# font does not include all possible unicode characters however, so when you need -# these (or just want a differently looking font) you can specify the font name -# using DOT_FONTNAME. You need 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 DOT_NUM_THREADS specifies the number of dot invocations doxygen is +# allowed to run in parallel. When set to 0 (the default) 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. + +DOT_NUM_THREADS = 0 + +# By default doxygen will use the Helvetica font for all dot files that +# doxygen generates. When you want a differently looking font 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. DOT_FONTNAME = FreeSans -# By default doxygen will tell dot to use the output directory to look for the -# FreeSans.ttf font (which doxygen will put there itself). If you specify a -# different font using DOT_FONTNAME you can set the path where dot -# can find it using this tag. +# The DOT_FONTSIZE tag can be used to set the size of the font of dot graphs. +# The default size is 10pt. -DOT_FONTPATH = +DOT_FONTSIZE = 10 -# If the CLASS_GRAPH and HAVE_DOT tags are 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 -# the CLASS_DIAGRAMS tag to NO. +# By default doxygen will tell dot to use the Helvetica font. +# If you specify a different font using DOT_FONTNAME you can use DOT_FONTPATH to +# set the path where dot can find it. + +DOT_FONTPATH = + +# If the CLASS_GRAPH and HAVE_DOT tags are 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. CLASS_GRAPH = YES -# If the COLLABORATION_GRAPH and HAVE_DOT tags are set to YES then doxygen -# will generate a graph for each documented class showing the direct and -# indirect implementation dependencies (inheritance, containment, and +# If the COLLABORATION_GRAPH and HAVE_DOT tags are 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. COLLABORATION_GRAPH = YES -# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen +# If the GROUP_GRAPHS and HAVE_DOT tags are set to YES then doxygen # will generate a graph for groups, showing the direct groups dependencies 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 +# 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. UML_LOOK = NO -# If set to YES, the inheritance and collaboration graphs will show the +# 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 +# managable. Set this to 0 for no limit. Note that the threshold may be +# exceeded by 50% before the limit is enforced. + +UML_LIMIT_NUM_FIELDS = 10 + +# If set to YES, the inheritance and collaboration graphs will show the # relations between templates and their instances. TEMPLATE_RELATIONS = NO -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT -# 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 +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDE_GRAPH, and HAVE_DOT +# 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. INCLUDE_GRAPH = YES -# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and -# HAVE_DOT tags are set to YES then doxygen will generate a graph for each -# documented header file showing the documented files that directly or +# If the ENABLE_PREPROCESSING, SEARCH_INCLUDES, INCLUDED_BY_GRAPH, and +# HAVE_DOT tags are set to YES then doxygen will generate a graph for each +# documented header file showing the documented files that directly or # indirectly include this file. INCLUDED_BY_GRAPH = YES -# If the CALL_GRAPH and HAVE_DOT options are 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 +# If the CALL_GRAPH and HAVE_DOT options are 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. CALL_GRAPH = NO -# If the CALLER_GRAPH and HAVE_DOT tags are 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 +# If the CALLER_GRAPH and HAVE_DOT tags are 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. CALLER_GRAPH = NO -# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen -# will graphical hierarchy of all classes instead of a textual one. +# If the GRAPHICAL_HIERARCHY and HAVE_DOT tags are set to YES then doxygen +# will generate a graphical hierarchy of all classes instead of a textual one. GRAPHICAL_HIERARCHY = YES -# If the DIRECTORY_GRAPH, SHOW_DIRECTORIES and HAVE_DOT tags are set to YES -# then doxygen will show the dependencies a directory has on other directories +# If the DIRECTORY_GRAPH and HAVE_DOT tags are 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. DIRECTORY_GRAPH = YES -# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images -# generated by dot. Possible values are png, jpg, or gif -# If left blank png will be used. +# The DOT_IMAGE_FORMAT tag can be used to set the image format of the images +# generated by dot. Possible values are svg, png, jpg, or gif. +# If left blank png will be used. 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). DOT_IMAGE_FORMAT = png -# The tag DOT_PATH can be used to specify the path where the dot tool can be +# 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. 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. + +INTERACTIVE_SVG = NO + +# The tag DOT_PATH 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. -DOT_PATH = +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 +# 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). -DOTFILE_DIRS = +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). -# 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 +MSCFILE_DIRS = + +# 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. 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 +# 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. 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 +# 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). DOT_TRANSPARENT = NO -# Set the DOT_MULTI_TARGETS tag to YES 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) +# Set the DOT_MULTI_TARGETS tag to YES 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. DOT_MULTI_TARGETS = NO -# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will -# generate a legend page explaining the meaning of the various boxes and +# If the GENERATE_LEGEND tag is set to YES (the default) Doxygen will +# generate a legend page explaining the meaning of the various boxes and # arrows in the dot generated graphs. GENERATE_LEGEND = YES -# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will -# remove the intermediate dot files that are used to generate +# If the DOT_CLEANUP tag is set to YES (the default) Doxygen will +# remove the intermediate dot files that are used to generate # the various graphs. DOT_CLEANUP = YES - -#--------------------------------------------------------------------------- -# Configuration::additions related to the search engine -#--------------------------------------------------------------------------- - -# The SEARCHENGINE tag specifies whether or not a search engine should be -# used. If set to NO the values of all tags below this one will be ignored. - -SEARCHENGINE = NO @@ -57,8 +57,8 @@ msgid "" msgstr "" "Project-Id-Version: inkscape 0.49\n" "Report-Msgid-Bugs-To: inkscape-devel@lists.sourceforge.net\n" -"POT-Creation-Date: 2013-05-12 14:52+0200\n" -"PO-Revision-Date: 2013-05-13 16:34+0100\n" +"POT-Creation-Date: 2013-08-22 14:40+0200\n" +"PO-Revision-Date: 2013-09-15 12:38+0100\n" "Last-Translator: Kris De Gussem <Kris.DeGussem@gmail.com>\n" "Language-Team: Dutch\n" "MIME-Version: 1.0\n" @@ -991,8 +991,8 @@ msgid "Black Light" msgstr "Zwart licht" #: ../share/filters/filters.svg.h:1 -#: ../src/ui/dialog/clonetiler.cpp:831 -#: ../src/ui/dialog/clonetiler.cpp:982 +#: ../src/ui/dialog/clonetiler.cpp:832 +#: ../src/ui/dialog/clonetiler.cpp:983 #: ../src/extension/internal/bitmap/colorize.cpp:52 #: ../src/extension/internal/filter/bumps.h:101 #: ../src/extension/internal/filter/bumps.h:321 @@ -1024,7 +1024,7 @@ msgstr "Zwart licht" #: ../src/extension/internal/filter/paint.h:717 #: ../src/extension/internal/filter/shadows.h:73 #: ../src/extension/internal/filter/transparency.h:345 -#: ../src/ui/dialog/document-properties.cpp:150 +#: ../src/ui/dialog/document-properties.cpp:149 #: ../share/extensions/color_blackandwhite.inx.h:2 #: ../share/extensions/color_brighter.inx.h:2 #: ../share/extensions/color_custom.inx.h:15 @@ -3044,10 +3044,9 @@ msgstr "Scharlakenrood 3" #. Palette: ./Tango-Palette.gpl #: ../share/palettes/palettes.h:187 -#, fuzzy msgctxt "Palette" msgid "Snowy White" -msgstr "Wit" +msgstr "Sneeuwwit" #. Palette: ./Tango-Palette.gpl #: ../share/palettes/palettes.h:188 @@ -3087,10 +3086,9 @@ msgstr "Aluminium 6" #. Palette: ./Tango-Palette.gpl #: ../share/palettes/palettes.h:194 -#, fuzzy msgctxt "Palette" msgid "Jet Black" -msgstr "Zwart" +msgstr "Pikzwart" #: ../share/patterns/patterns.svg.h:1 msgid "Stripes 1:1" @@ -3266,8 +3264,8 @@ msgid "Defines the direction and magnitude of the extrusion" msgstr "Bepaalt de richting en mate van uitrekking" #: ../src/sp-flowtext.cpp:339 -#: ../src/sp-text.cpp:400 -#: ../src/text-context.cpp:1630 +#: ../src/sp-text.cpp:399 +#: ../src/text-context.cpp:1631 msgid " [truncated]" msgstr " [afgekort]" @@ -3285,44 +3283,44 @@ msgid_plural "<b>Linked flowed text</b> (%d characters%s)" msgstr[0] "<b>Gekoppelde ingekaderde tekst</b> (%d teken%s)" msgstr[1] "<b>Gekoppelde ingekaderde tekst</b> (%d tekens%s)" -#: ../src/arc-context.cpp:307 +#: ../src/arc-context.cpp:306 msgid "<b>Ctrl</b>: make circle or integer-ratio ellipse, snap arc/segment angle" msgstr "<b>Ctrl</b>: tekent een cirkel of een ellips met gehele verhoudingen, beperkt de boog-/segmenthoek" -#: ../src/arc-context.cpp:308 -#: ../src/rect-context.cpp:353 +#: ../src/arc-context.cpp:307 +#: ../src/rect-context.cpp:352 msgid "<b>Shift</b>: draw around the starting point" msgstr "<b>Shift</b>: tekent rond het startpunt" -#: ../src/arc-context.cpp:464 +#: ../src/arc-context.cpp:465 #, c-format msgid "<b>Ellipse</b>: %s × %s (constrained to ratio %d:%d); with <b>Shift</b> to draw around the starting point" msgstr "<b>Ellips</b>: %s × %s (verhouding %d:%d); gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/arc-context.cpp:466 +#: ../src/arc-context.cpp:467 #, c-format msgid "<b>Ellipse</b>: %s × %s; with <b>Ctrl</b> to make square or integer-ratio ellipse; with <b>Shift</b> to draw around the starting point" msgstr "<b>Ellips</b>: %s × %s; gebruik <b>Ctrl</b> om een ellips met gehele verhoudingen te maken; gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/arc-context.cpp:492 +#: ../src/arc-context.cpp:493 msgid "Create ellipse" msgstr "Ellips maken" -#: ../src/box3d-context.cpp:421 -#: ../src/box3d-context.cpp:428 -#: ../src/box3d-context.cpp:435 -#: ../src/box3d-context.cpp:442 -#: ../src/box3d-context.cpp:449 -#: ../src/box3d-context.cpp:456 +#: ../src/box3d-context.cpp:420 +#: ../src/box3d-context.cpp:427 +#: ../src/box3d-context.cpp:434 +#: ../src/box3d-context.cpp:441 +#: ../src/box3d-context.cpp:448 +#: ../src/box3d-context.cpp:455 msgid "Change perspective (angle of PLs)" msgstr "Perspectief wijzigen (hoek van perspectieflijnen)" #. status text -#: ../src/box3d-context.cpp:640 +#: ../src/box3d-context.cpp:639 msgid "<b>3D Box</b>; with <b>Shift</b> to extrude along the Z axis" msgstr "<b>3D-kubus</b>; gebruik <b>Shift</b> om over de z-as uit te trekken" -#: ../src/box3d-context.cpp:668 +#: ../src/box3d-context.cpp:667 msgid "Create 3D box" msgstr "3D-kubus maken" @@ -3346,16 +3344,17 @@ msgstr "" #: ../src/ui/dialog/filter-effects-dialog.cpp:518 #: ../src/ui/dialog/inkscape-preferences.cpp:332 #: ../src/ui/dialog/inkscape-preferences.cpp:641 -#: ../src/ui/dialog/inkscape-preferences.cpp:1255 -#: ../src/ui/dialog/inkscape-preferences.cpp:1412 -#: ../src/ui/dialog/inkscape-preferences.cpp:1810 +#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1423 +#: ../src/ui/dialog/inkscape-preferences.cpp:1821 #: ../src/ui/dialog/input.cpp:742 #: ../src/ui/dialog/input.cpp:743 #: ../src/ui/dialog/input.cpp:1571 #: ../src/ui/dialog/input.cpp:1625 -#: ../src/verbs.cpp:2288 +#: ../src/verbs.cpp:2345 #: ../src/widgets/gradient-toolbar.cpp:1128 -#: ../src/widgets/pencil-toolbar.cpp:189 +#: ../src/widgets/pencil-toolbar.cpp:184 +#: ../src/widgets/stroke-marker-selector.cpp:388 #: ../share/extensions/gcodetools_area.inx.h:48 #: ../share/extensions/gcodetools_dxf_points.inx.h:20 #: ../share/extensions/gcodetools_engraving.inx.h:26 @@ -3363,7 +3362,6 @@ msgstr "" #: ../share/extensions/gcodetools_lathe.inx.h:41 #: ../share/extensions/gcodetools_path_to_gcode.inx.h:30 #: ../share/extensions/grid_polar.inx.h:4 -#: ../share/extensions/guides_creator.inx.h:7 #: ../share/extensions/scour.inx.h:18 msgid "None" msgstr "Geen" @@ -3397,12 +3395,12 @@ msgid "Select <b>at least one non-connector object</b>." msgstr "Selecteer <b>minstens één object</b> dat geen verbindingsobject is." #: ../src/connector-context.cpp:1456 -#: ../src/widgets/connector-toolbar.cpp:330 +#: ../src/widgets/connector-toolbar.cpp:326 msgid "Make connectors avoid selected objects" msgstr "Verbindingen ontwijken geselecteerde objecten" #: ../src/connector-context.cpp:1457 -#: ../src/widgets/connector-toolbar.cpp:340 +#: ../src/widgets/connector-toolbar.cpp:336 msgid "Make connectors ignore selected objects" msgstr "Verbindingen negeren geselecteerde objecten" @@ -3416,636 +3414,636 @@ msgstr "<b>De huidige laag is verborgen</b>. Toon deze om er op te kunnen tekene msgid "<b>Current layer is locked</b>. Unlock it to be able to draw on it." msgstr "<b>De huidige laag is vergrendeld</b>. Ontgrendel deze om er op te kunnen tekenen." -#: ../src/desktop-events.cpp:228 +#: ../src/desktop-events.cpp:225 msgid "Create guide" msgstr "Hulplijn maken" -#: ../src/desktop-events.cpp:473 +#: ../src/desktop-events.cpp:470 msgid "Move guide" msgstr "Hulplijn verplaatsen" -#: ../src/desktop-events.cpp:480 -#: ../src/desktop-events.cpp:538 +#: ../src/desktop-events.cpp:477 +#: ../src/desktop-events.cpp:535 #: ../src/ui/dialog/guides.cpp:144 msgid "Delete guide" msgstr "Hulplijn verwijderen" -#: ../src/desktop-events.cpp:518 +#: ../src/desktop-events.cpp:515 #, c-format msgid "<b>Guideline</b>: %s" msgstr "<b>Hulplijn</b>: %s" -#: ../src/desktop.cpp:907 +#: ../src/desktop.cpp:826 msgid "No previous zoom." msgstr "Er is geen vorige zoom." -#: ../src/desktop.cpp:928 +#: ../src/desktop.cpp:847 msgid "No next zoom." msgstr "Er is geen volgende zoom." -#: ../src/ui/dialog/clonetiler.cpp:111 +#: ../src/ui/dialog/clonetiler.cpp:112 msgid "_Symmetry" msgstr "_Symmetrie" #. TRANSLATORS: "translation" means "shift" / "displacement" here. -#: ../src/ui/dialog/clonetiler.cpp:123 +#: ../src/ui/dialog/clonetiler.cpp:124 msgid "<b>P1</b>: simple translation" msgstr "<b>P1</b>: eenvoudige verplaatsing" -#: ../src/ui/dialog/clonetiler.cpp:124 +#: ../src/ui/dialog/clonetiler.cpp:125 msgid "<b>P2</b>: 180° rotation" msgstr "<b>P2</b>: 180° draaien" -#: ../src/ui/dialog/clonetiler.cpp:125 +#: ../src/ui/dialog/clonetiler.cpp:126 msgid "<b>PM</b>: reflection" msgstr "<b>PM</b>: spiegeling" #. TRANSLATORS: "glide reflection" is a reflection and a translation combined. #. For more info, see http://mathforum.org/sum95/suzanne/symsusan.html -#: ../src/ui/dialog/clonetiler.cpp:128 +#: ../src/ui/dialog/clonetiler.cpp:129 msgid "<b>PG</b>: glide reflection" msgstr "<b>PG</b>: schuifspiegeling" -#: ../src/ui/dialog/clonetiler.cpp:129 +#: ../src/ui/dialog/clonetiler.cpp:130 msgid "<b>CM</b>: reflection + glide reflection" msgstr "<b>CM</b>: spiegeling + schuifspiegeling" -#: ../src/ui/dialog/clonetiler.cpp:130 +#: ../src/ui/dialog/clonetiler.cpp:131 msgid "<b>PMM</b>: reflection + reflection" msgstr "<b>PMM</b>: spiegeling + spiegeling" -#: ../src/ui/dialog/clonetiler.cpp:131 +#: ../src/ui/dialog/clonetiler.cpp:132 msgid "<b>PMG</b>: reflection + 180° rotation" msgstr "<b>PMG</b>: spiegeling + 180° draaien" -#: ../src/ui/dialog/clonetiler.cpp:132 +#: ../src/ui/dialog/clonetiler.cpp:133 msgid "<b>PGG</b>: glide reflection + 180° rotation" msgstr "<b>PGG</b>: schuifspiegeling + 180° draaien" -#: ../src/ui/dialog/clonetiler.cpp:133 +#: ../src/ui/dialog/clonetiler.cpp:134 msgid "<b>CMM</b>: reflection + reflection + 180° rotation" msgstr "<b>CMM</b>: spiegeling + spiegeling + 180° draaien" -#: ../src/ui/dialog/clonetiler.cpp:134 +#: ../src/ui/dialog/clonetiler.cpp:135 msgid "<b>P4</b>: 90° rotation" msgstr "<b>P4</b>: 90° draaien" -#: ../src/ui/dialog/clonetiler.cpp:135 +#: ../src/ui/dialog/clonetiler.cpp:136 msgid "<b>P4M</b>: 90° rotation + 45° reflection" msgstr "<b>P4M</b>: 90° draaien + 45° spiegeling" -#: ../src/ui/dialog/clonetiler.cpp:136 +#: ../src/ui/dialog/clonetiler.cpp:137 msgid "<b>P4G</b>: 90° rotation + 90° reflection" msgstr "<b>P4G</b>: 90° draaien + 90° spiegeling" -#: ../src/ui/dialog/clonetiler.cpp:137 +#: ../src/ui/dialog/clonetiler.cpp:138 msgid "<b>P3</b>: 120° rotation" msgstr "<b>P3</b>: 120° draaien" -#: ../src/ui/dialog/clonetiler.cpp:138 +#: ../src/ui/dialog/clonetiler.cpp:139 msgid "<b>P31M</b>: reflection + 120° rotation, dense" msgstr "<b>P31M</b>: spiegeling + 120° draaien, dicht" -#: ../src/ui/dialog/clonetiler.cpp:139 +#: ../src/ui/dialog/clonetiler.cpp:140 msgid "<b>P3M1</b>: reflection + 120° rotation, sparse" msgstr "<b>P3M1</b>: spiegeling + 120° draaien, dun" -#: ../src/ui/dialog/clonetiler.cpp:140 +#: ../src/ui/dialog/clonetiler.cpp:141 msgid "<b>P6</b>: 60° rotation" msgstr "<b>P6</b>: 60° draaien" -#: ../src/ui/dialog/clonetiler.cpp:141 +#: ../src/ui/dialog/clonetiler.cpp:142 msgid "<b>P6M</b>: reflection + 60° rotation" msgstr "<b>P6M</b>: spiegeling + 60° draaien" -#: ../src/ui/dialog/clonetiler.cpp:161 +#: ../src/ui/dialog/clonetiler.cpp:162 msgid "Select one of the 17 symmetry groups for the tiling" msgstr "Selecteer één van de 17 symmetriegroepen voor het tegelen" -#: ../src/ui/dialog/clonetiler.cpp:179 +#: ../src/ui/dialog/clonetiler.cpp:180 msgid "S_hift" msgstr "Ver_plaatsing" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) horizontally by this amount -#: ../src/ui/dialog/clonetiler.cpp:189 +#: ../src/ui/dialog/clonetiler.cpp:190 #, no-c-format msgid "<b>Shift X:</b>" msgstr "<b>X-verplaatsing:</b>" -#: ../src/ui/dialog/clonetiler.cpp:197 +#: ../src/ui/dialog/clonetiler.cpp:198 #, no-c-format msgid "Horizontal shift per row (in % of tile width)" msgstr "Horizontale verplaatsing voor elke volgende rij (in % van de tegelbreedte)" -#: ../src/ui/dialog/clonetiler.cpp:205 +#: ../src/ui/dialog/clonetiler.cpp:206 #, no-c-format msgid "Horizontal shift per column (in % of tile width)" msgstr "Horizontale verplaatsing voor elke volgende kolom (in % van de tegelbreedte)" -#: ../src/ui/dialog/clonetiler.cpp:211 +#: ../src/ui/dialog/clonetiler.cpp:212 msgid "Randomize the horizontal shift by this percentage" msgstr "De horizontale positie binnen dit percentage willekeurig aanpassen" #. TRANSLATORS: "shift" means: the tiles will be shifted (offset) vertically by this amount -#: ../src/ui/dialog/clonetiler.cpp:221 +#: ../src/ui/dialog/clonetiler.cpp:222 #, no-c-format msgid "<b>Shift Y:</b>" msgstr "<b>Y-verplaatsing:</b>" -#: ../src/ui/dialog/clonetiler.cpp:229 +#: ../src/ui/dialog/clonetiler.cpp:230 #, no-c-format msgid "Vertical shift per row (in % of tile height)" msgstr "Verticale verplaatsing voor elke volgende rij (in % van de tegelhoogte)" -#: ../src/ui/dialog/clonetiler.cpp:237 +#: ../src/ui/dialog/clonetiler.cpp:238 #, no-c-format msgid "Vertical shift per column (in % of tile height)" msgstr "Verticale verplaatsing voor elke volgende kolom (in % van de tegelhoogte)" -#: ../src/ui/dialog/clonetiler.cpp:244 +#: ../src/ui/dialog/clonetiler.cpp:245 msgid "Randomize the vertical shift by this percentage" msgstr "De verticale positie binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:252 -#: ../src/ui/dialog/clonetiler.cpp:398 +#: ../src/ui/dialog/clonetiler.cpp:253 +#: ../src/ui/dialog/clonetiler.cpp:399 msgid "<b>Exponent:</b>" msgstr "<b>Exponent:</b>" -#: ../src/ui/dialog/clonetiler.cpp:259 +#: ../src/ui/dialog/clonetiler.cpp:260 msgid "Whether rows are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Of de rij-afstand gelijk blijft (1), afneemt (<1) of toeneemt (>1)" -#: ../src/ui/dialog/clonetiler.cpp:266 +#: ../src/ui/dialog/clonetiler.cpp:267 msgid "Whether columns are spaced evenly (1), converge (<1) or diverge (>1)" msgstr "Of de kolom-afstand gelijk blijft (1), afneemt (<1) of toeneemt (>1)" #. TRANSLATORS: "Alternate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:274 -#: ../src/ui/dialog/clonetiler.cpp:438 -#: ../src/ui/dialog/clonetiler.cpp:514 -#: ../src/ui/dialog/clonetiler.cpp:587 -#: ../src/ui/dialog/clonetiler.cpp:633 -#: ../src/ui/dialog/clonetiler.cpp:760 +#: ../src/ui/dialog/clonetiler.cpp:275 +#: ../src/ui/dialog/clonetiler.cpp:439 +#: ../src/ui/dialog/clonetiler.cpp:515 +#: ../src/ui/dialog/clonetiler.cpp:588 +#: ../src/ui/dialog/clonetiler.cpp:634 +#: ../src/ui/dialog/clonetiler.cpp:761 msgid "<small>Alternate:</small>" msgstr "<small>Afwisselen:</small>" -#: ../src/ui/dialog/clonetiler.cpp:280 +#: ../src/ui/dialog/clonetiler.cpp:281 msgid "Alternate the sign of shifts for each row" msgstr "De verplaatsingen voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:285 +#: ../src/ui/dialog/clonetiler.cpp:286 msgid "Alternate the sign of shifts for each column" msgstr "De verplaatsingen voor elke kolom om-en-om afwisselen" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:292 -#: ../src/ui/dialog/clonetiler.cpp:456 -#: ../src/ui/dialog/clonetiler.cpp:532 +#: ../src/ui/dialog/clonetiler.cpp:293 +#: ../src/ui/dialog/clonetiler.cpp:457 +#: ../src/ui/dialog/clonetiler.cpp:533 msgid "<small>Cumulate:</small>" msgstr "<small>Optellen:</small>" -#: ../src/ui/dialog/clonetiler.cpp:298 +#: ../src/ui/dialog/clonetiler.cpp:299 msgid "Cumulate the shifts for each row" msgstr "De verplaatsingen voor elke rij optellen" -#: ../src/ui/dialog/clonetiler.cpp:303 +#: ../src/ui/dialog/clonetiler.cpp:304 msgid "Cumulate the shifts for each column" msgstr "De verplaatsingen voor elke kolom optellen" #. TRANSLATORS: "Cumulate" is a verb here -#: ../src/ui/dialog/clonetiler.cpp:310 +#: ../src/ui/dialog/clonetiler.cpp:311 msgid "<small>Exclude tile:</small>" msgstr "<small>Tegel uitsluiten:</small>" -#: ../src/ui/dialog/clonetiler.cpp:316 +#: ../src/ui/dialog/clonetiler.cpp:317 msgid "Exclude tile height in shift" msgstr "Tegelhoogte niet bij verplaatsing optellen" -#: ../src/ui/dialog/clonetiler.cpp:321 +#: ../src/ui/dialog/clonetiler.cpp:322 msgid "Exclude tile width in shift" msgstr "Tegelbreedte niet bij verplaatsing optellen" -#: ../src/ui/dialog/clonetiler.cpp:330 +#: ../src/ui/dialog/clonetiler.cpp:331 msgid "Sc_ale" msgstr "_Schalen" -#: ../src/ui/dialog/clonetiler.cpp:338 +#: ../src/ui/dialog/clonetiler.cpp:339 msgid "<b>Scale X:</b>" msgstr "<b>X-vergroting:</b>" -#: ../src/ui/dialog/clonetiler.cpp:346 +#: ../src/ui/dialog/clonetiler.cpp:347 #, no-c-format msgid "Horizontal scale per row (in % of tile width)" msgstr "Horizontale vergroting voor elke volgende rij (in % van de tegelbreedte)" -#: ../src/ui/dialog/clonetiler.cpp:354 +#: ../src/ui/dialog/clonetiler.cpp:355 #, no-c-format msgid "Horizontal scale per column (in % of tile width)" msgstr "Horizontale vergroting voor elke volgende kolom (in % van de tegelbreedte)" -#: ../src/ui/dialog/clonetiler.cpp:360 +#: ../src/ui/dialog/clonetiler.cpp:361 msgid "Randomize the horizontal scale by this percentage" msgstr "De horizontale afmeting binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:368 +#: ../src/ui/dialog/clonetiler.cpp:369 msgid "<b>Scale Y:</b>" msgstr "<b>Y-vergroting:</b>" -#: ../src/ui/dialog/clonetiler.cpp:376 +#: ../src/ui/dialog/clonetiler.cpp:377 #, no-c-format msgid "Vertical scale per row (in % of tile height)" msgstr "Verticale vergroting voor elke volgende rij (in % van de tegelhoogte)" -#: ../src/ui/dialog/clonetiler.cpp:384 +#: ../src/ui/dialog/clonetiler.cpp:385 #, no-c-format msgid "Vertical scale per column (in % of tile height)" msgstr "Verticale vergroting voor elke volgende kolom (in % van de tegelhoogte)" -#: ../src/ui/dialog/clonetiler.cpp:390 +#: ../src/ui/dialog/clonetiler.cpp:391 msgid "Randomize the vertical scale by this percentage" msgstr "De verticale afmeting binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:404 +#: ../src/ui/dialog/clonetiler.cpp:405 msgid "Whether row scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Soort rijvergroting: uniform (1), convergent (<1) of divergent (>1)" -#: ../src/ui/dialog/clonetiler.cpp:410 +#: ../src/ui/dialog/clonetiler.cpp:411 msgid "Whether column scaling is uniform (1), converge (<1) or diverge (>1)" msgstr "Soort kolomvergroting: uniform (1), convergent (<1) of divergent (>1)" -#: ../src/ui/dialog/clonetiler.cpp:418 +#: ../src/ui/dialog/clonetiler.cpp:419 msgid "<b>Base:</b>" msgstr "<b>Grondtal:</b>" -#: ../src/ui/dialog/clonetiler.cpp:424 -#: ../src/ui/dialog/clonetiler.cpp:430 +#: ../src/ui/dialog/clonetiler.cpp:425 +#: ../src/ui/dialog/clonetiler.cpp:431 msgid "Base for a logarithmic spiral: not used (0), converge (<1), or diverge (>1)" msgstr "Grondtal voor logaritmische spiraal: ongebruikt (0), convergent (<1) of divergent (>1)" -#: ../src/ui/dialog/clonetiler.cpp:444 +#: ../src/ui/dialog/clonetiler.cpp:445 msgid "Alternate the sign of scales for each row" msgstr "De vergroting voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:449 +#: ../src/ui/dialog/clonetiler.cpp:450 msgid "Alternate the sign of scales for each column" msgstr "De vergroting voor elke kolom om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:462 +#: ../src/ui/dialog/clonetiler.cpp:463 msgid "Cumulate the scales for each row" msgstr "De vergrotingen voor elke rij optellen" -#: ../src/ui/dialog/clonetiler.cpp:467 +#: ../src/ui/dialog/clonetiler.cpp:468 msgid "Cumulate the scales for each column" msgstr "De vergrotingen voor elke kolom optellen" -#: ../src/ui/dialog/clonetiler.cpp:476 +#: ../src/ui/dialog/clonetiler.cpp:477 msgid "_Rotation" msgstr "_Rotatie" -#: ../src/ui/dialog/clonetiler.cpp:484 +#: ../src/ui/dialog/clonetiler.cpp:485 msgid "<b>Angle:</b>" msgstr "<b>Hoek:</b>" -#: ../src/ui/dialog/clonetiler.cpp:492 +#: ../src/ui/dialog/clonetiler.cpp:493 #, no-c-format msgid "Rotate tiles by this angle for each row" msgstr "Voor elke volgende rij de tegels over deze hoek draaien" -#: ../src/ui/dialog/clonetiler.cpp:500 +#: ../src/ui/dialog/clonetiler.cpp:501 #, no-c-format msgid "Rotate tiles by this angle for each column" msgstr "Voor elke volgende kolom de tegels over deze hoek draaien" -#: ../src/ui/dialog/clonetiler.cpp:506 +#: ../src/ui/dialog/clonetiler.cpp:507 msgid "Randomize the rotation angle by this percentage" msgstr "De draaihoek binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:520 +#: ../src/ui/dialog/clonetiler.cpp:521 msgid "Alternate the rotation direction for each row" msgstr "De draairichting voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:525 +#: ../src/ui/dialog/clonetiler.cpp:526 msgid "Alternate the rotation direction for each column" msgstr "De draairichting voor elke kolom om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:538 +#: ../src/ui/dialog/clonetiler.cpp:539 msgid "Cumulate the rotation for each row" msgstr "De rotaties voor elke rij optellen" -#: ../src/ui/dialog/clonetiler.cpp:543 +#: ../src/ui/dialog/clonetiler.cpp:544 msgid "Cumulate the rotation for each column" msgstr "De rotaties voor elke kolom optellen" -#: ../src/ui/dialog/clonetiler.cpp:552 +#: ../src/ui/dialog/clonetiler.cpp:553 msgid "_Blur & opacity" msgstr "_Vervaging & ondoorzichtigheid" -#: ../src/ui/dialog/clonetiler.cpp:561 +#: ../src/ui/dialog/clonetiler.cpp:562 msgid "<b>Blur:</b>" msgstr "<b>Vervaging:</b>" -#: ../src/ui/dialog/clonetiler.cpp:567 +#: ../src/ui/dialog/clonetiler.cpp:568 msgid "Blur tiles by this percentage for each row" msgstr "De tegels elke volgende rij met dit percentage vervagen" -#: ../src/ui/dialog/clonetiler.cpp:573 +#: ../src/ui/dialog/clonetiler.cpp:574 msgid "Blur tiles by this percentage for each column" msgstr "De tegels elke volgende kolom met dit percentage vervagen" -#: ../src/ui/dialog/clonetiler.cpp:579 +#: ../src/ui/dialog/clonetiler.cpp:580 msgid "Randomize the tile blur by this percentage" msgstr "Tegels binnen dit percentage willekeurig vervagen" -#: ../src/ui/dialog/clonetiler.cpp:593 +#: ../src/ui/dialog/clonetiler.cpp:594 msgid "Alternate the sign of blur change for each row" msgstr "De vervaging voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:598 +#: ../src/ui/dialog/clonetiler.cpp:599 msgid "Alternate the sign of blur change for each column" msgstr "De vervaging voor elke kolom om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:607 +#: ../src/ui/dialog/clonetiler.cpp:608 msgid "<b>Opacity:</b>" msgstr "<b>Ondoorzichtigheid</b>:" -#: ../src/ui/dialog/clonetiler.cpp:613 +#: ../src/ui/dialog/clonetiler.cpp:614 msgid "Decrease tile opacity by this percentage for each row" msgstr "De ondoorzichtigheid elke volgende rij met dit percentage verminderen" -#: ../src/ui/dialog/clonetiler.cpp:619 +#: ../src/ui/dialog/clonetiler.cpp:620 msgid "Decrease tile opacity by this percentage for each column" msgstr "De ondoorzichtigheid elke volgende kolom met dit percentage verminderen" -#: ../src/ui/dialog/clonetiler.cpp:625 +#: ../src/ui/dialog/clonetiler.cpp:626 msgid "Randomize the tile opacity by this percentage" msgstr "De ondoorzichtigheid binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:639 +#: ../src/ui/dialog/clonetiler.cpp:640 msgid "Alternate the sign of opacity change for each row" msgstr "De doorzichtigheid voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:644 +#: ../src/ui/dialog/clonetiler.cpp:645 msgid "Alternate the sign of opacity change for each column" msgstr "De doorzichtigheid voor elke kolom om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:652 +#: ../src/ui/dialog/clonetiler.cpp:653 msgid "Co_lor" msgstr "_Kleur" -#: ../src/ui/dialog/clonetiler.cpp:662 +#: ../src/ui/dialog/clonetiler.cpp:663 msgid "Initial color: " msgstr "Beginkleur: " -#: ../src/ui/dialog/clonetiler.cpp:666 +#: ../src/ui/dialog/clonetiler.cpp:667 msgid "Initial color of tiled clones" msgstr "Beginkleur van getegelde klonen" -#: ../src/ui/dialog/clonetiler.cpp:666 +#: ../src/ui/dialog/clonetiler.cpp:667 msgid "Initial color for clones (works only if the original has unset fill or stroke)" msgstr "Beginkleur van klonen (werkt alleen als het origineel geen vulling of lijn heeft)" -#: ../src/ui/dialog/clonetiler.cpp:681 +#: ../src/ui/dialog/clonetiler.cpp:682 msgid "<b>H:</b>" msgstr "<b>Tint:</b>" -#: ../src/ui/dialog/clonetiler.cpp:687 +#: ../src/ui/dialog/clonetiler.cpp:688 msgid "Change the tile hue by this percentage for each row" msgstr "De tint elke volgende rij met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:693 +#: ../src/ui/dialog/clonetiler.cpp:694 msgid "Change the tile hue by this percentage for each column" msgstr "De tint elke volgende kolom met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:699 +#: ../src/ui/dialog/clonetiler.cpp:700 msgid "Randomize the tile hue by this percentage" msgstr "De tint binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:708 +#: ../src/ui/dialog/clonetiler.cpp:709 msgid "<b>S:</b>" msgstr "<b>Verzadiging:</b>" -#: ../src/ui/dialog/clonetiler.cpp:714 +#: ../src/ui/dialog/clonetiler.cpp:715 msgid "Change the color saturation by this percentage for each row" msgstr "De verzadiging elke volgende rij met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:720 +#: ../src/ui/dialog/clonetiler.cpp:721 msgid "Change the color saturation by this percentage for each column" msgstr "De verzadiging elke volgende kolom met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:726 +#: ../src/ui/dialog/clonetiler.cpp:727 msgid "Randomize the color saturation by this percentage" msgstr "De verzadiging binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:734 +#: ../src/ui/dialog/clonetiler.cpp:735 msgid "<b>L:</b>" msgstr "<b>Helderheid:</b>" -#: ../src/ui/dialog/clonetiler.cpp:740 +#: ../src/ui/dialog/clonetiler.cpp:741 msgid "Change the color lightness by this percentage for each row" msgstr "De helderheid elke volgende rij met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:746 +#: ../src/ui/dialog/clonetiler.cpp:747 msgid "Change the color lightness by this percentage for each column" msgstr "De helderheid elke volgende kolom met dit percentage aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:752 +#: ../src/ui/dialog/clonetiler.cpp:753 msgid "Randomize the color lightness by this percentage" msgstr "De helderheid binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:766 +#: ../src/ui/dialog/clonetiler.cpp:767 msgid "Alternate the sign of color changes for each row" msgstr "De kleurwijzigingen voor elke rij om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:771 +#: ../src/ui/dialog/clonetiler.cpp:772 msgid "Alternate the sign of color changes for each column" msgstr "De kleurwijzigingen voor elke kolom om-en-om afwisselen" -#: ../src/ui/dialog/clonetiler.cpp:779 +#: ../src/ui/dialog/clonetiler.cpp:780 msgid "_Trace" msgstr "_Overtrekken" -#: ../src/ui/dialog/clonetiler.cpp:791 +#: ../src/ui/dialog/clonetiler.cpp:792 msgid "Trace the drawing under the tiles" msgstr "De tekening onder de tegels gebruiken" -#: ../src/ui/dialog/clonetiler.cpp:795 +#: ../src/ui/dialog/clonetiler.cpp:796 msgid "For each clone, pick a value from the drawing in that clone's location and apply it to the clone" msgstr "Voor elke kloon een eigenschap van de tekening op dat punt gebruiken om die kloon te beïnvloeden." -#: ../src/ui/dialog/clonetiler.cpp:814 +#: ../src/ui/dialog/clonetiler.cpp:815 msgid "1. Pick from the drawing:" msgstr "1. Kies een eigenschap uit de tekening:" -#: ../src/ui/dialog/clonetiler.cpp:832 +#: ../src/ui/dialog/clonetiler.cpp:833 msgid "Pick the visible color and opacity" msgstr "Selecteer de zichtbare kleur en de ondoorzichtigheid" -#: ../src/ui/dialog/clonetiler.cpp:839 -#: ../src/ui/dialog/clonetiler.cpp:992 +#: ../src/ui/dialog/clonetiler.cpp:840 +#: ../src/ui/dialog/clonetiler.cpp:993 #: ../src/extension/internal/bitmap/opacity.cpp:38 #: ../src/extension/internal/filter/blurs.h:333 #: ../src/extension/internal/filter/transparency.h:279 -#: ../src/widgets/tweak-toolbar.cpp:352 +#: ../src/widgets/tweak-toolbar.cpp:348 #: ../share/extensions/interp_att_g.inx.h:16 msgid "Opacity" msgstr "Ondoorzichtigheid" -#: ../src/ui/dialog/clonetiler.cpp:840 +#: ../src/ui/dialog/clonetiler.cpp:841 msgid "Pick the total accumulated opacity" msgstr "Selecteer de gesommeerde ondoorzichtigheid" -#: ../src/ui/dialog/clonetiler.cpp:847 +#: ../src/ui/dialog/clonetiler.cpp:848 msgid "R" msgstr "R" -#: ../src/ui/dialog/clonetiler.cpp:848 +#: ../src/ui/dialog/clonetiler.cpp:849 msgid "Pick the Red component of the color" msgstr "Selecteer de roodcomponent van de kleur" -#: ../src/ui/dialog/clonetiler.cpp:855 +#: ../src/ui/dialog/clonetiler.cpp:856 msgid "G" msgstr "G" -#: ../src/ui/dialog/clonetiler.cpp:856 +#: ../src/ui/dialog/clonetiler.cpp:857 msgid "Pick the Green component of the color" msgstr "Selecteer de groencomponent van de kleur" -#: ../src/ui/dialog/clonetiler.cpp:863 +#: ../src/ui/dialog/clonetiler.cpp:864 msgid "B" msgstr "B" -#: ../src/ui/dialog/clonetiler.cpp:864 +#: ../src/ui/dialog/clonetiler.cpp:865 msgid "Pick the Blue component of the color" msgstr "Selecteer de blauwcomponent van de kleur" -#: ../src/ui/dialog/clonetiler.cpp:871 +#: ../src/ui/dialog/clonetiler.cpp:872 msgctxt "Clonetiler color hue" msgid "H" msgstr "T" -#: ../src/ui/dialog/clonetiler.cpp:872 +#: ../src/ui/dialog/clonetiler.cpp:873 msgid "Pick the hue of the color" msgstr "De tint van de kleur kiezen" -#: ../src/ui/dialog/clonetiler.cpp:879 +#: ../src/ui/dialog/clonetiler.cpp:880 msgctxt "Clonetiler color saturation" msgid "S" msgstr "V" -#: ../src/ui/dialog/clonetiler.cpp:880 +#: ../src/ui/dialog/clonetiler.cpp:881 msgid "Pick the saturation of the color" msgstr "De verzadiging van de kleur kiezen" -#: ../src/ui/dialog/clonetiler.cpp:887 +#: ../src/ui/dialog/clonetiler.cpp:888 msgctxt "Clonetiler color lightness" msgid "L" msgstr "L" -#: ../src/ui/dialog/clonetiler.cpp:888 +#: ../src/ui/dialog/clonetiler.cpp:889 msgid "Pick the lightness of the color" msgstr "De helderheid van de kleur kiezen" -#: ../src/ui/dialog/clonetiler.cpp:898 +#: ../src/ui/dialog/clonetiler.cpp:899 msgid "2. Tweak the picked value:" msgstr "2. De geselecteerde eigenschap fijnafstemmen:" -#: ../src/ui/dialog/clonetiler.cpp:915 +#: ../src/ui/dialog/clonetiler.cpp:916 msgid "Gamma-correct:" msgstr "Gammacorrectie:" -#: ../src/ui/dialog/clonetiler.cpp:919 +#: ../src/ui/dialog/clonetiler.cpp:920 msgid "Shift the mid-range of the picked value upwards (>0) or downwards (<0)" msgstr "Het middengebied van de gekozen eigenschap verhogen (>0) of verlagen (<0)" -#: ../src/ui/dialog/clonetiler.cpp:926 +#: ../src/ui/dialog/clonetiler.cpp:927 msgid "Randomize:" msgstr "Willekeur:" -#: ../src/ui/dialog/clonetiler.cpp:930 +#: ../src/ui/dialog/clonetiler.cpp:931 msgid "Randomize the picked value by this percentage" msgstr "De geselecteerde eigenschap binnen dit percentage willekeurig aanpassen" -#: ../src/ui/dialog/clonetiler.cpp:937 +#: ../src/ui/dialog/clonetiler.cpp:938 msgid "Invert:" msgstr "Omdraaien:" -#: ../src/ui/dialog/clonetiler.cpp:941 +#: ../src/ui/dialog/clonetiler.cpp:942 msgid "Invert the picked value" msgstr "Draai de geselecteerde eigenschap om" -#: ../src/ui/dialog/clonetiler.cpp:947 +#: ../src/ui/dialog/clonetiler.cpp:948 msgid "3. Apply the value to the clones':" msgstr "3. De relatie tussen de eigenschap en de klonen:" -#: ../src/ui/dialog/clonetiler.cpp:962 +#: ../src/ui/dialog/clonetiler.cpp:963 msgid "Presence" msgstr "Aanwezigheid" -#: ../src/ui/dialog/clonetiler.cpp:965 +#: ../src/ui/dialog/clonetiler.cpp:966 msgid "Each clone is created with the probability determined by the picked value in that point" msgstr "De kans dat een kloon op een plek wordt gemaakt is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt." -#: ../src/ui/dialog/clonetiler.cpp:972 +#: ../src/ui/dialog/clonetiler.cpp:973 msgid "Size" msgstr "Afmeting" -#: ../src/ui/dialog/clonetiler.cpp:975 +#: ../src/ui/dialog/clonetiler.cpp:976 msgid "Each clone's size is determined by the picked value in that point" msgstr "De grootte van een kloon is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt" -#: ../src/ui/dialog/clonetiler.cpp:985 +#: ../src/ui/dialog/clonetiler.cpp:986 msgid "Each clone is painted by the picked color (the original must have unset fill or stroke)" msgstr "Klonen worden getekend in de geselecteerde kleur (werkt alleen als de kleur van de lijnen of de vulling van het origineel verwijderd is)" -#: ../src/ui/dialog/clonetiler.cpp:995 +#: ../src/ui/dialog/clonetiler.cpp:996 msgid "Each clone's opacity is determined by the picked value in that point" msgstr "De ondoorzichtigheid van een kloon is afhankelijk van de waarde van de geselecteerde eigenschap op dat punt" -#: ../src/ui/dialog/clonetiler.cpp:1043 +#: ../src/ui/dialog/clonetiler.cpp:1044 msgid "How many rows in the tiling" msgstr "Hoeveel rijen er betegeld moeten worden" -#: ../src/ui/dialog/clonetiler.cpp:1073 +#: ../src/ui/dialog/clonetiler.cpp:1074 msgid "How many columns in the tiling" msgstr "Hoeveel kolommen er betegeld moeten worden" -#: ../src/ui/dialog/clonetiler.cpp:1117 +#: ../src/ui/dialog/clonetiler.cpp:1119 msgid "Width of the rectangle to be filled" msgstr "Breedte van de rechthoek die gevuld moet worden" -#: ../src/ui/dialog/clonetiler.cpp:1151 +#: ../src/ui/dialog/clonetiler.cpp:1152 msgid "Height of the rectangle to be filled" msgstr "Hoogte van de rechthoek die gevuld moet worden" -#: ../src/ui/dialog/clonetiler.cpp:1168 +#: ../src/ui/dialog/clonetiler.cpp:1169 msgid "Rows, columns: " msgstr "Rijen, kolommen: " -#: ../src/ui/dialog/clonetiler.cpp:1169 +#: ../src/ui/dialog/clonetiler.cpp:1170 msgid "Create the specified number of rows and columns" msgstr "Het opgegeven aantal rijen en kolommen aanmaken" -#: ../src/ui/dialog/clonetiler.cpp:1178 +#: ../src/ui/dialog/clonetiler.cpp:1179 msgid "Width, height: " msgstr "Breedte, hoogte: " -#: ../src/ui/dialog/clonetiler.cpp:1179 +#: ../src/ui/dialog/clonetiler.cpp:1180 msgid "Fill the specified width and height with the tiling" msgstr "Vul een gebied met opgegeven breedte en hoogte met de betegeling" -#: ../src/ui/dialog/clonetiler.cpp:1200 +#: ../src/ui/dialog/clonetiler.cpp:1201 msgid "Use saved size and position of the tile" msgstr "De opgeslagen grootte en positie van de tegel gebruiken" -#: ../src/ui/dialog/clonetiler.cpp:1203 +#: ../src/ui/dialog/clonetiler.cpp:1204 msgid "Pretend that the size and position of the tile are the same as the last time you tiled it (if any), instead of using the current size" msgstr "Doen alsof de grootte en positie van de tegel hetzelfde zijn als de laatste keer dat u er mee tegelde, in plaats van de huidige grootte en positie te gebruiken." -#: ../src/ui/dialog/clonetiler.cpp:1237 +#: ../src/ui/dialog/clonetiler.cpp:1238 msgid " <b>_Create</b> " msgstr " <b>_Aanmaken</b> " -#: ../src/ui/dialog/clonetiler.cpp:1239 +#: ../src/ui/dialog/clonetiler.cpp:1240 msgid "Create and tile the clones of the selection" msgstr "Maak klonen van de selectie en gebruik ze als betegeling" @@ -4054,302 +4052,302 @@ msgstr "Maak klonen van de selectie en gebruik ze als betegeling" #. diagrams on the left in the following screenshot: #. http://www.inkscape.org/screenshots/gallery/inkscape-0.42-CVS-tiles-unclump.png #. So unclumping is the process of spreading a number of objects out more evenly. -#: ../src/ui/dialog/clonetiler.cpp:1259 +#: ../src/ui/dialog/clonetiler.cpp:1260 msgid " _Unclump " msgstr " _Ontklonteren " -#: ../src/ui/dialog/clonetiler.cpp:1260 +#: ../src/ui/dialog/clonetiler.cpp:1261 msgid "Spread out clones to reduce clumping; can be applied repeatedly" msgstr "De klonen verspreiden om ze te ontklonteren; kan herhaaldelijk worden toegepast" -#: ../src/ui/dialog/clonetiler.cpp:1266 +#: ../src/ui/dialog/clonetiler.cpp:1267 msgid " Re_move " msgstr " Ver_wijderen " -#: ../src/ui/dialog/clonetiler.cpp:1267 +#: ../src/ui/dialog/clonetiler.cpp:1268 msgid "Remove existing tiled clones of the selected object (siblings only)" msgstr "Verwijder bestaande getegelde klonen van het geselecteerde object" -#: ../src/ui/dialog/clonetiler.cpp:1283 +#: ../src/ui/dialog/clonetiler.cpp:1284 msgid " R_eset " msgstr " _Beginwaarden " #. TRANSLATORS: "change" is a noun here -#: ../src/ui/dialog/clonetiler.cpp:1285 +#: ../src/ui/dialog/clonetiler.cpp:1286 msgid "Reset all shifts, scales, rotates, opacity and color changes in the dialog to zero" msgstr "Alle verplaatsingen, vergrotingen, rotaties en kleurveranderingen in het venster terugzetten op nul" -#: ../src/ui/dialog/clonetiler.cpp:1358 +#: ../src/ui/dialog/clonetiler.cpp:1359 msgid "<small>Nothing selected.</small>" msgstr "<small>Niets geselecteerd.</small>" -#: ../src/ui/dialog/clonetiler.cpp:1364 +#: ../src/ui/dialog/clonetiler.cpp:1365 msgid "<small>More than one object selected.</small>" msgstr "<small>Meer dan één object geselecteerd.</small>" -#: ../src/ui/dialog/clonetiler.cpp:1371 +#: ../src/ui/dialog/clonetiler.cpp:1372 #, c-format msgid "<small>Object has <b>%d</b> tiled clones.</small>" msgstr "<small>Het object heeft <b>%d</b> getegelde klonen.</small>" -#: ../src/ui/dialog/clonetiler.cpp:1376 +#: ../src/ui/dialog/clonetiler.cpp:1377 msgid "<small>Object has no tiled clones.</small>" msgstr "<small>Het object heeft geen getegelde klonen.</small>" -#: ../src/ui/dialog/clonetiler.cpp:2096 +#: ../src/ui/dialog/clonetiler.cpp:2097 msgid "Select <b>one object</b> whose tiled clones to unclump." msgstr "Selecteer <b>één object</b> wiens klonen ontklonterd moeten worden." -#: ../src/ui/dialog/clonetiler.cpp:2118 +#: ../src/ui/dialog/clonetiler.cpp:2119 msgid "Unclump tiled clones" msgstr "Getegelde klonen ontklonteren" -#: ../src/ui/dialog/clonetiler.cpp:2147 +#: ../src/ui/dialog/clonetiler.cpp:2148 msgid "Select <b>one object</b> whose tiled clones to remove." msgstr "Selecteer <b>één object</b> waarvan de getegelde klonen verwijderd moeten worden." -#: ../src/ui/dialog/clonetiler.cpp:2170 +#: ../src/ui/dialog/clonetiler.cpp:2171 msgid "Delete tiled clones" msgstr "Verwijder getegelde klonen" -#: ../src/ui/dialog/clonetiler.cpp:2217 -#: ../src/selection-chemistry.cpp:2499 +#: ../src/ui/dialog/clonetiler.cpp:2218 +#: ../src/selection-chemistry.cpp:2487 msgid "Select an <b>object</b> to clone." msgstr "Selecteer een <b>object</b> om te klonen." -#: ../src/ui/dialog/clonetiler.cpp:2223 +#: ../src/ui/dialog/clonetiler.cpp:2224 msgid "If you want to clone several objects, <b>group</b> them and <b>clone the group</b>." msgstr "Als u meerdere objecten wilt klonen, <b>groepeer</b> ze dan en <b>kloon de groep</b>." -#: ../src/ui/dialog/clonetiler.cpp:2232 +#: ../src/ui/dialog/clonetiler.cpp:2233 msgid "<small>Creating tiled clones...</small>" msgstr "<small>Getegelde klonen maken...</small>" -#: ../src/ui/dialog/clonetiler.cpp:2637 +#: ../src/ui/dialog/clonetiler.cpp:2638 msgid "Create tiled clones" msgstr "Tegelen met klonen" -#: ../src/ui/dialog/clonetiler.cpp:2870 +#: ../src/ui/dialog/clonetiler.cpp:2871 msgid "<small>Per row:</small>" msgstr "<small>Per rij:</small>" -#: ../src/ui/dialog/clonetiler.cpp:2888 +#: ../src/ui/dialog/clonetiler.cpp:2889 msgid "<small>Per column:</small>" msgstr "<small>Per kolom:</small>" -#: ../src/ui/dialog/clonetiler.cpp:2896 +#: ../src/ui/dialog/clonetiler.cpp:2897 msgid "<small>Randomize:</small>" msgstr "<small>Willekeurig:</small>" -#: ../src/ui/dialog/export.cpp:145 -#: ../src/verbs.cpp:2732 +#: ../src/ui/dialog/export.cpp:151 +#: ../src/verbs.cpp:2791 msgid "_Page" msgstr "_Pagina" -#: ../src/ui/dialog/export.cpp:145 -#: ../src/verbs.cpp:2736 +#: ../src/ui/dialog/export.cpp:151 +#: ../src/verbs.cpp:2795 msgid "_Drawing" msgstr "_Tekening" -#: ../src/ui/dialog/export.cpp:145 -#: ../src/verbs.cpp:2738 +#: ../src/ui/dialog/export.cpp:151 +#: ../src/verbs.cpp:2797 msgid "_Selection" msgstr "_Selectie" -#: ../src/ui/dialog/export.cpp:145 +#: ../src/ui/dialog/export.cpp:151 msgid "_Custom" msgstr "_Aangepast" -#: ../src/ui/dialog/export.cpp:161 -#: ../src/widgets/measure-toolbar.cpp:115 -#: ../src/widgets/measure-toolbar.cpp:123 -#: ../share/extensions/gears.inx.h:6 +#: ../src/ui/dialog/export.cpp:167 +#: ../src/widgets/measure-toolbar.cpp:116 +#: ../src/widgets/measure-toolbar.cpp:124 +#: ../share/extensions/render_gears.inx.h:6 msgid "Units:" msgstr "Eenheden:" -#: ../src/ui/dialog/export.cpp:163 +#: ../src/ui/dialog/export.cpp:169 msgid "_Export As..." msgstr "_Exporteren als..." -#: ../src/ui/dialog/export.cpp:166 +#: ../src/ui/dialog/export.cpp:172 msgid "B_atch export all selected objects" msgstr "Alle _geselecteerde objecten apart exporteren" -#: ../src/ui/dialog/export.cpp:166 +#: ../src/ui/dialog/export.cpp:172 msgid "Export each selected object into its own PNG file, using export hints if any (caution, overwrites without asking!)" msgstr "Elk geselecteerd object naar zijn eigen PNG-bestand exporteren, door gebruik te maken van eventuele exporthints (waarschuwing: overschrijft zonder te vragen!)" -#: ../src/ui/dialog/export.cpp:168 +#: ../src/ui/dialog/export.cpp:174 msgid "Hide a_ll except selected" msgstr "Alles _verbergen behalve het geselecteerde" -#: ../src/ui/dialog/export.cpp:168 +#: ../src/ui/dialog/export.cpp:174 msgid "In the exported image, hide all objects except those that are selected" msgstr "In de geëxporteerde afbeelding, alle objecten verbergen behalve degene die geselecteerd zijn " -#: ../src/ui/dialog/export.cpp:169 +#: ../src/ui/dialog/export.cpp:175 msgid "Close when complete" msgstr "Deze dialoog sluiten indien gedaan" -#: ../src/ui/dialog/export.cpp:169 +#: ../src/ui/dialog/export.cpp:175 msgid "Once the export completes, close this dialog" msgstr "Dialoog sluiten bij beëindigen exporteren" -#: ../src/ui/dialog/export.cpp:171 +#: ../src/ui/dialog/export.cpp:177 msgid "_Export" msgstr "_Exporteren" -#: ../src/ui/dialog/export.cpp:189 +#: ../src/ui/dialog/export.cpp:195 msgid "<b>Export area</b>" msgstr "<b>Exportgebied</b>" -#: ../src/ui/dialog/export.cpp:225 +#: ../src/ui/dialog/export.cpp:234 msgid "_x0:" msgstr "_Links:" -#: ../src/ui/dialog/export.cpp:229 +#: ../src/ui/dialog/export.cpp:238 msgid "x_1:" msgstr "_Rechts:" -#: ../src/ui/dialog/export.cpp:233 +#: ../src/ui/dialog/export.cpp:242 msgid "Wid_th:" msgstr "Bree_dte:" -#: ../src/ui/dialog/export.cpp:237 +#: ../src/ui/dialog/export.cpp:246 msgid "_y0:" msgstr "_Onder:" -#: ../src/ui/dialog/export.cpp:241 +#: ../src/ui/dialog/export.cpp:250 msgid "y_1:" msgstr "Bo_ven:" -#: ../src/ui/dialog/export.cpp:245 +#: ../src/ui/dialog/export.cpp:254 msgid "Hei_ght:" msgstr "_Hoogte:" -#: ../src/ui/dialog/export.cpp:260 +#: ../src/ui/dialog/export.cpp:269 msgid "<b>Image size</b>" msgstr "<b>Afbeeldingsgrootte</b>" -#: ../src/ui/dialog/export.cpp:278 +#: ../src/ui/dialog/export.cpp:287 #: ../src/live_effects/lpe-bendpath.cpp:54 #: ../src/live_effects/lpe-patternalongpath.cpp:62 -#: ../src/ui/dialog/transformation.cpp:75 -#: ../src/ui/widget/page-sizer.cpp:238 +#: ../src/ui/dialog/transformation.cpp:80 +#: ../src/ui/widget/page-sizer.cpp:236 msgid "_Width:" msgstr "B_reedte:" -#: ../src/ui/dialog/export.cpp:278 -#: ../src/ui/dialog/export.cpp:289 +#: ../src/ui/dialog/export.cpp:287 +#: ../src/ui/dialog/export.cpp:298 msgid "pixels at" msgstr "beeldpunten met" -#: ../src/ui/dialog/export.cpp:284 +#: ../src/ui/dialog/export.cpp:293 msgid "dp_i" msgstr "pp_i" -#: ../src/ui/dialog/export.cpp:289 -#: ../src/ui/dialog/transformation.cpp:77 -#: ../src/ui/widget/page-sizer.cpp:239 +#: ../src/ui/dialog/export.cpp:298 +#: ../src/ui/dialog/transformation.cpp:82 +#: ../src/ui/widget/page-sizer.cpp:237 msgid "_Height:" msgstr "_Hoogte:" -#: ../src/ui/dialog/export.cpp:297 -#: ../src/ui/dialog/inkscape-preferences.cpp:1425 -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 +#: ../src/ui/dialog/export.cpp:306 +#: ../src/ui/dialog/inkscape-preferences.cpp:1436 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 +#: ../src/ui/dialog/inkscape-preferences.cpp:1451 msgid "dpi" msgstr "ppi" -#: ../src/ui/dialog/export.cpp:305 +#: ../src/ui/dialog/export.cpp:314 msgid "<b>_Filename</b>" msgstr "<b>Bestands_naam</b>" -#: ../src/ui/dialog/export.cpp:347 +#: ../src/ui/dialog/export.cpp:356 msgid "Export the bitmap file with these settings" msgstr "Naar een bitmapafbeelding exporteren met deze instellingen" -#: ../src/ui/dialog/export.cpp:601 +#: ../src/ui/dialog/export.cpp:607 #, c-format msgid "B_atch export %d selected object" msgid_plural "B_atch export %d selected objects" msgstr[0] "%d _geselecteerd object exporteren" msgstr[1] "%d _geselecteerde objecten achter elkaar exporteren" -#: ../src/ui/dialog/export.cpp:917 +#: ../src/ui/dialog/export.cpp:923 msgid "Export in progress" msgstr "Bezig met exporteren" -#: ../src/ui/dialog/export.cpp:1001 +#: ../src/ui/dialog/export.cpp:1013 msgid "No items selected." msgstr "Geen items geselecteerd." -#: ../src/ui/dialog/export.cpp:1005 -#: ../src/ui/dialog/export.cpp:1007 +#: ../src/ui/dialog/export.cpp:1017 +#: ../src/ui/dialog/export.cpp:1019 msgid "Exporting %1 files" msgstr "Exporteren van %1 bestanden" -#: ../src/ui/dialog/export.cpp:1047 -#: ../src/ui/dialog/export.cpp:1049 +#: ../src/ui/dialog/export.cpp:1059 +#: ../src/ui/dialog/export.cpp:1061 #, c-format msgid "Exporting file <b>%s</b>..." msgstr "Exporteren van bestand <b>%s</b>..." -#: ../src/ui/dialog/export.cpp:1058 -#: ../src/ui/dialog/export.cpp:1149 +#: ../src/ui/dialog/export.cpp:1070 +#: ../src/ui/dialog/export.cpp:1161 #, c-format msgid "Could not export to filename %s.\n" msgstr "Fout bij het exporteren naar bestand %s.\n" -#: ../src/ui/dialog/export.cpp:1061 +#: ../src/ui/dialog/export.cpp:1073 #, c-format msgid "Could not export to filename <b>%s</b>." msgstr "Fout bij het exporteren naar bestand <b>%s</b>." -#: ../src/ui/dialog/export.cpp:1076 +#: ../src/ui/dialog/export.cpp:1088 #, c-format msgid "Successfully exported <b>%d</b> files from <b>%d</b> selected items." msgstr "Succesvol <b>%d</b> bestanden van <b>%d</b> geselecteerde items geëxporteerd." -#: ../src/ui/dialog/export.cpp:1087 +#: ../src/ui/dialog/export.cpp:1099 msgid "You have to enter a filename." msgstr "U dient een bestandsnaam in te vullen." -#: ../src/ui/dialog/export.cpp:1088 +#: ../src/ui/dialog/export.cpp:1100 msgid "You have to enter a filename" msgstr "U dient een bestandsnaam in te vullen" -#: ../src/ui/dialog/export.cpp:1102 +#: ../src/ui/dialog/export.cpp:1114 msgid "The chosen area to be exported is invalid." msgstr "Het gekozen exporterengebied is ongeldig" -#: ../src/ui/dialog/export.cpp:1103 +#: ../src/ui/dialog/export.cpp:1115 msgid "The chosen area to be exported is invalid" msgstr "Het gekozen te exporteren gebied is ongeldig" -#: ../src/ui/dialog/export.cpp:1118 +#: ../src/ui/dialog/export.cpp:1130 #, c-format msgid "Directory %s does not exist or is not a directory.\n" msgstr "Map %s bestaat niet of is geen map.\n" #. TRANSLATORS: %1 will be the filename, %2 the width, and %3 the height of the image -#: ../src/ui/dialog/export.cpp:1132 -#: ../src/ui/dialog/export.cpp:1134 +#: ../src/ui/dialog/export.cpp:1144 +#: ../src/ui/dialog/export.cpp:1146 msgid "Exporting %1 (%2 x %3)" msgstr "Exporteren van %1 (%2 x %3)" -#: ../src/ui/dialog/export.cpp:1160 +#: ../src/ui/dialog/export.cpp:1172 #, c-format msgid "Drawing exported to <b>%s</b>." msgstr "Afbeelding geëxporteerd naar <b>%s</b>." -#: ../src/ui/dialog/export.cpp:1164 +#: ../src/ui/dialog/export.cpp:1176 msgid "Export aborted." msgstr "Export afgebroken." -#: ../src/ui/dialog/export.cpp:1282 -#: ../src/ui/dialog/export.cpp:1316 -#: ../src/shortcuts.cpp:336 +#: ../src/ui/dialog/export.cpp:1294 +#: ../src/ui/dialog/export.cpp:1328 +#: ../src/shortcuts.cpp:337 msgid "Select a filename for exporting" msgstr "Selecteer een bestandsnaam om naar te exporteren" @@ -4434,7 +4432,7 @@ msgid "_Font" msgstr "_Lettertype" #: ../src/ui/dialog/text-edit.cpp:72 -#: ../src/menus-skeleton.h:253 +#: ../src/menus-skeleton.h:248 #: ../src/ui/dialog/find.cpp:77 msgid "_Text" msgstr "_Tekst" @@ -4449,36 +4447,36 @@ msgstr "AaBbCcIiMmPpQqWw(12369)€£$!?.;/@" #. Align buttons #: ../src/ui/dialog/text-edit.cpp:97 -#: ../src/widgets/text-toolbar.cpp:1358 -#: ../src/widgets/text-toolbar.cpp:1359 +#: ../src/widgets/text-toolbar.cpp:1349 +#: ../src/widgets/text-toolbar.cpp:1350 msgid "Align left" msgstr "Links uitlijnen" #: ../src/ui/dialog/text-edit.cpp:98 -#: ../src/widgets/text-toolbar.cpp:1366 -#: ../src/widgets/text-toolbar.cpp:1367 +#: ../src/widgets/text-toolbar.cpp:1357 +#: ../src/widgets/text-toolbar.cpp:1358 msgid "Align center" msgstr "Centreren" #: ../src/ui/dialog/text-edit.cpp:99 -#: ../src/widgets/text-toolbar.cpp:1374 -#: ../src/widgets/text-toolbar.cpp:1375 +#: ../src/widgets/text-toolbar.cpp:1365 +#: ../src/widgets/text-toolbar.cpp:1366 msgid "Align right" msgstr "Rechts uitlijnen" #: ../src/ui/dialog/text-edit.cpp:100 -#: ../src/widgets/text-toolbar.cpp:1383 +#: ../src/widgets/text-toolbar.cpp:1374 msgid "Justify (only flowed text)" msgstr "Uitvullen (enkel ingekaderde tekst)" #. Direction buttons #: ../src/ui/dialog/text-edit.cpp:109 -#: ../src/widgets/text-toolbar.cpp:1418 +#: ../src/widgets/text-toolbar.cpp:1409 msgid "Horizontal text" msgstr "Horizontale tekst" #: ../src/ui/dialog/text-edit.cpp:110 -#: ../src/widgets/text-toolbar.cpp:1425 +#: ../src/widgets/text-toolbar.cpp:1416 msgid "Vertical text" msgstr "Verticale tekst" @@ -4488,13 +4486,12 @@ msgid "Spacing between lines (percent of font size)" msgstr "Ruimte tussen lijnen (percentage van lettertypegrootte)" #: ../src/ui/dialog/text-edit.cpp:147 -#, fuzzy msgid "Text path offset" -msgstr "Verplaatsing magenta" +msgstr "Verplaatsing tekstpad" #: ../src/ui/dialog/text-edit.cpp:588 #: ../src/ui/dialog/text-edit.cpp:662 -#: ../src/text-context.cpp:1518 +#: ../src/text-context.cpp:1519 msgid "Set text style" msgstr "Tekststijl instellen" @@ -4610,164 +4607,164 @@ msgstr "Item verwijderen" msgid "Change attribute" msgstr "Attribuut instellen" -#: ../src/display/canvas-axonomgrid.cpp:365 -#: ../src/display/canvas-grid.cpp:742 +#: ../src/display/canvas-axonomgrid.cpp:316 +#: ../src/display/canvas-grid.cpp:693 msgid "Grid _units:" msgstr "Raster_eenheid:" -#: ../src/display/canvas-axonomgrid.cpp:367 -#: ../src/display/canvas-grid.cpp:744 +#: ../src/display/canvas-axonomgrid.cpp:318 +#: ../src/display/canvas-grid.cpp:695 msgid "_Origin X:" msgstr "X-_oorsprong:" -#: ../src/display/canvas-axonomgrid.cpp:367 -#: ../src/display/canvas-grid.cpp:744 +#: ../src/display/canvas-axonomgrid.cpp:318 +#: ../src/display/canvas-grid.cpp:695 #: ../src/ui/dialog/inkscape-preferences.cpp:735 #: ../src/ui/dialog/inkscape-preferences.cpp:760 msgid "X coordinate of grid origin" msgstr "X-coördinaat vanaf de rasteroorsprong" -#: ../src/display/canvas-axonomgrid.cpp:369 -#: ../src/display/canvas-grid.cpp:746 +#: ../src/display/canvas-axonomgrid.cpp:320 +#: ../src/display/canvas-grid.cpp:697 msgid "O_rigin Y:" msgstr "Y-oo_rsprong:" -#: ../src/display/canvas-axonomgrid.cpp:369 -#: ../src/display/canvas-grid.cpp:746 +#: ../src/display/canvas-axonomgrid.cpp:320 +#: ../src/display/canvas-grid.cpp:697 #: ../src/ui/dialog/inkscape-preferences.cpp:736 #: ../src/ui/dialog/inkscape-preferences.cpp:761 msgid "Y coordinate of grid origin" msgstr "Y-coördinaat vanaf de rasteroorsprong" -#: ../src/display/canvas-axonomgrid.cpp:371 -#: ../src/display/canvas-grid.cpp:750 +#: ../src/display/canvas-axonomgrid.cpp:322 +#: ../src/display/canvas-grid.cpp:701 msgid "Spacing _Y:" msgstr "_Y-tussenafstand:" -#: ../src/display/canvas-axonomgrid.cpp:371 +#: ../src/display/canvas-axonomgrid.cpp:322 #: ../src/ui/dialog/inkscape-preferences.cpp:764 msgid "Base length of z-axis" msgstr "Basislengte van z-as" -#: ../src/display/canvas-axonomgrid.cpp:373 +#: ../src/display/canvas-axonomgrid.cpp:324 #: ../src/ui/dialog/inkscape-preferences.cpp:767 -#: ../src/widgets/box3d-toolbar.cpp:320 +#: ../src/widgets/box3d-toolbar.cpp:315 msgid "Angle X:" msgstr "X-hoek:" -#: ../src/display/canvas-axonomgrid.cpp:373 +#: ../src/display/canvas-axonomgrid.cpp:324 #: ../src/ui/dialog/inkscape-preferences.cpp:767 msgid "Angle of x-axis" msgstr "Hoek van de x-as" -#: ../src/display/canvas-axonomgrid.cpp:375 +#: ../src/display/canvas-axonomgrid.cpp:326 #: ../src/ui/dialog/inkscape-preferences.cpp:768 -#: ../src/widgets/box3d-toolbar.cpp:399 +#: ../src/widgets/box3d-toolbar.cpp:394 msgid "Angle Z:" msgstr "Z-hoek:" -#: ../src/display/canvas-axonomgrid.cpp:375 +#: ../src/display/canvas-axonomgrid.cpp:326 #: ../src/ui/dialog/inkscape-preferences.cpp:768 msgid "Angle of z-axis" msgstr "Hoek van de z-as" -#: ../src/display/canvas-axonomgrid.cpp:379 -#: ../src/display/canvas-grid.cpp:754 +#: ../src/display/canvas-axonomgrid.cpp:330 +#: ../src/display/canvas-grid.cpp:705 msgid "Minor grid line _color:" msgstr "Kleur _nevenrasterlijnen:" -#: ../src/display/canvas-axonomgrid.cpp:379 -#: ../src/display/canvas-grid.cpp:754 +#: ../src/display/canvas-axonomgrid.cpp:330 +#: ../src/display/canvas-grid.cpp:705 #: ../src/ui/dialog/inkscape-preferences.cpp:719 msgid "Minor grid line color" msgstr "Kleur nevenrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:379 -#: ../src/display/canvas-grid.cpp:754 +#: ../src/display/canvas-axonomgrid.cpp:330 +#: ../src/display/canvas-grid.cpp:705 msgid "Color of the minor grid lines" msgstr "Kleur nevenrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:384 -#: ../src/display/canvas-grid.cpp:759 +#: ../src/display/canvas-axonomgrid.cpp:335 +#: ../src/display/canvas-grid.cpp:710 msgid "Ma_jor grid line color:" msgstr "Kleur _hoofdrasterlijnen:" -#: ../src/display/canvas-axonomgrid.cpp:384 -#: ../src/display/canvas-grid.cpp:759 +#: ../src/display/canvas-axonomgrid.cpp:335 +#: ../src/display/canvas-grid.cpp:710 #: ../src/ui/dialog/inkscape-preferences.cpp:721 msgid "Major grid line color" msgstr "Kleur hoofdrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:385 -#: ../src/display/canvas-grid.cpp:760 +#: ../src/display/canvas-axonomgrid.cpp:336 +#: ../src/display/canvas-grid.cpp:711 msgid "Color of the major (highlighted) grid lines" msgstr "Kleur van de (gemarkeerde) hoofdrasterlijnen" -#: ../src/display/canvas-axonomgrid.cpp:389 -#: ../src/display/canvas-grid.cpp:764 +#: ../src/display/canvas-axonomgrid.cpp:340 +#: ../src/display/canvas-grid.cpp:715 msgid "_Major grid line every:" msgstr "Hoofdr_asterlijn elke:" -#: ../src/display/canvas-axonomgrid.cpp:389 -#: ../src/display/canvas-grid.cpp:764 +#: ../src/display/canvas-axonomgrid.cpp:340 +#: ../src/display/canvas-grid.cpp:715 msgid "lines" msgstr "rasterlijnen" -#: ../src/display/canvas-grid.cpp:58 +#: ../src/display/canvas-grid.cpp:63 msgid "Rectangular grid" msgstr "Rechthoekig raster" -#: ../src/display/canvas-grid.cpp:59 +#: ../src/display/canvas-grid.cpp:64 msgid "Axonometric grid" msgstr "Axonometrisch raster" -#: ../src/display/canvas-grid.cpp:270 +#: ../src/display/canvas-grid.cpp:275 msgid "Create new grid" msgstr "Nieuw raster maken" -#: ../src/display/canvas-grid.cpp:336 +#: ../src/display/canvas-grid.cpp:341 msgid "_Enabled" msgstr "_Actief" -#: ../src/display/canvas-grid.cpp:337 +#: ../src/display/canvas-grid.cpp:342 msgid "Determines whether to snap to this grid or not. Can be 'on' for invisible grids." msgstr "Bepaalt of er aan dit raster gekleefd moet worden of niet. Kan ingeschakeld zijn voor onzichtbare rasters." -#: ../src/display/canvas-grid.cpp:341 +#: ../src/display/canvas-grid.cpp:346 msgid "Snap to visible _grid lines only" msgstr "Alleen aan zichtbare _rasterlijnen kleven" -#: ../src/display/canvas-grid.cpp:342 +#: ../src/display/canvas-grid.cpp:347 msgid "When zoomed out, not all grid lines will be displayed. Only the visible ones will be snapped to" msgstr "Bij uitzoomen worden niet alle rasterlijnen getoond. Er wordt alleen gekleefd aan de zichtbare rasterlijnen" -#: ../src/display/canvas-grid.cpp:346 +#: ../src/display/canvas-grid.cpp:351 msgid "_Visible" msgstr "_Zichtbaar" -#: ../src/display/canvas-grid.cpp:347 +#: ../src/display/canvas-grid.cpp:352 msgid "Determines whether the grid is displayed or not. Objects are still snapped to invisible grids." msgstr "Bepaalt of het raster weergegven moet worden of niet. Objecten worden ook aan onzichtbare rasters gekleefd." -#: ../src/display/canvas-grid.cpp:748 +#: ../src/display/canvas-grid.cpp:699 msgid "Spacing _X:" msgstr "_X-tussenafstand:" -#: ../src/display/canvas-grid.cpp:748 +#: ../src/display/canvas-grid.cpp:699 #: ../src/ui/dialog/inkscape-preferences.cpp:741 msgid "Distance between vertical grid lines" msgstr "Afstand tussen verticale rasterlijnen" -#: ../src/display/canvas-grid.cpp:750 +#: ../src/display/canvas-grid.cpp:701 #: ../src/ui/dialog/inkscape-preferences.cpp:742 msgid "Distance between horizontal grid lines" msgstr "Afstand tussen horizontale rasterlijnen" -#: ../src/display/canvas-grid.cpp:781 +#: ../src/display/canvas-grid.cpp:732 msgid "_Show dots instead of lines" msgstr "_Punten weergeven in plaats van lijnen" -#: ../src/display/canvas-grid.cpp:782 +#: ../src/display/canvas-grid.cpp:733 msgid "If set, displays dots at gridpoints instead of gridlines" msgstr "Indien aangevinkt, worden punten op de rasterkruispunten weergegeven in plaats van rasterlijnen." @@ -4920,12 +4917,12 @@ msgid "Bounding box side midpoint" msgstr "Midden rand omvattend vak" #: ../src/display/snap-indicator.cpp:194 -#: ../src/ui/tool/node.cpp:1310 +#: ../src/ui/tool/node.cpp:1316 msgid "Smooth node" msgstr "Afgevlakt knooppunt" #: ../src/display/snap-indicator.cpp:197 -#: ../src/ui/tool/node.cpp:1309 +#: ../src/ui/tool/node.cpp:1315 msgid "Cusp node" msgstr "Hoekig knooppunt" @@ -4990,7 +4987,7 @@ msgstr "Nieuw document %d" msgid "Memory document %1" msgstr "Omvang van document in het geheugen %1" -#: ../src/document.cpp:707 +#: ../src/document.cpp:713 #, c-format msgid "Unnamed document %d" msgstr "Naamloos document %d" @@ -5081,7 +5078,7 @@ msgstr "<b>Wissen</b> met de gom" msgid "Draw eraser stroke" msgstr "Wissen met de gom" -#: ../src/event-context.cpp:671 +#: ../src/event-context.cpp:668 msgid "<b>Space+mouse move</b> to pan canvas" msgstr "<b>Spatie indrukken + muis verplaatsen</b> om het canvas te verschuiven" @@ -5092,13 +5089,13 @@ msgstr "[Onveranderd]" #. Edit #: ../src/event-log.cpp:275 #: ../src/event-log.cpp:278 -#: ../src/verbs.cpp:2324 +#: ../src/verbs.cpp:2383 msgid "_Undo" msgstr "_Ongedaan maken" #: ../src/event-log.cpp:285 #: ../src/event-log.cpp:289 -#: ../src/verbs.cpp:2326 +#: ../src/verbs.cpp:2385 msgid "_Redo" msgstr "Opn_ieuw" @@ -5127,7 +5124,7 @@ msgid " (No preferences)" msgstr " (Geen voorkeuren)" #: ../src/extension/effect.h:70 -#: ../src/verbs.cpp:2097 +#: ../src/verbs.cpp:2156 msgid "Extensions" msgstr "Uitbreidingen" @@ -5146,81 +5143,81 @@ msgstr "" msgid "Show dialog on startup" msgstr "Dit venster tonen bij het opstarten" -#: ../src/extension/execution-env.cpp:136 +#: ../src/extension/execution-env.cpp:144 #, c-format msgid "'%s' working, please wait..." msgstr "'%s' werkt, even geduld..." #. static int i = 0; #. std::cout << "Checking module[" << i++ << "]: " << name << std::endl; -#: ../src/extension/extension.cpp:259 +#: ../src/extension/extension.cpp:263 msgid " This is caused by an improper .inx file for this extension. An improper .inx file could have been caused by a faulty installation of Inkscape." msgstr " Dit wordt veroorzaakt door een foutief .inx-bestand voor deze uitbreiding. Een foutief .inx-bestand kan worden veroorzaakt door een fout tijdens de installatie van Inkscape." -#: ../src/extension/extension.cpp:262 +#: ../src/extension/extension.cpp:266 msgid "an ID was not defined for it." msgstr "er geen ID voor gedefinieerd is." -#: ../src/extension/extension.cpp:266 +#: ../src/extension/extension.cpp:270 msgid "there was no name defined for it." msgstr "er geen naam voor gedefinieerd is." -#: ../src/extension/extension.cpp:270 +#: ../src/extension/extension.cpp:274 msgid "the XML description of it got lost." msgstr "de XML-beschrijving ervoor verdwenen is." -#: ../src/extension/extension.cpp:274 +#: ../src/extension/extension.cpp:278 msgid "no implementation was defined for the extension." msgstr "er geen implementatie is gedefinieerd voor deze uitbreiding." #. std::cout << "Failed: " << *(_deps[i]) << std::endl; -#: ../src/extension/extension.cpp:281 +#: ../src/extension/extension.cpp:285 msgid "a dependency was not met." msgstr "er niet voldaan was aan een afhankelijkheid." -#: ../src/extension/extension.cpp:301 +#: ../src/extension/extension.cpp:305 msgid "Extension \"" msgstr "Uitbreiding \"" -#: ../src/extension/extension.cpp:301 +#: ../src/extension/extension.cpp:305 msgid "\" failed to load because " msgstr "\" kon niet worden geladen omdat " -#: ../src/extension/extension.cpp:628 +#: ../src/extension/extension.cpp:654 #, c-format msgid "Could not create extension error log file '%s'" msgstr "Het fouten-logboekbestand '%s' voor uitbreidingen kon niet worden aangemaakt" -#: ../src/extension/extension.cpp:736 +#: ../src/extension/extension.cpp:762 #: ../share/extensions/webslicer_create_rect.inx.h:2 msgid "Name:" msgstr "Naam:" -#: ../src/extension/extension.cpp:737 +#: ../src/extension/extension.cpp:763 msgid "ID:" msgstr "ID:" -#: ../src/extension/extension.cpp:738 +#: ../src/extension/extension.cpp:764 msgid "State:" msgstr "Status:" -#: ../src/extension/extension.cpp:738 +#: ../src/extension/extension.cpp:764 msgid "Loaded" msgstr "Geladen" -#: ../src/extension/extension.cpp:738 +#: ../src/extension/extension.cpp:764 msgid "Unloaded" msgstr "Niet-geladen" -#: ../src/extension/extension.cpp:738 +#: ../src/extension/extension.cpp:764 msgid "Deactivated" msgstr "Uitgeschakeld" -#: ../src/extension/extension.cpp:778 +#: ../src/extension/extension.cpp:804 msgid "Currently there is no help available for this Extension. Please look on the Inkscape website or ask on the mailing lists if you have questions regarding this extension." msgstr "Er is momenteel geen help beschikbaar voor deze uitbreiding. Kijk aub. op de Inkscape website of vraag op de mailinglijsten indien je vragen hebt over deze uitbreiding." -#: ../src/extension/implementation/script.cpp:1033 +#: ../src/extension/implementation/script.cpp:1037 msgid "Inkscape has received additional data from the script executed. The script did not return an error, but this may indicate the results will not be as expected." msgstr "Inkscape heeft extra informatie ontvangen van het script dat was aangeroepen. Het script gaf geen foutmelding, maar dit zou kunnen betekenen dat de resultaten anders zijn dan verwacht." @@ -5241,13 +5238,13 @@ msgstr "Aanpassende drempelwaarde" #: ../src/extension/internal/bitmap/adaptiveThreshold.cpp:41 #: ../src/extension/internal/bitmap/raise.cpp:42 #: ../src/extension/internal/bitmap/sample.cpp:41 -#: ../src/extension/internal/bluredge.cpp:137 +#: ../src/extension/internal/bluredge.cpp:138 #: ../src/ui/dialog/object-attributes.cpp:68 #: ../src/ui/dialog/object-attributes.cpp:76 -#: ../src/widgets/calligraphy-toolbar.cpp:451 -#: ../src/widgets/erasor-toolbar.cpp:149 -#: ../src/widgets/spray-toolbar.cpp:132 -#: ../src/widgets/tweak-toolbar.cpp:146 +#: ../src/widgets/calligraphy-toolbar.cpp:447 +#: ../src/widgets/eraser-toolbar.cpp:145 +#: ../src/widgets/spray-toolbar.cpp:128 +#: ../src/widgets/tweak-toolbar.cpp:142 #: ../share/extensions/foldablebox.inx.h:2 msgid "Width:" msgstr "Breedte:" @@ -5322,9 +5319,9 @@ msgstr "Ruis toevoegen" #: ../src/extension/internal/filter/color.h:1585 #: ../src/extension/internal/filter/distort.h:69 #: ../src/extension/internal/filter/morphology.h:60 -#: ../src/rdf.cpp:241 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2613 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2692 +#: ../src/rdf.cpp:244 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2626 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2705 #: ../src/ui/dialog/object-attributes.cpp:49 #: ../share/extensions/jessyInk_effects.inx.h:5 #: ../share/extensions/jessyInk_export.inx.h:3 @@ -5376,7 +5373,7 @@ msgstr "Vervagen" #: ../src/extension/internal/bitmap/oilPaint.cpp:39 #: ../src/extension/internal/bitmap/sharpen.cpp:40 #: ../src/extension/internal/bitmap/unsharpmask.cpp:43 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2670 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2683 msgid "Radius:" msgstr "Straal:" @@ -5516,7 +5513,7 @@ msgstr "Palet verdraaien" #: ../src/extension/internal/bitmap/cycleColormap.cpp:39 #: ../src/extension/internal/bitmap/spread.cpp:39 #: ../src/extension/internal/bitmap/unsharpmask.cpp:45 -#: ../src/widgets/spray-toolbar.cpp:224 +#: ../src/widgets/spray-toolbar.cpp:220 msgid "Amount:" msgstr "Aantal:" @@ -5680,8 +5677,8 @@ msgid "Stylize selected bitmap(s) so that they appear to be painted with oils" msgstr "Geselecteerde bitmap(s) stileren, zodat ze eruit zien als een olieverfschilderij" #: ../src/extension/internal/bitmap/opacity.cpp:40 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2660 -#: ../src/widgets/dropper-toolbar.cpp:111 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2673 +#: ../src/widgets/dropper-toolbar.cpp:107 msgid "Opacity:" msgstr "Ondoorzichtigheid:" @@ -5816,23 +5813,23 @@ msgstr "Golflengte:" msgid "Alter selected bitmap(s) along sine wave" msgstr "Geselecteerde bitmap(s) vervormen met een sinusgolf" -#: ../src/extension/internal/bluredge.cpp:135 +#: ../src/extension/internal/bluredge.cpp:136 msgid "Inset/Outset Halo" msgstr "Halo versmallen/verbreden" -#: ../src/extension/internal/bluredge.cpp:137 +#: ../src/extension/internal/bluredge.cpp:138 msgid "Width in px of the halo" msgstr "Breedte van de halo in pixels" -#: ../src/extension/internal/bluredge.cpp:138 +#: ../src/extension/internal/bluredge.cpp:139 msgid "Number of steps:" msgstr "Aantal stappen:" -#: ../src/extension/internal/bluredge.cpp:138 +#: ../src/extension/internal/bluredge.cpp:139 msgid "Number of inset/outset copies of the object to make" msgstr "Het aantal te maken versmallings-/verbredingskopieën van het object" -#: ../src/extension/internal/bluredge.cpp:142 +#: ../src/extension/internal/bluredge.cpp:143 #: ../share/extensions/extrude.inx.h:5 #: ../share/extensions/generate_voronoi.inx.h:9 #: ../share/extensions/interp.inx.h:7 @@ -5843,98 +5840,103 @@ msgstr "Het aantal te maken versmallings-/verbredingskopieën van het object" msgid "Generate from Path" msgstr "Genereren uit pad" -#: ../src/extension/internal/cairo-ps-out.cpp:309 +#: ../src/extension/internal/cairo-ps-out.cpp:327 #: ../share/extensions/ps_input.inx.h:3 msgid "PostScript" msgstr "PostScript" -#: ../src/extension/internal/cairo-ps-out.cpp:311 -#: ../src/extension/internal/cairo-ps-out.cpp:351 +#: ../src/extension/internal/cairo-ps-out.cpp:329 +#: ../src/extension/internal/cairo-ps-out.cpp:370 msgid "Restrict to PS level:" msgstr "PS-niveau beperken tot:" -#: ../src/extension/internal/cairo-ps-out.cpp:312 -#: ../src/extension/internal/cairo-ps-out.cpp:352 +#: ../src/extension/internal/cairo-ps-out.cpp:330 +#: ../src/extension/internal/cairo-ps-out.cpp:371 msgid "PostScript level 3" msgstr "PostScript niveau 3" -#: ../src/extension/internal/cairo-ps-out.cpp:314 -#: ../src/extension/internal/cairo-ps-out.cpp:354 +#: ../src/extension/internal/cairo-ps-out.cpp:332 +#: ../src/extension/internal/cairo-ps-out.cpp:373 msgid "PostScript level 2" msgstr "PostScript niveau 2" -#: ../src/extension/internal/cairo-ps-out.cpp:317 -#: ../src/extension/internal/cairo-ps-out.cpp:357 +#: ../src/extension/internal/cairo-ps-out.cpp:335 +#: ../src/extension/internal/cairo-ps-out.cpp:376 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:250 -#: ../src/extension/internal/emf-win32-inout.cpp:2553 +#: ../src/extension/internal/emf-win32-inout.cpp:2557 msgid "Convert texts to paths" msgstr "Tekst naar paden omzetten" -#: ../src/extension/internal/cairo-ps-out.cpp:318 +#: ../src/extension/internal/cairo-ps-out.cpp:336 msgid "PS+LaTeX: Omit text in PS, and create LaTeX file" msgstr "PS+LaTeX: tekst in PS negeren en LaTeX-bestand maken" -#: ../src/extension/internal/cairo-ps-out.cpp:319 -#: ../src/extension/internal/cairo-ps-out.cpp:359 +#: ../src/extension/internal/cairo-ps-out.cpp:337 +#: ../src/extension/internal/cairo-ps-out.cpp:378 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:252 msgid "Rasterize filter effects" msgstr "SVG-filtereffecten rasteriseren" -#: ../src/extension/internal/cairo-ps-out.cpp:320 -#: ../src/extension/internal/cairo-ps-out.cpp:360 +#: ../src/extension/internal/cairo-ps-out.cpp:338 +#: ../src/extension/internal/cairo-ps-out.cpp:379 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:253 msgid "Resolution for rasterization (dpi):" msgstr "Resolutie voor rasteriseren (ppi):" # XXX Waar wordt dit gebruikt? -#: ../src/extension/internal/cairo-ps-out.cpp:321 -#: ../src/extension/internal/cairo-ps-out.cpp:361 +#: ../src/extension/internal/cairo-ps-out.cpp:339 +#: ../src/extension/internal/cairo-ps-out.cpp:380 msgid "Output page size" msgstr "Paginagrootte" # XXX Waar wordt dit gebruikt? -#: ../src/extension/internal/cairo-ps-out.cpp:322 -#: ../src/extension/internal/cairo-ps-out.cpp:362 +#: ../src/extension/internal/cairo-ps-out.cpp:340 +#: ../src/extension/internal/cairo-ps-out.cpp:381 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:255 msgid "Use document's page size" msgstr "Paginagrootte document gebruiken" -#: ../src/extension/internal/cairo-ps-out.cpp:323 -#: ../src/extension/internal/cairo-ps-out.cpp:363 +#: ../src/extension/internal/cairo-ps-out.cpp:341 +#: ../src/extension/internal/cairo-ps-out.cpp:382 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:256 msgid "Use exported object's size" msgstr "Objectgrootte gebruiken" -#: ../src/extension/internal/cairo-ps-out.cpp:325 -#: ../src/extension/internal/cairo-ps-out.cpp:365 +#: ../src/extension/internal/cairo-ps-out.cpp:343 +#: ../src/extension/internal/cairo-ps-out.cpp:384 +msgid "Bleed/margin (mm)" +msgstr "Overschot/marge (mm)" + +#: ../src/extension/internal/cairo-ps-out.cpp:344 +#: ../src/extension/internal/cairo-ps-out.cpp:385 #: ../src/extension/internal/cairo-renderer-pdf-out.cpp:259 msgid "Limit export to the object with ID:" msgstr "Export limiteren tot het object met ID:" -#: ../src/extension/internal/cairo-ps-out.cpp:329 +#: ../src/extension/internal/cairo-ps-out.cpp:348 #: ../share/extensions/ps_input.inx.h:2 msgid "PostScript (*.ps)" msgstr "PostScript (*.ps)" -#: ../src/extension/internal/cairo-ps-out.cpp:330 +#: ../src/extension/internal/cairo-ps-out.cpp:349 msgid "PostScript File" msgstr "Postscript-bestand" -#: ../src/extension/internal/cairo-ps-out.cpp:349 +#: ../src/extension/internal/cairo-ps-out.cpp:368 #: ../share/extensions/eps_input.inx.h:3 msgid "Encapsulated PostScript" msgstr "Encapsulated Postscript" -#: ../src/extension/internal/cairo-ps-out.cpp:358 +#: ../src/extension/internal/cairo-ps-out.cpp:377 msgid "EPS+LaTeX: Omit text in EPS, and create LaTeX file" msgstr "EPS+LaTeX: tekst in EPS negeren en LaTeX-bestand maken" -#: ../src/extension/internal/cairo-ps-out.cpp:369 +#: ../src/extension/internal/cairo-ps-out.cpp:389 #: ../share/extensions/eps_input.inx.h:2 msgid "Encapsulated PostScript (*.eps)" msgstr "Encapsulated Postscript (*.eps)" -#: ../src/extension/internal/cairo-ps-out.cpp:370 +#: ../src/extension/internal/cairo-ps-out.cpp:390 msgid "Encapsulated PostScript File" msgstr "Encapsulated Postscript File" @@ -6034,39 +6036,39 @@ msgstr "Corel DRAW Presentation uitwisselingsbestanden (*.cmx)" msgid "Open presentation exchange files saved in Corel DRAW" msgstr "Open Presentation uitwisselingsbestanden opgeslagen met Corel DRAW" -#: ../src/extension/internal/emf-win32-inout.cpp:2523 +#: ../src/extension/internal/emf-win32-inout.cpp:2527 msgid "EMF Input" msgstr "EMF-invoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2528 +#: ../src/extension/internal/emf-win32-inout.cpp:2532 msgid "Enhanced Metafiles (*.emf)" msgstr "Enhanced Metafiles (*.emf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2529 +#: ../src/extension/internal/emf-win32-inout.cpp:2533 msgid "Enhanced Metafiles" msgstr "Enhanced Metafiles" -#: ../src/extension/internal/emf-win32-inout.cpp:2537 +#: ../src/extension/internal/emf-win32-inout.cpp:2541 msgid "WMF Input" msgstr "WMF-invoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2542 +#: ../src/extension/internal/emf-win32-inout.cpp:2546 msgid "Windows Metafiles (*.wmf)" msgstr "Windows Metafiles (*.wmf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2543 +#: ../src/extension/internal/emf-win32-inout.cpp:2547 msgid "Windows Metafiles" msgstr "Windows Metafiles" -#: ../src/extension/internal/emf-win32-inout.cpp:2551 +#: ../src/extension/internal/emf-win32-inout.cpp:2555 msgid "EMF Output" msgstr "EMF-uitvoer" -#: ../src/extension/internal/emf-win32-inout.cpp:2557 +#: ../src/extension/internal/emf-win32-inout.cpp:2561 msgid "Enhanced Metafile (*.emf)" msgstr "Enhanced Metafile (*.emf)" -#: ../src/extension/internal/emf-win32-inout.cpp:2558 +#: ../src/extension/internal/emf-win32-inout.cpp:2562 msgid "Enhanced Metafile" msgstr "Enhanced Metafile" @@ -6335,7 +6337,7 @@ msgstr "Erosie::" #: ../src/extension/internal/filter/blurs.h:336 #: ../src/extension/internal/filter/color.h:1205 #: ../src/extension/internal/filter/color.h:1317 -#: ../src/ui/dialog/document-properties.cpp:108 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Background color" msgstr "Achtergrondkleur" @@ -6400,8 +6402,8 @@ msgstr "Bron reliëf" #: ../src/extension/internal/filter/color.h:821 #: ../src/extension/internal/filter/transparency.h:132 #: ../src/filter-enums.cpp:100 -#: ../src/flood-context.cpp:228 -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/flood-context.cpp:227 +#: ../src/widgets/sp-color-icc-selector.cpp:355 #: ../src/widgets/sp-color-scales.cpp:429 #: ../src/widgets/sp-color-scales.cpp:430 msgid "Red" @@ -6414,8 +6416,8 @@ msgstr "Rood" #: ../src/extension/internal/filter/color.h:822 #: ../src/extension/internal/filter/transparency.h:133 #: ../src/filter-enums.cpp:101 -#: ../src/flood-context.cpp:229 -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/flood-context.cpp:228 +#: ../src/widgets/sp-color-icc-selector.cpp:356 #: ../src/widgets/sp-color-scales.cpp:432 #: ../src/widgets/sp-color-scales.cpp:433 msgid "Green" @@ -6428,8 +6430,8 @@ msgstr "Groen" #: ../src/extension/internal/filter/color.h:823 #: ../src/extension/internal/filter/transparency.h:134 #: ../src/filter-enums.cpp:102 -#: ../src/flood-context.cpp:230 -#: ../src/widgets/sp-color-icc-selector.cpp:228 +#: ../src/flood-context.cpp:229 +#: ../src/widgets/sp-color-icc-selector.cpp:357 #: ../src/widgets/sp-color-scales.cpp:435 #: ../src/widgets/sp-color-scales.cpp:436 msgid "Blue" @@ -6455,7 +6457,7 @@ msgstr "Diffuus" #: ../src/extension/internal/filter/bumps.h:329 #: ../src/libgdl/gdl-dock-placeholder.c:175 #: ../src/libgdl/gdl-dock.c:199 -#: ../src/widgets/rect-toolbar.cpp:332 +#: ../src/widgets/rect-toolbar.cpp:334 #: ../share/extensions/interp_att_g.inx.h:11 msgid "Height" msgstr "Hoogte" @@ -6468,11 +6470,11 @@ msgstr "Hoogte" #: ../src/extension/internal/filter/paint.h:86 #: ../src/extension/internal/filter/paint.h:592 #: ../src/extension/internal/filter/paint.h:707 -#: ../src/flood-context.cpp:233 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/flood-context.cpp:232 +#: ../src/widgets/sp-color-icc-selector.cpp:366 #: ../src/widgets/sp-color-scales.cpp:461 #: ../src/widgets/sp-color-scales.cpp:462 -#: ../src/widgets/tweak-toolbar.cpp:336 +#: ../src/widgets/tweak-toolbar.cpp:332 #: ../share/extensions/color_randomize.inx.h:5 msgid "Lightness" msgstr "Lichtheid" @@ -6495,7 +6497,6 @@ msgid "Distant" msgstr "Veraf" #: ../src/extension/internal/filter/bumps.h:106 -#: ../src/helper/units.cpp:38 #: ../src/ui/dialog/inkscape-preferences.cpp:451 msgid "Point" msgstr "Punt" @@ -6587,7 +6588,7 @@ msgstr "Achtergrond:" #: ../src/extension/internal/filter/bumps.h:322 #: ../src/extension/internal/filter/transparency.h:57 #: ../src/filter-enums.cpp:29 -#: ../src/selection-describer.cpp:55 +#: ../src/selection-describer.cpp:57 msgid "Image" msgstr "Afbeelding" @@ -6671,13 +6672,13 @@ msgstr "Kleur per kanaal" #: ../src/extension/internal/filter/color.h:156 #: ../src/extension/internal/filter/color.h:257 #: ../src/extension/internal/filter/paint.h:87 -#: ../src/flood-context.cpp:232 -#: ../src/ui/dialog/inkscape-preferences.cpp:937 -#: ../src/widgets/sp-color-icc-selector.cpp:230 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/flood-context.cpp:231 +#: ../src/ui/dialog/inkscape-preferences.cpp:941 +#: ../src/widgets/sp-color-icc-selector.cpp:362 +#: ../src/widgets/sp-color-icc-selector.cpp:367 #: ../src/widgets/sp-color-scales.cpp:458 #: ../src/widgets/sp-color-scales.cpp:459 -#: ../src/widgets/tweak-toolbar.cpp:320 +#: ../src/widgets/tweak-toolbar.cpp:316 #: ../share/extensions/color_randomize.inx.h:4 msgid "Saturation" msgstr "Verzadiging" @@ -6685,7 +6686,7 @@ msgstr "Verzadiging" #: ../src/extension/internal/filter/color.h:160 #: ../src/extension/internal/filter/transparency.h:135 #: ../src/filter-enums.cpp:103 -#: ../src/flood-context.cpp:234 +#: ../src/flood-context.cpp:233 msgid "Alpha" msgstr "Alfa" @@ -6813,24 +6814,24 @@ msgid "Extract Channel" msgstr "Kanaal extraheren" #: ../src/extension/internal/filter/color.h:640 -#: ../src/widgets/sp-color-icc-selector.cpp:232 -#: ../src/widgets/sp-color-icc-selector.cpp:233 +#: ../src/widgets/sp-color-icc-selector.cpp:369 +#: ../src/widgets/sp-color-icc-selector.cpp:374 #: ../src/widgets/sp-color-scales.cpp:483 #: ../src/widgets/sp-color-scales.cpp:484 msgid "Cyan" msgstr "Cyaan" #: ../src/extension/internal/filter/color.h:641 -#: ../src/widgets/sp-color-icc-selector.cpp:232 -#: ../src/widgets/sp-color-icc-selector.cpp:233 +#: ../src/widgets/sp-color-icc-selector.cpp:370 +#: ../src/widgets/sp-color-icc-selector.cpp:375 #: ../src/widgets/sp-color-scales.cpp:486 #: ../src/widgets/sp-color-scales.cpp:487 msgid "Magenta" msgstr "Magenta" #: ../src/extension/internal/filter/color.h:642 -#: ../src/widgets/sp-color-icc-selector.cpp:232 -#: ../src/widgets/sp-color-icc-selector.cpp:233 +#: ../src/widgets/sp-color-icc-selector.cpp:371 +#: ../src/widgets/sp-color-icc-selector.cpp:376 #: ../src/widgets/sp-color-scales.cpp:489 #: ../src/widgets/sp-color-scales.cpp:490 msgid "Yellow" @@ -6857,15 +6858,15 @@ msgid "Fade to:" msgstr "Vervagen naar:" #: ../src/extension/internal/filter/color.h:744 -#: ../src/ui/widget/selected-style.cpp:254 -#: ../src/widgets/sp-color-icc-selector.cpp:232 +#: ../src/ui/widget/selected-style.cpp:257 +#: ../src/widgets/sp-color-icc-selector.cpp:372 #: ../src/widgets/sp-color-scales.cpp:492 #: ../src/widgets/sp-color-scales.cpp:493 msgid "Black" msgstr "Zwart" #: ../src/extension/internal/filter/color.h:745 -#: ../src/ui/widget/selected-style.cpp:250 +#: ../src/ui/widget/selected-style.cpp:253 msgid "White" msgstr "Wit" @@ -6888,7 +6889,7 @@ msgid "Customize greyscale components" msgstr "Grijswaarden aanpassen" #: ../src/extension/internal/filter/color.h:905 -#: ../src/ui/widget/selected-style.cpp:246 +#: ../src/ui/widget/selected-style.cpp:249 msgid "Invert" msgstr "Inverteren" @@ -6976,7 +6977,7 @@ msgstr "Verplaatsing rood" #: ../src/extension/internal/filter/color.h:1310 #: ../src/extension/internal/filter/color.h:1313 #: ../src/ui/dialog/input.cpp:1616 -#: ../src/ui/dialog/layers.cpp:915 +#: ../src/ui/dialog/layers.cpp:916 msgid "X" msgstr "X" @@ -7111,8 +7112,8 @@ msgstr "Uit" #: ../src/extension/internal/filter/distort.h:77 #: ../src/extension/internal/filter/textures.h:75 -#: ../src/ui/widget/selected-style.cpp:128 -#: ../src/ui/widget/style-swatch.cpp:127 +#: ../src/ui/widget/selected-style.cpp:131 +#: ../src/ui/widget/style-swatch.cpp:128 msgid "Stroke:" msgstr "Lijn:" @@ -7223,6 +7224,8 @@ msgid "Detect:" msgstr "Detecteren:" #: ../src/extension/internal/filter/image.h:52 +#: ../src/ui/dialog/template-load-tab.cpp:96 +#: ../src/ui/dialog/template-load-tab.cpp:131 msgid "All" msgstr "Alle" @@ -7263,9 +7266,9 @@ msgstr "Open" #: ../src/extension/internal/filter/morphology.h:65 #: ../src/libgdl/gdl-dock-placeholder.c:167 #: ../src/libgdl/gdl-dock.c:191 -#: ../src/widgets/rect-toolbar.cpp:315 -#: ../src/widgets/spray-toolbar.cpp:132 -#: ../src/widgets/tweak-toolbar.cpp:146 +#: ../src/widgets/rect-toolbar.cpp:317 +#: ../src/widgets/spray-toolbar.cpp:128 +#: ../src/widgets/tweak-toolbar.cpp:142 #: ../share/extensions/interp_att_g.inx.h:10 msgid "Width" msgstr "Breedte" @@ -7501,8 +7504,8 @@ msgid "Convert image to an engraving made of vertical and horizontal lines" msgstr "Afbeelding omzetten in gravure van verticale en horizontale lijnen" #: ../src/extension/internal/filter/paint.h:331 -#: ../src/ui/dialog/align-and-distribute.cpp:1048 -#: ../src/widgets/desktop-widget.cpp:1930 +#: ../src/ui/dialog/align-and-distribute.cpp:997 +#: ../src/widgets/desktop-widget.cpp:2004 msgid "Drawing" msgstr "Tekening" @@ -7510,7 +7513,7 @@ msgstr "Tekening" #: ../src/extension/internal/filter/paint.h:496 #: ../src/extension/internal/filter/paint.h:590 #: ../src/extension/internal/filter/paint.h:976 -#: ../src/splivarot.cpp:1988 +#: ../src/splivarot.cpp:2024 msgid "Simplify" msgstr "Vereenvoudigen" @@ -7781,7 +7784,7 @@ msgid "Blend" msgstr "Mengen" #: ../src/extension/internal/filter/transparency.h:55 -#: ../src/rdf.cpp:258 +#: ../src/rdf.cpp:261 msgid "Source:" msgstr "Bron:" @@ -7791,12 +7794,12 @@ msgid "Background" msgstr "Achtergrond" #: ../src/extension/internal/filter/transparency.h:59 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2610 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2623 #: ../src/ui/dialog/input.cpp:1088 -#: ../src/widgets/erasor-toolbar.cpp:127 -#: ../src/widgets/pencil-toolbar.cpp:161 -#: ../src/widgets/spray-toolbar.cpp:202 -#: ../src/widgets/tweak-toolbar.cpp:272 +#: ../src/widgets/eraser-toolbar.cpp:123 +#: ../src/widgets/pencil-toolbar.cpp:156 +#: ../src/widgets/spray-toolbar.cpp:198 +#: ../src/widgets/tweak-toolbar.cpp:268 #: ../share/extensions/extrude.inx.h:2 #: ../share/extensions/triangle.inx.h:8 msgid "Mode:" @@ -7884,41 +7887,40 @@ msgstr "GIMP-kleurverloop (*.ggr)" msgid "Gradients used in GIMP" msgstr "Kleurverlopen gebruikt in GIMP" -#: ../src/extension/internal/grid.cpp:201 -#: ../src/ui/widget/panel.cpp:113 +#: ../src/extension/internal/grid.cpp:209 +#: ../src/ui/widget/panel.cpp:117 msgid "Grid" msgstr "Raster" -#: ../src/extension/internal/grid.cpp:203 +#: ../src/extension/internal/grid.cpp:211 msgid "Line Width:" msgstr "Lijnbreedte:" -#: ../src/extension/internal/grid.cpp:204 +#: ../src/extension/internal/grid.cpp:212 msgid "Horizontal Spacing:" msgstr "Horizontale tussenruimte:" -#: ../src/extension/internal/grid.cpp:205 +#: ../src/extension/internal/grid.cpp:213 msgid "Vertical Spacing:" msgstr "Verticale tussenruimte:" -#: ../src/extension/internal/grid.cpp:206 +#: ../src/extension/internal/grid.cpp:214 msgid "Horizontal Offset:" msgstr "Horizontale inspringing:" -#: ../src/extension/internal/grid.cpp:207 +#: ../src/extension/internal/grid.cpp:215 msgid "Vertical Offset:" msgstr "Verticale inspringing:" -#: ../src/extension/internal/grid.cpp:211 +#: ../src/extension/internal/grid.cpp:219 #: ../share/extensions/draw_from_triangle.inx.h:58 #: ../share/extensions/eqtexsvg.inx.h:4 #: ../share/extensions/foldablebox.inx.h:9 #: ../share/extensions/funcplot.inx.h:38 -#: ../share/extensions/gears.inx.h:11 #: ../share/extensions/grid_cartesian.inx.h:23 #: ../share/extensions/grid_isometric.inx.h:11 #: ../share/extensions/grid_polar.inx.h:22 -#: ../share/extensions/guides_creator.inx.h:20 +#: ../share/extensions/guides_creator.inx.h:19 #: ../share/extensions/layout_nup.inx.h:35 #: ../share/extensions/lindenmayer.inx.h:34 #: ../share/extensions/param_curves.inx.h:30 @@ -7929,6 +7931,8 @@ msgstr "Verticale inspringing:" #: ../share/extensions/render_barcode.inx.h:5 #: ../share/extensions/render_barcode_datamatrix.inx.h:5 #: ../share/extensions/render_barcode_qrcode.inx.h:18 +#: ../share/extensions/render_gears.inx.h:11 +#: ../share/extensions/render_gear_rack.inx.h:5 #: ../share/extensions/rtree.inx.h:4 #: ../share/extensions/spirograph.inx.h:10 #: ../share/extensions/svgcalendar.inx.h:38 @@ -7937,14 +7941,14 @@ msgstr "Verticale inspringing:" msgid "Render" msgstr "Renderen" -#: ../src/extension/internal/grid.cpp:212 -#: ../src/ui/dialog/document-properties.cpp:148 +#: ../src/extension/internal/grid.cpp:220 +#: ../src/ui/dialog/document-properties.cpp:147 #: ../src/ui/dialog/inkscape-preferences.cpp:776 -#: ../src/widgets/toolbox.cpp:1822 +#: ../src/widgets/toolbox.cpp:1820 msgid "Grids" msgstr "Rasters" -#: ../src/extension/internal/grid.cpp:215 +#: ../src/extension/internal/grid.cpp:223 msgid "Draw a path which is a grid" msgstr "Een pad tekenen dat een raster is" @@ -7976,15 +7980,15 @@ msgstr "LaTeX PSTricks Bestand" msgid "LaTeX Print" msgstr "LaTeX print" -#: ../src/extension/internal/odf.cpp:2138 +#: ../src/extension/internal/odf.cpp:2148 msgid "OpenDocument Drawing Output" msgstr "OpenDocument-tekeninguitvoer" -#: ../src/extension/internal/odf.cpp:2143 +#: ../src/extension/internal/odf.cpp:2153 msgid "OpenDocument drawing (*.odg)" msgstr "OpenDocument-tekening (*.odg)" -#: ../src/extension/internal/odf.cpp:2144 +#: ../src/extension/internal/odf.cpp:2154 msgid "OpenDocument drawing file" msgstr "OpenDocument-tekeningbestand" @@ -8279,132 +8283,132 @@ msgstr "Het effect live voorvertonen op het canvas?" msgid "Format autodetect failed. The file is being opened as SVG." msgstr "Het automatisch detecteren van de bestandsindeling is mislukt. Het bestand wordt geopend als SVG." -#: ../src/file.cpp:153 +#: ../src/file.cpp:179 msgid "default.svg" msgstr "default.nl.svg" -#: ../src/file.cpp:284 +#: ../src/file.cpp:318 msgid "Broken links have been changed to point to existing files." msgstr "Verbroken links werden aangepast naar bestaande bestanden." -#: ../src/file.cpp:295 -#: ../src/file.cpp:1218 +#: ../src/file.cpp:329 +#: ../src/file.cpp:1253 #, c-format msgid "Failed to load the requested file %s" msgstr "Het laden van het gevraagde bestand %s is mislukt" -#: ../src/file.cpp:321 +#: ../src/file.cpp:355 msgid "Document not saved yet. Cannot revert." msgstr "Het bestand is nog niet opgeslagen. Kan het niet terugdraaien." -#: ../src/file.cpp:327 +#: ../src/file.cpp:361 #, c-format msgid "Changes will be lost! Are you sure you want to reload document %s?" msgstr "Wijzigingen zullen verloren gaan! Weet u zeker dat u bestand %s opnieuw wilt laden?" -#: ../src/file.cpp:356 +#: ../src/file.cpp:390 msgid "Document reverted." msgstr "Het bestand is teruggezet." -#: ../src/file.cpp:358 +#: ../src/file.cpp:392 msgid "Document not reverted." msgstr "Het bestand is niet teruggezet." -#: ../src/file.cpp:508 +#: ../src/file.cpp:542 msgid "Select file to open" msgstr "Selecteer een bestand om te openen" -#: ../src/file.cpp:592 +#: ../src/file.cpp:624 msgid "Clean up document" msgstr "Document schoonmaken" -#: ../src/file.cpp:597 +#: ../src/file.cpp:631 #, c-format msgid "Removed <b>%i</b> unused definition in <defs>." msgid_plural "Removed <b>%i</b> unused definitions in <defs>." msgstr[0] "In <defs> is <b>%i</b> ongebruikte definitie verwijderd." msgstr[1] "In <defs> zijn <b>%i</b> ongebruikte definities verwijderd." -#: ../src/file.cpp:602 +#: ../src/file.cpp:636 msgid "No unused definitions in <defs>." msgstr "Er zijn geen ongebruikte definities in <defs>." -#: ../src/file.cpp:633 +#: ../src/file.cpp:668 #, c-format msgid "No Inkscape extension found to save document (%s). This may have been caused by an unknown filename extension." msgstr "Er werd geen Inkscape-uitbreiding aangetroffen om het bestand (%s) op te slaan. Dit kan komen door een onbekende bestandsextensie." -#: ../src/file.cpp:634 -#: ../src/file.cpp:642 -#: ../src/file.cpp:650 -#: ../src/file.cpp:656 -#: ../src/file.cpp:661 +#: ../src/file.cpp:669 +#: ../src/file.cpp:677 +#: ../src/file.cpp:685 +#: ../src/file.cpp:691 +#: ../src/file.cpp:696 msgid "Document not saved." msgstr "Document is niet opgeslagen." -#: ../src/file.cpp:641 +#: ../src/file.cpp:676 #, c-format msgid "File %s is write protected. Please remove write protection and try again." msgstr "Bestand %s is schrijfbeveiligd. Verwijder aub de schrijfbeveiliging en probeer opnieuw." -#: ../src/file.cpp:649 +#: ../src/file.cpp:684 #, c-format msgid "File %s could not be saved." msgstr "Bestand %s kon niet worden opgeslagen." -#: ../src/file.cpp:679 -#: ../src/file.cpp:681 +#: ../src/file.cpp:714 +#: ../src/file.cpp:716 msgid "Document saved." msgstr "Document is opgeslagen." #. We are saving for the first time; create a unique default filename -#: ../src/file.cpp:829 -#: ../src/file.cpp:1381 +#: ../src/file.cpp:864 +#: ../src/file.cpp:1416 #, c-format msgid "drawing%s" msgstr "Tekening%s" -#: ../src/file.cpp:835 +#: ../src/file.cpp:870 #, c-format msgid "drawing-%d%s" msgstr "Tekening-%d%s" -#: ../src/file.cpp:839 +#: ../src/file.cpp:874 #, c-format msgid "%s" msgstr "%s" -#: ../src/file.cpp:854 +#: ../src/file.cpp:889 msgid "Select file to save a copy to" msgstr "Selecteer een bestand om een kopie naar op te slaan" -#: ../src/file.cpp:856 +#: ../src/file.cpp:891 msgid "Select file to save to" msgstr "Selecteer een bestand om in op te slaan" -#: ../src/file.cpp:962 -#: ../src/file.cpp:964 +#: ../src/file.cpp:997 +#: ../src/file.cpp:999 msgid "No changes need to be saved." msgstr "Er zijn geen wijzigingen die opgeslagen hoeven te worden." -#: ../src/file.cpp:983 +#: ../src/file.cpp:1018 msgid "Saving document..." msgstr "Opslaan van document..." -#: ../src/file.cpp:1215 +#: ../src/file.cpp:1250 #: ../src/ui/dialog/ocaldialogs.cpp:1244 msgid "Import" msgstr "Importeren" -#: ../src/file.cpp:1265 +#: ../src/file.cpp:1300 msgid "Select file to import" msgstr "Selecteer een bestand om te importeren" -#: ../src/file.cpp:1403 +#: ../src/file.cpp:1438 msgid "Select file to export to" msgstr "Selecteer een bestand om naar te exporteren" -#: ../src/file.cpp:1656 +#: ../src/file.cpp:1691 msgid "Import Clip Art" msgstr "Clipart importeren" @@ -8433,6 +8437,7 @@ msgid "Flood" msgstr "Vullen" #: ../src/filter-enums.cpp:30 +#: ../share/extensions/text_merge.inx.h:1 msgid "Merge" msgstr "Samenvoegen" @@ -8486,7 +8491,7 @@ msgstr "Luminantie naar alfa" #. File #: ../src/filter-enums.cpp:70 -#: ../src/verbs.cpp:2291 +#: ../src/verbs.cpp:2348 #: ../share/extensions/jessyInk_mouseHandler.inx.h:3 #: ../share/extensions/jessyInk_transitions.inx.h:7 msgid "Default" @@ -8497,7 +8502,7 @@ msgid "Arithmetic" msgstr "Aritmetisch" #: ../src/filter-enums.cpp:92 -#: ../src/selection-chemistry.cpp:516 +#: ../src/selection-chemistry.cpp:531 msgid "Duplicate" msgstr "Dupliceren" @@ -8529,77 +8534,77 @@ msgstr "Puntlicht" msgid "Spot Light" msgstr "Spotlicht" -#: ../src/flood-context.cpp:227 +#: ../src/flood-context.cpp:226 msgid "Visible Colors" msgstr "Zichtbare kleuren" -#: ../src/flood-context.cpp:231 -#: ../src/widgets/sp-color-icc-selector.cpp:230 -#: ../src/widgets/sp-color-icc-selector.cpp:231 +#: ../src/flood-context.cpp:230 +#: ../src/widgets/sp-color-icc-selector.cpp:361 +#: ../src/widgets/sp-color-icc-selector.cpp:365 #: ../src/widgets/sp-color-scales.cpp:455 #: ../src/widgets/sp-color-scales.cpp:456 -#: ../src/widgets/tweak-toolbar.cpp:304 +#: ../src/widgets/tweak-toolbar.cpp:300 #: ../share/extensions/color_randomize.inx.h:3 msgid "Hue" msgstr "Tint" -#: ../src/flood-context.cpp:245 +#: ../src/flood-context.cpp:244 msgctxt "Flood autogap" msgid "None" msgstr "Geen" -#: ../src/flood-context.cpp:246 +#: ../src/flood-context.cpp:245 msgctxt "Flood autogap" msgid "Small" msgstr "Klein" -#: ../src/flood-context.cpp:247 +#: ../src/flood-context.cpp:246 msgctxt "Flood autogap" msgid "Medium" msgstr "Middel" -#: ../src/flood-context.cpp:248 +#: ../src/flood-context.cpp:247 msgctxt "Flood autogap" msgid "Large" msgstr "Groot" -#: ../src/flood-context.cpp:470 +#: ../src/flood-context.cpp:469 msgid "<b>Too much inset</b>, the result is empty." msgstr "<b>Te veel versmalling</b>, het resultaat is leeg." -#: ../src/flood-context.cpp:511 +#: ../src/flood-context.cpp:510 #, c-format msgid "Area filled, path with <b>%d</b> node created and unioned with selection." msgid_plural "Area filled, path with <b>%d</b> nodes created and unioned with selection." msgstr[0] "Gebied is gevuld, pad met <b>%d</b> knooppunt is gemaakt en verenigd met selectie." msgstr[1] "Gebied is gevuld, pad met <b>%d</b> knooppunten is gemaakt en verenigd met selectie." -#: ../src/flood-context.cpp:517 +#: ../src/flood-context.cpp:516 #, c-format msgid "Area filled, path with <b>%d</b> node created." msgid_plural "Area filled, path with <b>%d</b> nodes created." msgstr[0] "Gebied is gevuld, pad met <b>%d</b> knooppunt is gemaakt." msgstr[1] "Gebied is gevuld, pad met <b>%d</b> knooppunten is gemaakt." -#: ../src/flood-context.cpp:785 -#: ../src/flood-context.cpp:1095 +#: ../src/flood-context.cpp:784 +#: ../src/flood-context.cpp:1094 msgid "<b>Area is not bounded</b>, cannot fill." msgstr "<b>Gebied is niet gesloten</b>, kan het niet vullen." -#: ../src/flood-context.cpp:1100 +#: ../src/flood-context.cpp:1099 msgid "<b>Only the visible part of the bounded area was filled.</b> If you want to fill all of the area, undo, zoom out, and fill again." msgstr "<b>Enkel het zichtbare deel van een afgebakend gebied werd gevuld.</b> Als u het hele gebied wilt vullen, ongedaan maken, uitzoomen en opnieuw vullen." -#: ../src/flood-context.cpp:1118 -#: ../src/flood-context.cpp:1277 +#: ../src/flood-context.cpp:1117 +#: ../src/flood-context.cpp:1276 msgid "Fill bounded area" msgstr "Afgebakend gebied vullen" -#: ../src/flood-context.cpp:1137 +#: ../src/flood-context.cpp:1136 msgid "Set style on object" msgstr "Stijl aan object geven" -#: ../src/flood-context.cpp:1196 +#: ../src/flood-context.cpp:1195 msgid "<b>Draw over</b> areas to add to fill, hold <b>Alt</b> for touch fill" msgstr "<b>Sleep over</b> gebieden om ze aan vulling toe te voegen; gebruik <b>Alt</b> voor aanraakvulling" @@ -8612,7 +8617,7 @@ msgid "Reverse gradient" msgstr "Kleurverloop omdraaien" #: ../src/gradient-chemistry.cpp:1608 -#: ../src/widgets/gradient-selector.cpp:227 +#: ../src/widgets/gradient-selector.cpp:228 msgid "Delete swatch" msgstr "Palet verwijderen" @@ -8713,7 +8718,7 @@ msgstr[1] "<b>Geen</b> (van %d) kleurverloophandvat geselecteerd op %d geselecte #: ../src/gradient-context.cpp:381 #: ../src/gradient-context.cpp:479 -#: ../src/ui/dialog/swatches.cpp:203 +#: ../src/ui/dialog/swatches.cpp:204 #: ../src/widgets/gradient-vector.cpp:814 msgid "Add gradient stop" msgstr "Kleurverloopovergang toevoegen" @@ -8823,307 +8828,114 @@ msgstr "Kleurverloopovergang(en) verplaatsen" msgid "Delete gradient stop(s)" msgstr "Kleurverloopovergang(en) verwijderen" -#: ../src/helper/units.cpp:37 -#: ../src/live_effects/lpe-ruler.cpp:42 -msgid "Unit" -msgstr "Eenheid" - -#. Add the units menu. -#: ../src/helper/units.cpp:37 -#: ../src/widgets/lpe-toolbar.cpp:400 -#: ../src/widgets/node-toolbar.cpp:622 -#: ../src/widgets/paintbucket-toolbar.cpp:185 -#: ../src/widgets/rect-toolbar.cpp:376 -#: ../src/widgets/select-toolbar.cpp:538 -msgid "Units" -msgstr "Eenheden" - -#: ../src/helper/units.cpp:38 -#: ../share/extensions/dxf_outlines.inx.h:9 -msgid "pt" -msgstr "pt" - -#: ../src/helper/units.cpp:38 -#: ../share/extensions/perfectboundcover.inx.h:11 -msgid "Points" -msgstr "Punten" - -#: ../src/helper/units.cpp:38 -msgid "Pt" -msgstr "Pt" - -#: ../src/helper/units.cpp:39 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Pica" -msgstr "Pica" - -#: ../src/helper/units.cpp:39 -#: ../share/extensions/dxf_outlines.inx.h:10 -msgid "pc" -msgstr "pc" - -#: ../src/helper/units.cpp:39 -msgid "Picas" -msgstr "Pica's" - -#: ../src/helper/units.cpp:39 -msgid "Pc" -msgstr "Pc" - -#: ../src/helper/units.cpp:40 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Pixel" -msgstr "Pixel" - -#: ../src/helper/units.cpp:40 -#: ../share/extensions/dxf_outlines.inx.h:11 -#: ../share/extensions/gears.inx.h:7 -msgid "px" -msgstr "px" - -#: ../src/helper/units.cpp:40 -msgid "Pixels" -msgstr "Pixels" - -#: ../src/helper/units.cpp:40 -msgid "Px" -msgstr "Px" - -#. You can add new elements from this point forward -#: ../src/helper/units.cpp:42 -msgid "Percent" -msgstr "Procent" - -#: ../src/helper/units.cpp:42 -#: ../src/ui/dialog/inkscape-preferences.cpp:1265 -msgid "%" -msgstr "%" - -#: ../src/helper/units.cpp:42 -msgid "Percents" -msgstr "Procent" - -#: ../src/helper/units.cpp:43 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Millimeter" -msgstr "Millimeter" - -#: ../src/helper/units.cpp:43 -#: ../share/extensions/dxf_outlines.inx.h:12 -#: ../share/extensions/gears.inx.h:9 -#: ../share/extensions/gcodetools_area.inx.h:46 -#: ../share/extensions/gcodetools_dxf_points.inx.h:18 -#: ../share/extensions/gcodetools_engraving.inx.h:24 -#: ../share/extensions/gcodetools_graffiti.inx.h:18 -#: ../share/extensions/gcodetools_lathe.inx.h:39 -#: ../share/extensions/gcodetools_orientation_points.inx.h:11 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:28 -msgid "mm" -msgstr "mm" - -#: ../src/helper/units.cpp:43 -msgid "Millimeters" -msgstr "Millimeter" - -#: ../src/helper/units.cpp:44 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Centimeter" -msgstr "Centimeter" - -#: ../src/helper/units.cpp:44 -#: ../share/extensions/dxf_outlines.inx.h:13 -msgid "cm" -msgstr "cm" - -#: ../src/helper/units.cpp:44 -msgid "Centimeters" -msgstr "Centimeter" - -#: ../src/helper/units.cpp:45 -msgid "Meter" -msgstr "Meter" - -#: ../src/helper/units.cpp:45 -#: ../share/extensions/dxf_outlines.inx.h:14 -msgid "m" -msgstr "m" - -#: ../src/helper/units.cpp:45 -msgid "Meters" -msgstr "Meter" - -#. no svg_unit -#: ../src/helper/units.cpp:46 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Inch" -msgstr "Duim" - -#: ../src/helper/units.cpp:46 -#: ../share/extensions/dxf_outlines.inx.h:15 -#: ../share/extensions/gears.inx.h:8 -#: ../share/extensions/gcodetools_area.inx.h:47 -#: ../share/extensions/gcodetools_dxf_points.inx.h:19 -#: ../share/extensions/gcodetools_engraving.inx.h:25 -#: ../share/extensions/gcodetools_graffiti.inx.h:19 -#: ../share/extensions/gcodetools_lathe.inx.h:40 -#: ../share/extensions/gcodetools_orientation_points.inx.h:12 -#: ../share/extensions/gcodetools_path_to_gcode.inx.h:29 -msgid "in" -msgstr "duim" - -#: ../src/helper/units.cpp:46 -msgid "Inches" -msgstr "Duim" - -#: ../src/helper/units.cpp:47 -msgid "Foot" -msgstr "voet" - -#: ../src/helper/units.cpp:47 -#: ../share/extensions/dxf_outlines.inx.h:16 -msgid "ft" -msgstr "voet" - -#: ../src/helper/units.cpp:47 -msgid "Feet" -msgstr "voet" - -#. Volatiles do not have default, so there are none here -#. TRANSLATORS: for info, see http://www.w3.org/TR/REC-CSS2/syndata.html#length-units -#: ../src/helper/units.cpp:50 -#: ../src/ui/dialog/inkscape-preferences.cpp:451 -msgid "Em square" -msgstr "Em kwadraat" - -#: ../src/helper/units.cpp:50 -msgid "em" -msgstr "em" - -#: ../src/helper/units.cpp:50 -msgid "Em squares" -msgstr "Em kwadraat" - -#. TRANSLATORS: for info, see http://www.w3.org/TR/REC-CSS2/syndata.html#length-units -#: ../src/helper/units.cpp:52 -msgid "Ex square" -msgstr "Ex kwadraat" - -#: ../src/helper/units.cpp:52 -msgid "ex" -msgstr "ex" - -#: ../src/helper/units.cpp:52 -msgid "Ex squares" -msgstr "Ex kwadraat" - -#: ../src/inkscape.cpp:317 +#: ../src/inkscape.cpp:341 msgid "Autosave failed! Cannot create directory %1." msgstr "Auto-opslaan mislukt! Kan directory %1 niet maken." -#: ../src/inkscape.cpp:326 +#: ../src/inkscape.cpp:350 msgid "Autosave failed! Cannot open directory %1." msgstr "Auto-opslaan mislukt! Kan directory %1 niet openen." -#: ../src/inkscape.cpp:342 +#: ../src/inkscape.cpp:366 msgid "Autosaving documents..." msgstr "Auto-opslaan van document..." -#: ../src/inkscape.cpp:415 +#: ../src/inkscape.cpp:439 msgid "Autosave failed! Could not find inkscape extension to save document." msgstr "Auto-opslaan mislukt! Kon de inkscape-uitbreiding om document te bewaren niet vinden." -#: ../src/inkscape.cpp:418 -#: ../src/inkscape.cpp:425 +#: ../src/inkscape.cpp:442 +#: ../src/inkscape.cpp:449 #, c-format msgid "Autosave failed! File %s could not be saved." msgstr "Auto-opslaan mislukt! Bestand %s kon niet bewaard worden." -#: ../src/inkscape.cpp:440 +#: ../src/inkscape.cpp:464 msgid "Autosave complete." msgstr "Auto-opslaan afgelopen." -#: ../src/inkscape.cpp:686 +#: ../src/inkscape.cpp:712 msgid "Untitled document" msgstr "Naamloos document" #. Show nice dialog box -#: ../src/inkscape.cpp:718 +#: ../src/inkscape.cpp:744 msgid "Inkscape encountered an internal error and will close now.\n" msgstr "Er is een interne fout opgetreden in Inkscape. Het programma wordt afgesloten.\n" -#: ../src/inkscape.cpp:719 +#: ../src/inkscape.cpp:745 msgid "Automatic backups of unsaved documents were done to the following locations:\n" msgstr "Automatische reservekopieën van niet-opgeslagen documenten werden gemaakt op de volgende locaties:\n" -#: ../src/inkscape.cpp:720 +#: ../src/inkscape.cpp:746 msgid "Automatic backup of the following documents failed:\n" msgstr "Het automatisch maken van een reservekopie is mislukt voor de volgende bestanden:\n" -#: ../src/interface.cpp:865 +#: ../src/interface.cpp:774 msgctxt "Interface setup" msgid "Default" msgstr "Standaard" -#: ../src/interface.cpp:865 +#: ../src/interface.cpp:774 msgid "Default interface setup" msgstr "Standaard interface" -#: ../src/interface.cpp:866 +#: ../src/interface.cpp:775 msgctxt "Interface setup" msgid "Custom" msgstr "Aangepast" -#: ../src/interface.cpp:866 +#: ../src/interface.cpp:775 msgid "Setup for custom task" msgstr "Aangepaste interface" -#: ../src/interface.cpp:867 +#: ../src/interface.cpp:776 msgctxt "Interface setup" msgid "Wide" msgstr "Breedbeeld" -#: ../src/interface.cpp:867 +#: ../src/interface.cpp:776 msgid "Setup for widescreen work" msgstr "Setup voor breedbeeldwerk" -#: ../src/interface.cpp:979 +#: ../src/interface.cpp:888 #, c-format msgid "Verb \"%s\" Unknown" msgstr "Werkwoord \"%s\" is onbekend" -#: ../src/interface.cpp:1021 +#: ../src/interface.cpp:927 msgid "Open _Recent" msgstr "_Recente bestanden" -#: ../src/interface.cpp:1129 -#: ../src/interface.cpp:1215 -#: ../src/interface.cpp:1318 -#: ../src/ui/widget/selected-style.cpp:523 +#: ../src/interface.cpp:1035 +#: ../src/interface.cpp:1121 +#: ../src/interface.cpp:1224 +#: ../src/ui/widget/selected-style.cpp:528 msgid "Drop color" msgstr "Kleur plakken" -#: ../src/interface.cpp:1168 -#: ../src/interface.cpp:1278 +#: ../src/interface.cpp:1074 +#: ../src/interface.cpp:1184 msgid "Drop color on gradient" msgstr "Kleur plakken op kleurverloop" -#: ../src/interface.cpp:1331 +#: ../src/interface.cpp:1237 msgid "Could not parse SVG data" msgstr "De SVG-gegevens konden niet worden verwerkt." -#: ../src/interface.cpp:1370 +#: ../src/interface.cpp:1276 msgid "Drop SVG" msgstr "SVG plakken" -#: ../src/interface.cpp:1383 +#: ../src/interface.cpp:1289 msgid "Drop Symbol" msgstr "Symbool plakken" -#: ../src/interface.cpp:1414 +#: ../src/interface.cpp:1320 msgid "Drop bitmap image" msgstr "Bitmap plakken" -#: ../src/interface.cpp:1506 +#: ../src/interface.cpp:1412 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">A file named \"%s\" already exists. Do you want to replace it?</span>\n" @@ -9134,169 +8946,169 @@ msgstr "" "\n" "Het bestand bestaat al in \"%s\". Door dit te vervangen, wordt de oude inhoud overschreven." -#: ../src/interface.cpp:1513 +#: ../src/interface.cpp:1419 #: ../share/extensions/web-set-att.inx.h:21 #: ../share/extensions/web-transmit-att.inx.h:19 msgid "Replace" msgstr "Vervangen" -#: ../src/interface.cpp:1584 +#: ../src/interface.cpp:1490 msgid "Go to parent" msgstr "Naar de ouder gaan" #. TRANSLATORS: #%1 is the id of the group e.g. <g id="#g7">, not a number. -#: ../src/interface.cpp:1625 +#: ../src/interface.cpp:1531 msgid "Enter group #%1" msgstr "Groep #%1 binnengaan" #. Item dialog -#: ../src/interface.cpp:1737 -#: ../src/verbs.cpp:2785 +#: ../src/interface.cpp:1643 +#: ../src/verbs.cpp:2842 msgid "_Object Properties..." msgstr "Object_eigenschappen..." -#: ../src/interface.cpp:1746 +#: ../src/interface.cpp:1652 msgid "_Select This" msgstr "Object _selecteren" -#: ../src/interface.cpp:1757 +#: ../src/interface.cpp:1663 msgid "Select Same" msgstr "Gelijkaardig selecteren" #. Select same fill and stroke -#: ../src/interface.cpp:1767 +#: ../src/interface.cpp:1673 msgid "Fill and Stroke" msgstr "Vulling en lijn" #. Select same fill color -#: ../src/interface.cpp:1774 +#: ../src/interface.cpp:1680 msgid "Fill Color" msgstr "Vulkleur" #. Select same stroke color -#: ../src/interface.cpp:1781 +#: ../src/interface.cpp:1687 msgid "Stroke Color" msgstr "Lijnkleur" #. Select same stroke style -#: ../src/interface.cpp:1788 +#: ../src/interface.cpp:1694 msgid "Stroke Style" msgstr "Lijnstijl" #. Select same stroke style -#: ../src/interface.cpp:1795 +#: ../src/interface.cpp:1701 msgid "Object type" msgstr "Objecttype" #. Move to layer -#: ../src/interface.cpp:1802 +#: ../src/interface.cpp:1708 msgid "_Move to layer ..." msgstr "N_aar laag verplaatsen..." #. Create link -#: ../src/interface.cpp:1812 +#: ../src/interface.cpp:1718 msgid "Create _Link" msgstr "Koppeling _maken" #. Set mask -#: ../src/interface.cpp:1835 +#: ../src/interface.cpp:1741 msgid "Set Mask" msgstr "Masker inschakelen" #. Release mask -#: ../src/interface.cpp:1846 +#: ../src/interface.cpp:1752 msgid "Release Mask" msgstr "Masker uitschakelen" #. Set Clip -#: ../src/interface.cpp:1857 +#: ../src/interface.cpp:1763 msgid "Set Cl_ip" msgstr "_Afsnijden instellen" #. Release Clip -#: ../src/interface.cpp:1868 +#: ../src/interface.cpp:1774 msgid "Release C_lip" msgstr "A_fsnijden opheffen" #. Group -#: ../src/interface.cpp:1879 -#: ../src/verbs.cpp:2424 +#: ../src/interface.cpp:1785 +#: ../src/verbs.cpp:2483 msgid "_Group" msgstr "_Groeperen" -#: ../src/interface.cpp:1950 +#: ../src/interface.cpp:1856 msgid "Create link" msgstr "Koppeling maken" #. Ungroup -#: ../src/interface.cpp:1981 -#: ../src/verbs.cpp:2426 +#: ../src/interface.cpp:1887 +#: ../src/verbs.cpp:2485 msgid "_Ungroup" msgstr "Groep op_heffen" #. Link dialog -#: ../src/interface.cpp:2006 +#: ../src/interface.cpp:1912 msgid "Link _Properties..." msgstr "_Linkeigenschappen..." #. Select item -#: ../src/interface.cpp:2012 +#: ../src/interface.cpp:1918 msgid "_Follow Link" msgstr "Koppeling vo_lgen" #. Reset transformations -#: ../src/interface.cpp:2018 +#: ../src/interface.cpp:1924 msgid "_Remove Link" msgstr "Koppeling ve_rwijderen" -#: ../src/interface.cpp:2049 +#: ../src/interface.cpp:1955 msgid "Remove link" msgstr "Koppeling ve_rwijderen" #. Image properties -#: ../src/interface.cpp:2060 +#: ../src/interface.cpp:1966 msgid "Image _Properties..." msgstr "_Afbeeldingseigenschappen..." #. Edit externally -#: ../src/interface.cpp:2066 +#: ../src/interface.cpp:1972 msgid "Edit Externally..." msgstr "Extern bewerken..." #. Trace Bitmap #. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/interface.cpp:2075 -#: ../src/verbs.cpp:2487 +#: ../src/interface.cpp:1981 +#: ../src/verbs.cpp:2546 msgid "_Trace Bitmap..." msgstr "_Bitmap overtrekken..." -#: ../src/interface.cpp:2085 +#: ../src/interface.cpp:1991 msgctxt "Context menu" msgid "Embed Image" msgstr "Afbeelding invoegen" -#: ../src/interface.cpp:2096 +#: ../src/interface.cpp:2002 msgctxt "Context menu" msgid "Extract Image..." msgstr "Afbeelding extraheren..." #. Item dialog #. Fill and Stroke dialog -#: ../src/interface.cpp:2235 -#: ../src/interface.cpp:2255 -#: ../src/verbs.cpp:2748 +#: ../src/interface.cpp:2141 +#: ../src/interface.cpp:2161 +#: ../src/verbs.cpp:2807 msgid "_Fill and Stroke..." msgstr "V_ulling en lijn..." #. Edit Text dialog -#: ../src/interface.cpp:2261 -#: ../src/verbs.cpp:2765 +#: ../src/interface.cpp:2167 +#: ../src/verbs.cpp:2824 msgid "_Text and Font..." msgstr "_Tekst en lettertype..." #. Spellcheck dialog -#: ../src/interface.cpp:2267 -#: ../src/verbs.cpp:2773 +#: ../src/interface.cpp:2173 +#: ../src/verbs.cpp:2832 msgid "Check Spellin_g..." msgstr "Spellin_g controleren..." @@ -9360,7 +9172,8 @@ msgstr "Paneelitem die dit grijppunt 'beheert'" #. Name #: ../src/libgdl/gdl-dock-item.c:298 -#: ../src/widgets/text-toolbar.cpp:1430 +#: ../src/widgets/ruler.cpp:191 +#: ../src/widgets/text-toolbar.cpp:1421 #: ../share/extensions/gcodetools_graffiti.inx.h:9 #: ../share/extensions/gcodetools_orientation_points.inx.h:2 msgid "Orientation" @@ -9461,12 +9274,12 @@ msgid "If is set to 1, all the dock items bound to the master are locked; if it' msgstr "Indien ingesteld op 1, zijn alle paneelitems vergrendeld die gebonden zijn aan de meester; indien 0, is alles ontgrendeld; -1 geeft aan dat items verschillend ingesteld zijn" #: ../src/libgdl/gdl-dock-master.c:157 -#: ../src/libgdl/gdl-switcher.c:732 +#: ../src/libgdl/gdl-switcher.c:737 msgid "Switcher Style" msgstr "Stijl wisselen" #: ../src/libgdl/gdl-dock-master.c:158 -#: ../src/libgdl/gdl-switcher.c:733 +#: ../src/libgdl/gdl-switcher.c:738 msgid "Switcher buttons style" msgstr "Stijl knoppen wisselen" @@ -9481,10 +9294,10 @@ msgid "The new dock controller %p is automatic. Only manual dock objects should msgstr "De nieuwe dock-controller %p is automatisch. Enkel manuele dockobjecten mogen controller genoemd worden." #: ../src/libgdl/gdl-dock-notebook.c:132 -#: ../src/ui/dialog/align-and-distribute.cpp:1047 -#: ../src/ui/dialog/document-properties.cpp:146 +#: ../src/ui/dialog/align-and-distribute.cpp:996 +#: ../src/ui/dialog/document-properties.cpp:145 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1551 -#: ../src/widgets/desktop-widget.cpp:1926 +#: ../src/widgets/desktop-widget.cpp:2000 #: ../share/extensions/voronoi2svg.inx.h:9 msgid "Page" msgstr "Pagina" @@ -9494,9 +9307,9 @@ msgid "The index of the current page" msgstr "De index van de huidige pagina" #: ../src/libgdl/gdl-dock-object.c:125 -#: ../src/ui/dialog/inkscape-preferences.cpp:1475 -#: ../src/ui/widget/page-sizer.cpp:260 -#: ../src/widgets/gradient-selector.cpp:156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1486 +#: ../src/ui/widget/page-sizer.cpp:258 +#: ../src/widgets/gradient-selector.cpp:157 #: ../src/widgets/sp-xmlview-attr-list.cpp:54 msgid "Name" msgstr "Naam" @@ -9558,6 +9371,7 @@ msgid "Attempt to bind to %p an already bound dock object %p (current master: %p msgstr "Poging tot binden aan %p van een reeds gebonden paneelobject %p (huidige meester: %p)" #: ../src/libgdl/gdl-dock-paned.c:130 +#: ../src/widgets/ruler.cpp:229 msgid "Position" msgstr "Positie" @@ -9824,7 +9638,7 @@ msgid "Power stroke" msgstr "Power stroke" #: ../src/live_effects/effect.cpp:124 -#: ../src/selection-chemistry.cpp:2790 +#: ../src/selection-chemistry.cpp:2778 msgid "Clone original path" msgstr "Origineel pad klonen" @@ -10248,7 +10062,7 @@ msgid "Beveled" msgstr "Afgeschuind" #: ../src/live_effects/lpe-powerstroke.cpp:221 -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:542 msgid "Rounded" msgstr "Afgerond" @@ -10261,7 +10075,7 @@ msgid "Miter" msgstr "" #: ../src/live_effects/lpe-powerstroke.cpp:224 -#: ../src/widgets/pencil-toolbar.cpp:137 +#: ../src/widgets/pencil-toolbar.cpp:132 msgid "Spiro" msgstr "Spiraal" @@ -10310,7 +10124,7 @@ msgstr "Bepaalt de vorm van het padbegin" #. TRANSLATORS: The line join style specifies the shape to be used at the #. corners of paths. It can be "miter", "round" or "bevel". #: ../src/live_effects/lpe-powerstroke.cpp:238 -#: ../src/widgets/stroke-style.cpp:220 +#: ../src/widgets/stroke-style.cpp:223 msgid "Join:" msgstr "Hoekpunten:" @@ -10323,7 +10137,7 @@ msgid "Miter limit:" msgstr "Hoeklimiet:" #: ../src/live_effects/lpe-powerstroke.cpp:239 -#: ../src/widgets/stroke-style.cpp:271 +#: ../src/widgets/stroke-style.cpp:274 msgid "Maximum length of the miter (in units of stroke width)" msgstr "Maximale lengte (in lijnbreedtes) van de punt" @@ -10496,12 +10310,14 @@ msgstr "Relatieve positie ten opzichte van referentiepunt bepaalt globale richti #: ../src/live_effects/lpe-ruler.cpp:25 #: ../share/extensions/restack.inx.h:12 #: ../share/extensions/text_extract.inx.h:8 +#: ../share/extensions/text_merge.inx.h:8 msgid "Left" msgstr "Links" #: ../src/live_effects/lpe-ruler.cpp:26 #: ../share/extensions/restack.inx.h:14 #: ../share/extensions/text_extract.inx.h:10 +#: ../share/extensions/text_merge.inx.h:10 msgid "Right" msgstr "Rechts" @@ -10511,12 +10327,12 @@ msgid "Both" msgstr "Beide" #: ../src/live_effects/lpe-ruler.cpp:33 -#: ../src/widgets/arc-toolbar.cpp:341 +#: ../src/widgets/arc-toolbar.cpp:337 msgid "Start" msgstr "Begin" #: ../src/live_effects/lpe-ruler.cpp:34 -#: ../src/widgets/arc-toolbar.cpp:354 +#: ../src/widgets/arc-toolbar.cpp:350 msgid "End" msgstr "Einde" @@ -10536,6 +10352,11 @@ msgstr "Afstand tussen opeenvolgende markeringen" msgid "Unit:" msgstr "Eenheid:" +#: ../src/live_effects/lpe-ruler.cpp:42 +#: ../src/widgets/ruler.cpp:201 +msgid "Unit" +msgstr "Eenheid" + #: ../src/live_effects/lpe-ruler.cpp:43 msgid "Ma_jor length:" msgstr "Len_gte hoofdmarkering:" @@ -10675,7 +10496,7 @@ msgid "How many construction lines (tangents) to draw" msgstr "Hoeveel constructielijnen (raaklijnen) er getekend moeten worden" #: ../src/live_effects/lpe-sketch.cpp:58 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2654 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2667 #: ../share/extensions/render_alphabetsoup.inx.h:3 msgid "Scale:" msgstr "Schaal:" @@ -10784,12 +10605,12 @@ msgstr "Booleaanse parameter veranderen" msgid "Change enumeration parameter" msgstr "Opsommingsparameter veranderen" -#: ../src/live_effects/parameter/originalpath.cpp:62 +#: ../src/live_effects/parameter/originalpath.cpp:70 #: ../src/live_effects/parameter/path.cpp:194 msgid "Link to path" msgstr "Aan pad linken" -#: ../src/live_effects/parameter/originalpath.cpp:74 +#: ../src/live_effects/parameter/originalpath.cpp:82 msgid "Select original" msgstr "Origineel selecteren" @@ -10834,7 +10655,7 @@ msgstr "Willekeurige parameter veranderen" msgid "Change text parameter" msgstr "Tekstparameter veranderen" -#: ../src/live_effects/parameter/unit.cpp:78 +#: ../src/live_effects/parameter/unit.cpp:80 msgid "Change unit parameter" msgstr "Eenheidsparameter veranderen" @@ -10842,7 +10663,7 @@ msgstr "Eenheidsparameter veranderen" msgid "Change vector parameter" msgstr "Vectorparameter veranderen" -#: ../src/main-cmdlineact.cpp:49 +#: ../src/main-cmdlineact.cpp:50 #, c-format msgid "Unable to find verb ID '%s' specified on the command line.\n" msgstr "Niet in staat verb ID '%s' te vinden zoals opgegeven op de commandoregel.\n" @@ -10852,222 +10673,251 @@ msgstr "Niet in staat verb ID '%s' te vinden zoals opgegeven op de commandoregel msgid "Unable to find node ID: '%s'\n" msgstr "Kan node-ID '%s' niet vinden.\n" -#: ../src/main.cpp:274 +#: ../src/main.cpp:298 msgid "Print the Inkscape version number" msgstr "Het versienummer van Inkscape tonen" -#: ../src/main.cpp:279 +#: ../src/main.cpp:303 msgid "Do not use X server (only process files from console)" msgstr "X-server niet gebruiken (alleen bestanden van de terminal verwerken)" -#: ../src/main.cpp:284 +#: ../src/main.cpp:308 msgid "Try to use X server (even if $DISPLAY is not set)" msgstr "X-server proberen te gebruiken (zelfs als $DISPLAY geen waarde heeft)" -#: ../src/main.cpp:289 +#: ../src/main.cpp:313 msgid "Open specified document(s) (option string may be excluded)" msgstr "Gegeven document(en) openen (optie-tekenreeks hoeft niet te worden opgegeven)" -#: ../src/main.cpp:290 -#: ../src/main.cpp:295 -#: ../src/main.cpp:300 -#: ../src/main.cpp:372 -#: ../src/main.cpp:377 -#: ../src/main.cpp:382 -#: ../src/main.cpp:387 -#: ../src/main.cpp:398 +#: ../src/main.cpp:314 +#: ../src/main.cpp:319 +#: ../src/main.cpp:324 +#: ../src/main.cpp:396 +#: ../src/main.cpp:401 +#: ../src/main.cpp:406 +#: ../src/main.cpp:417 +#: ../src/main.cpp:434 msgid "FILENAME" msgstr "BESTANDSNAAM" -#: ../src/main.cpp:294 +#: ../src/main.cpp:318 msgid "Print document(s) to specified output file (use '| program' for pipe)" msgstr "Document(en) afdrukken naar het opgegeven bestand (gebruik '| programma' voor een pijp)" -#: ../src/main.cpp:299 +#: ../src/main.cpp:323 msgid "Export document to a PNG file" msgstr "Document exporteren naar PNG-bestand" -#: ../src/main.cpp:304 +#: ../src/main.cpp:328 msgid "Resolution for exporting to bitmap and for rasterization of filters in PS/EPS/PDF (default 90)" msgstr "Resolutie voor het exporteren van de bitmap en voor rasterisatie van filters in PS/EPS/PDF (standaard 90)" -#: ../src/main.cpp:305 +#: ../src/main.cpp:329 #: ../src/ui/widget/rendering-options.cpp:34 msgid "DPI" msgstr "PPI" -#: ../src/main.cpp:309 +#: ../src/main.cpp:333 msgid "Exported area in SVG user units (default is the page; 0,0 is lower-left corner)" msgstr "Geëxporteerde oppervlakte in SVG-eenheden (standaard de volledige pagina; 0,0 is de hoek linksonder)" -#: ../src/main.cpp:310 +#: ../src/main.cpp:334 msgid "x0:y0:x1:y1" msgstr "x0:y0:x1:y1" -#: ../src/main.cpp:314 +#: ../src/main.cpp:338 msgid "Exported area is the entire drawing (not page)" msgstr "Het geëxporteerde gebied is de volledige tekening (niet de pagina)" -#: ../src/main.cpp:319 +#: ../src/main.cpp:343 msgid "Exported area is the entire page" msgstr "Het geëxporteerde gebied is de volledige pagina" -#: ../src/main.cpp:324 +#: ../src/main.cpp:348 msgid "Only for PS/EPS/PDF, sets margin in mm around exported area (default 0)" msgstr "" -#: ../src/main.cpp:325 -#: ../src/main.cpp:367 +#: ../src/main.cpp:349 +#: ../src/main.cpp:391 msgid "VALUE" msgstr "WAARDE" -#: ../src/main.cpp:329 +#: ../src/main.cpp:353 msgid "Snap the bitmap export area outwards to the nearest integer values (in SVG user units)" msgstr "De grootte van het te exporteren bitmapgebied naar boven afronden op een geheel getal (in SVG-eenheden)" -#: ../src/main.cpp:334 +#: ../src/main.cpp:358 msgid "The width of exported bitmap in pixels (overrides export-dpi)" msgstr "De breedte van de gegenereerde bitmap in pixels (dit negeert de PPI)" -#: ../src/main.cpp:335 +#: ../src/main.cpp:359 msgid "WIDTH" msgstr "BREEDTE" -#: ../src/main.cpp:339 +#: ../src/main.cpp:363 msgid "The height of exported bitmap in pixels (overrides export-dpi)" msgstr "De hoogte van de gegenereerde bitmap in pixels (dit negeert de PPI)" -#: ../src/main.cpp:340 +#: ../src/main.cpp:364 msgid "HEIGHT" msgstr "HOOGTE" -#: ../src/main.cpp:344 +#: ../src/main.cpp:368 msgid "The ID of the object to export" msgstr "Het ID van het te exporteren object" -#: ../src/main.cpp:345 -#: ../src/main.cpp:443 -#: ../src/ui/dialog/inkscape-preferences.cpp:1478 +#: ../src/main.cpp:369 +#: ../src/main.cpp:479 +#: ../src/ui/dialog/inkscape-preferences.cpp:1489 msgid "ID" msgstr "ID" #. TRANSLATORS: this means: "Only export the object whose id is given in --export-id". #. See "man inkscape" for details. -#: ../src/main.cpp:351 +#: ../src/main.cpp:375 msgid "Export just the object with export-id, hide all others (only with export-id)" msgstr "Alleen het object met het gegeven ID exporteren; alle andere objecten verbergen (alleen samen met '--export-id')" -#: ../src/main.cpp:356 +#: ../src/main.cpp:380 msgid "Use stored filename and DPI hints when exporting (only with export-id)" msgstr "De opgeslagen bestandsnaam en PPI-hints gebruiken bij het exporteren (alleen samen met '--export-id')" -#: ../src/main.cpp:361 +#: ../src/main.cpp:385 msgid "Background color of exported bitmap (any SVG-supported color string)" msgstr "Achtergrondkleur van de geëxporteerde bitmap (kan iedere door SVG ondersteunde kleur zijn)" -#: ../src/main.cpp:362 +#: ../src/main.cpp:386 msgid "COLOR" msgstr "KLEUR" -#: ../src/main.cpp:366 +#: ../src/main.cpp:390 msgid "Background opacity of exported bitmap (either 0.0 to 1.0, or 1 to 255)" msgstr "Achtergrondondoorzichtigheid van de geëxporteerde bitmap (ofwel tussen 0.0 en 1.0, of tussen 1 en 255)" -#: ../src/main.cpp:371 +#: ../src/main.cpp:395 msgid "Export document to plain SVG file (no sodipodi or inkscape namespaces)" msgstr "Document exporteren naar gewoon SVG-bestand (geen sodipodi- of inkscapenaamruimte)" -#: ../src/main.cpp:376 +#: ../src/main.cpp:400 msgid "Export document to a PS file" msgstr "Document exporteren naar een PS-bestand" -#: ../src/main.cpp:381 +#: ../src/main.cpp:405 msgid "Export document to an EPS file" msgstr "Document exporteren naar een EPS-bestand" -#: ../src/main.cpp:386 +#: ../src/main.cpp:410 +msgid "Choose the PostScript Level used to export. Possible choices are 2 (the default) and 3" +msgstr "Kies het PostScript niveau voor export. Kies tussen 2 (standaard) en 3" + +#: ../src/main.cpp:412 +msgid "PS Level" +msgstr "PS-niveau" + +#: ../src/main.cpp:416 msgid "Export document to a PDF file" msgstr "Document exporteren naar een PDF-bestand" -#: ../src/main.cpp:391 +#. TRANSLATORS: "--export-pdf-version" is an Inkscape command line option; see "inkscape --help" +#: ../src/main.cpp:422 +msgid "Export PDF to given version. (hint: make sure to input the exact string found in the PDF export dialog, e.g. \"PDF 1.4\" which is PDF-a conformant)" +msgstr "PDF naar versie exporteren. (tip: geef de exacte tekst zoals weergegeven in het venster PDF exporteren, bv. \"PDF 1.4\" die PDF-a conform is)" + +#: ../src/main.cpp:423 +msgid "PDF_VERSION" +msgstr "PDF_VERSION" + +#: ../src/main.cpp:427 msgid "Export PDF/PS/EPS without text. Besides the PDF/PS/EPS, a LaTeX file is exported, putting the text on top of the PDF/PS/EPS file. Include the result in LaTeX like: \\input{latexfile.tex}" msgstr "PDF/PS/EPS zonder tekst exporteren. Behalve de PDF/PS/EPS wordt een LaTeX-bestand geëxporteerd dat de tekst op het PDF/PS/EPS-bestand plaatst. Voeg het resultaat in LaTeX in met: \\input{latexfile.tex}" -#: ../src/main.cpp:397 +#: ../src/main.cpp:433 msgid "Export document to an Enhanced Metafile (EMF) File" msgstr "Document exporteren naar een EMF-bestand (Enhanced Metafile)" -#: ../src/main.cpp:403 +#: ../src/main.cpp:439 msgid "Convert text object to paths on export (PS, EPS, PDF, SVG)" msgstr "Tekst omzetten naar paden bij het exporteren (PS, EPS, PDF, SVG)" -#: ../src/main.cpp:408 +#: ../src/main.cpp:444 msgid "Render filtered objects without filters, instead of rasterizing (PS, EPS, PDF)" msgstr "Gefilterde objecten renderen zonder filters in plaats van rasteriseren (PS, EPS, PDF)" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:414 +#: ../src/main.cpp:450 msgid "Query the X coordinate of the drawing or, if specified, of the object with --query-id" msgstr "De X-coördinaat van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:420 +#: ../src/main.cpp:456 msgid "Query the Y coordinate of the drawing or, if specified, of the object with --query-id" msgstr "De Y-coördinaat van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:426 +#: ../src/main.cpp:462 msgid "Query the width of the drawing or, if specified, of the object with --query-id" msgstr "De breedte van de tekening opvragen, of - indien opgegeven met --query-id - van het object" #. TRANSLATORS: "--query-id" is an Inkscape command line option; see "inkscape --help" -#: ../src/main.cpp:432 +#: ../src/main.cpp:468 msgid "Query the height of the drawing or, if specified, of the object with --query-id" msgstr "De hoogte van de tekening opvragen, of - indien opgegeven met --query-id - van het object" -#: ../src/main.cpp:437 +#: ../src/main.cpp:473 msgid "List id,x,y,w,h for all objects" msgstr "Lijst id,x,y,b,h van alle objecten" -#: ../src/main.cpp:442 +#: ../src/main.cpp:478 msgid "The ID of the object whose dimensions are queried" msgstr "Het ID van het object waarvan de informatie wordt opgevraagd" #. TRANSLATORS: this option makes Inkscape print the name (path) of the extension directory -#: ../src/main.cpp:448 +#: ../src/main.cpp:484 msgid "Print out the extension directory and exit" msgstr "De naam van de uitbreidingenmap tonen en stoppen" -#: ../src/main.cpp:453 +#: ../src/main.cpp:489 msgid "Remove unused definitions from the defs section(s) of the document" msgstr "Ongebruikte definities uit de 'defs'-onderdelen van het bestand verwijderen" -#: ../src/main.cpp:458 +#: ../src/main.cpp:495 +msgid "Enter a listening loop for D-Bus messages in console mode" +msgstr "Geef een loop op voor D-Bus boodschappen in consolemodus" + +#: ../src/main.cpp:500 +msgid "Specify the D-Bus bus name to listen for messages on (default is org.inkscape)" +msgstr "Geef de D-Bus naam op om naar te luisteren (standaard org.inkscape)" + +#: ../src/main.cpp:501 +msgid "BUS-NAME" +msgstr "BUS-NAME" + +#: ../src/main.cpp:506 msgid "List the IDs of all the verbs in Inkscape" msgstr "Lijst met ID's van alle verbs in Inkscape" -#: ../src/main.cpp:463 +#: ../src/main.cpp:511 msgid "Verb to call when Inkscape opens." msgstr "Verb om aan te roepen als Inkscape start." -#: ../src/main.cpp:464 +#: ../src/main.cpp:512 msgid "VERB-ID" msgstr "VERB-ID" -#: ../src/main.cpp:468 +#: ../src/main.cpp:516 msgid "Object ID to select when Inkscape opens." msgstr "Te selecteren object-ID wanneer Inkscape opent." -#: ../src/main.cpp:469 +#: ../src/main.cpp:517 msgid "OBJECT-ID" msgstr "OBJECT-ID" -#: ../src/main.cpp:473 +#: ../src/main.cpp:521 msgid "Start Inkscape in interactive shell mode." msgstr "Inkscape in interactieve commandomodus starten." -#: ../src/main.cpp:817 -#: ../src/main.cpp:1174 +#: ../src/main.cpp:868 +#: ../src/main.cpp:1256 msgid "" "[OPTIONS...] [FILE...]\n" "\n" @@ -11079,7 +10929,7 @@ msgstr "" #. ## Add a menu for clear() #: ../src/menus-skeleton.h:16 -#: ../src/ui/dialog/debug.cpp:79 +#: ../src/ui/dialog/debug.cpp:83 msgid "_File" msgstr "_Bestand" @@ -11090,13 +10940,13 @@ msgstr "_Nieuw" #. " <verb verb-id=\"FileExportToOCAL\" />\n" #. " <verb verb-id=\"DialogMetadata\" />\n" #: ../src/menus-skeleton.h:43 -#: ../src/verbs.cpp:2570 -#: ../src/verbs.cpp:2576 +#: ../src/verbs.cpp:2629 +#: ../src/verbs.cpp:2635 msgid "_Edit" msgstr "Be_werken" #: ../src/menus-skeleton.h:53 -#: ../src/verbs.cpp:2336 +#: ../src/verbs.cpp:2395 msgid "Paste Si_ze" msgstr "_Grootte plakken" @@ -11134,50 +10984,45 @@ msgstr "_Kleurweergavemodus" msgid "Sh_ow/Hide" msgstr "_Weergeven/verbergen" -#. " <verb verb-id=\"DialogScript\" />\n" #. Not quite ready to be in the menus. #. " <verb verb-id=\"FocusToggle\" />\n" -#: ../src/menus-skeleton.h:158 +#: ../src/menus-skeleton.h:157 msgid "_Layer" msgstr "_Laag" -#: ../src/menus-skeleton.h:182 +#: ../src/menus-skeleton.h:181 msgid "_Object" msgstr "_Object" -#: ../src/menus-skeleton.h:190 +#: ../src/menus-skeleton.h:189 msgid "Cli_p" msgstr "Masker_pad" -#: ../src/menus-skeleton.h:194 +#: ../src/menus-skeleton.h:193 msgid "Mas_k" msgstr "Mas_ker" -#: ../src/menus-skeleton.h:198 +#: ../src/menus-skeleton.h:197 msgid "Patter_n" msgstr "Patroo_n" -#: ../src/menus-skeleton.h:202 -msgid "Symbo_l" -msgstr "_Symbool" - -#: ../src/menus-skeleton.h:226 +#: ../src/menus-skeleton.h:221 msgid "_Path" msgstr "_Paden" -#: ../src/menus-skeleton.h:271 +#: ../src/menus-skeleton.h:266 msgid "Filter_s" msgstr "_Filters" -#: ../src/menus-skeleton.h:277 +#: ../src/menus-skeleton.h:272 msgid "Exte_nsions" msgstr "_Uitbreidingen" -#: ../src/menus-skeleton.h:283 +#: ../src/menus-skeleton.h:278 msgid "_Help" msgstr "_Help" -#: ../src/menus-skeleton.h:287 +#: ../src/menus-skeleton.h:282 msgid "Tutorials" msgstr "_Handleidingen" @@ -11344,92 +11189,92 @@ msgstr "Opdelen" msgid "<b>No path(s)</b> to break apart in the selection." msgstr "<b>Geen paden geselecteerd</b> om in stukken te breken." -#: ../src/path-chemistry.cpp:303 +#: ../src/path-chemistry.cpp:301 msgid "Select <b>object(s)</b> to convert to path." msgstr "Selecteer <b>object(en)</b> om te converteren naar een pad." -#: ../src/path-chemistry.cpp:309 +#: ../src/path-chemistry.cpp:307 msgid "Converting objects to paths..." msgstr "Converteren van objecten naar paden..." -#: ../src/path-chemistry.cpp:331 +#: ../src/path-chemistry.cpp:329 msgid "Object to path" msgstr "Object naar pad" -#: ../src/path-chemistry.cpp:333 +#: ../src/path-chemistry.cpp:331 msgid "<b>No objects</b> to convert to path in the selection." msgstr "<b>Geen objecten geselecteerd</b> om te converteren naar een pad." -#: ../src/path-chemistry.cpp:610 +#: ../src/path-chemistry.cpp:608 msgid "Select <b>path(s)</b> to reverse." msgstr "Selecteer <b>pad(en)</b> om om te keren." -#: ../src/path-chemistry.cpp:619 +#: ../src/path-chemistry.cpp:617 msgid "Reversing paths..." msgstr "Omkeren van paden..." -#: ../src/path-chemistry.cpp:654 +#: ../src/path-chemistry.cpp:652 msgid "Reverse path" msgstr "Pad omkeren" -#: ../src/path-chemistry.cpp:656 +#: ../src/path-chemistry.cpp:654 msgid "<b>No paths</b> to reverse in the selection." msgstr "<b>Geen pad(en) geselecteerd</b> om om te keren." -#: ../src/pen-context.cpp:222 +#: ../src/pen-context.cpp:220 #: ../src/pencil-context.cpp:534 msgid "Drawing cancelled" msgstr "Tekenen is geannuleerd" -#: ../src/pen-context.cpp:460 +#: ../src/pen-context.cpp:458 #: ../src/pencil-context.cpp:259 msgid "Continuing selected path" msgstr "Huidig pad wordt voortgezet" -#: ../src/pen-context.cpp:470 +#: ../src/pen-context.cpp:468 #: ../src/pencil-context.cpp:267 msgid "Creating new path" msgstr "Maken van nieuw pad" -#: ../src/pen-context.cpp:472 +#: ../src/pen-context.cpp:470 #: ../src/pencil-context.cpp:270 msgid "Appending to selected path" msgstr "Toevoegen aan het geselecteerde pad" -#: ../src/pen-context.cpp:632 +#: ../src/pen-context.cpp:630 msgid "<b>Click</b> or <b>click and drag</b> to close and finish the path." msgstr "<b>Klik</b> of <b>klik en sleep</b> om een pad te sluiten." -#: ../src/pen-context.cpp:642 +#: ../src/pen-context.cpp:640 msgid "<b>Click</b> or <b>click and drag</b> to continue the path from this point." msgstr "<b>Klik</b> of <b>klik en sleep</b> om vanaf daar het pad voort te zetten." -#: ../src/pen-context.cpp:1237 +#: ../src/pen-context.cpp:1240 #, c-format msgid "<b>Curve segment</b>: angle %3.2f°, distance %s; with <b>Ctrl</b> to snap angle, <b>Enter</b> to finish the path" msgstr "<b>Segment curve</b>: hoek %3.2f°, afstand %s; gebruik <b>Ctrl</b> om in stappen te draaien, <b>Enter</b> om het pad af te maken" -#: ../src/pen-context.cpp:1238 +#: ../src/pen-context.cpp:1241 #, c-format msgid "<b>Line segment</b>: angle %3.2f°, distance %s; with <b>Ctrl</b> to snap angle, <b>Enter</b> to finish the path" msgstr "<b>Segment lijn</b>: hoek %3.2f°, afstand %s; gebruik <b>Ctrl</b> om in stappen te draaien, <b>Enter</b> om het pad af te maken" -#: ../src/pen-context.cpp:1255 +#: ../src/pen-context.cpp:1258 #, c-format msgid "<b>Curve handle</b>: angle %3.2f°, length %s; with <b>Ctrl</b> to snap angle" msgstr "<b>Handvat curve</b>: hoek %3.2f°, lengte %s; gebruik <b>Ctrl</b> om in stappen te draaien" -#: ../src/pen-context.cpp:1277 +#: ../src/pen-context.cpp:1280 #, c-format msgid "<b>Curve handle, symmetric</b>: angle %3.2f°, length %s; with <b>Ctrl</b> to snap angle, with <b>Shift</b> to move this handle only" msgstr "<b>Symmetrisch handvat curve</b>: hoek %3.2f°, lengte %s; gebruik <b>Ctrl</b> om in stappen te draaien, <b>Shift</b> om enkel dit handvat te verplaatsen" -#: ../src/pen-context.cpp:1278 +#: ../src/pen-context.cpp:1281 #, c-format msgid "<b>Curve handle</b>: angle %3.2f°, length %s; with <b>Ctrl</b> to snap angle, with <b>Shift</b> to move this handle only" msgstr "<b>Handvat curve</b>: hoek %3.2f°, lengte %s; gebruik <b>Ctrl</b> om in stappen te draaien, <b>Shift</b> om enkel dit handvat te verplaatsen" -#: ../src/pen-context.cpp:1324 +#: ../src/pen-context.cpp:1327 msgid "Drawing finished" msgstr "Tekenen is voltooid" @@ -11490,14 +11335,14 @@ msgstr "Vlekkenmakend" msgid "Tracing" msgstr "Overtrekkend" -#: ../src/preferences.cpp:132 +#: ../src/preferences.cpp:134 msgid "Inkscape will run with default settings, and new settings will not be saved. " msgstr "Inscape wordt gestart met de standaardinstellingen. Nieuwe instellingen worden niet bewaard." #. the creation failed #. _reportError(Glib::ustring::compose(_("Cannot create profile directory %1."), #. Glib::filename_to_utf8(_prefs_dir)), not_saved); -#: ../src/preferences.cpp:147 +#: ../src/preferences.cpp:149 #, c-format msgid "Cannot create profile directory %s." msgstr "Kan profielmap %s niet aanmaken." @@ -11505,7 +11350,7 @@ msgstr "Kan profielmap %s niet aanmaken." #. The profile dir is not actually a directory #. _reportError(Glib::ustring::compose(_("%1 is not a valid directory."), #. Glib::filename_to_utf8(_prefs_dir)), not_saved); -#: ../src/preferences.cpp:165 +#: ../src/preferences.cpp:167 #, c-format msgid "%s is not a valid directory." msgstr "%s is geen geldige maps." @@ -11513,27 +11358,27 @@ msgstr "%s is geen geldige maps." #. The write failed. #. _reportError(Glib::ustring::compose(_("Failed to create the preferences file %1."), #. Glib::filename_to_utf8(_prefs_filename)), not_saved); -#: ../src/preferences.cpp:176 +#: ../src/preferences.cpp:178 #, c-format msgid "Failed to create the preferences file %s." msgstr "Aanmaken van het voorkeurenbestand %s is mislukt." -#: ../src/preferences.cpp:212 +#: ../src/preferences.cpp:214 #, c-format msgid "The preferences file %s is not a regular file." msgstr "Het voorkeurenbestand %s is geen regulier bestand." -#: ../src/preferences.cpp:222 +#: ../src/preferences.cpp:224 #, c-format msgid "The preferences file %s could not be read." msgstr "Het voorkeurenbestand %s kon niet worden gelezen." -#: ../src/preferences.cpp:233 +#: ../src/preferences.cpp:235 #, c-format msgid "The preferences file %s is not a valid XML document." msgstr "Het voorkeurenbestand %s is geen geldig XML-document." -#: ../src/preferences.cpp:242 +#: ../src/preferences.cpp:244 #, c-format msgid "The file %s is not a valid Inkscape preferences file." msgstr "Het bestand %s is geen geldig Inkscape voorkeurenbestand." @@ -11563,180 +11408,180 @@ msgid "CC Attribution-NonCommercial-NoDerivs" msgstr "CC Attribution-NonCommercial-NoDerivs" #: ../src/rdf.cpp:205 -msgid "Public Domain" -msgstr "Publiek domein" +msgid "CC0 Public Domain Dedication" +msgstr "CC0 Publiek domein" #: ../src/rdf.cpp:210 msgid "FreeArt" -msgstr "Free Art-licentie" +msgstr "FreeArt" #: ../src/rdf.cpp:215 msgid "Open Font License" msgstr "Open Font-licentie" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/linking.html#AElementXLinkTitleAttribute -#: ../src/rdf.cpp:232 +#: ../src/rdf.cpp:235 #: ../src/ui/dialog/object-attributes.cpp:57 msgid "Title:" msgstr "Titel:" -#: ../src/rdf.cpp:233 -msgid "Name by which this document is formally known" -msgstr "De naam waaronder dit document officieel bekend is" +#: ../src/rdf.cpp:236 +msgid "A name given to the resource" +msgstr "Titel voor het document" -#: ../src/rdf.cpp:235 +#: ../src/rdf.cpp:238 msgid "Date:" msgstr "Datum:" -#: ../src/rdf.cpp:236 -msgid "Date associated with the creation of this document (YYYY-MM-DD)" -msgstr "Datum waarop dit document is aangemaakt (JJJJ-MM-DD)" +#: ../src/rdf.cpp:239 +msgid "A point or period of time associated with an event in the lifecycle of the resource" +msgstr "Datum of periode gelinkt aan een evenement in de geschiedenis van het document" -#: ../src/rdf.cpp:238 +#: ../src/rdf.cpp:241 #: ../share/extensions/webslicer_create_rect.inx.h:3 msgid "Format:" msgstr "Formaat:" -#: ../src/rdf.cpp:239 -msgid "The physical or digital manifestation of this document (MIME type)" -msgstr "De fysieke of digitale verschijningsvorm van dit document (MIME-type)" - #: ../src/rdf.cpp:242 -msgid "Type of document (DCMI Type)" -msgstr "Documenttype (DCMI-type)" +msgid "The file format, physical medium, or dimensions of the resource" +msgstr "Het bestandsformaat, fysiek medium of dimensies van het document" #: ../src/rdf.cpp:245 +msgid "The nature or genre of the resource" +msgstr "Aard of genre van het document" + +#: ../src/rdf.cpp:248 msgid "Creator:" msgstr "Maker:" -#: ../src/rdf.cpp:246 -msgid "Name of entity primarily responsible for making the content of this document" -msgstr "Naam van de instantie die verantwoordelijk is voor het maken van dit document" +#: ../src/rdf.cpp:249 +msgid "An entity primarily responsible for making the resource" +msgstr "Instantie die primair verantwoordelijk is voor het maken van het document" -#: ../src/rdf.cpp:248 +#: ../src/rdf.cpp:251 msgid "Rights:" msgstr "Rechten:" -#: ../src/rdf.cpp:249 -msgid "Name of entity with rights to the Intellectual Property of this document" -msgstr "Naam van instantie van wie dit document het intellectueel eigendom is" +#: ../src/rdf.cpp:252 +msgid "Information about rights held in and over the resource" +msgstr "Informatie over de rechten gebruikt in en van het document" -#: ../src/rdf.cpp:251 +#: ../src/rdf.cpp:254 msgid "Publisher:" msgstr "Uitgever:" -#: ../src/rdf.cpp:252 -msgid "Name of entity responsible for making this document available" -msgstr "Naam van de instantie die verantwoordelijk is voor publicatie van dit document" - #: ../src/rdf.cpp:255 +msgid "An entity responsible for making the resource available" +msgstr "Naam van de instantie die het document ter beschikking stelt" + +#: ../src/rdf.cpp:258 msgid "Identifier:" msgstr "Identificatie:" -#: ../src/rdf.cpp:256 -msgid "Unique URI to reference this document" -msgstr "Een unieke URI om aan dit document te refereren" - #: ../src/rdf.cpp:259 -msgid "Unique URI to reference the source of this document" -msgstr "Een unieke URI om aan de bron van dit document te refereren" +msgid "An unambiguous reference to the resource within a given context" +msgstr "Een eenduidige referentie naar het document in een gegeven context" -#: ../src/rdf.cpp:261 +#: ../src/rdf.cpp:262 +msgid "A related resource from which the described resource is derived" +msgstr "Een gerelateerd document waarvan dit document is afgeleid" + +#: ../src/rdf.cpp:264 msgid "Relation:" msgstr "Gerelateerd aan:" -#: ../src/rdf.cpp:262 -msgid "Unique URI to a related document" -msgstr "Een unieke URI naar een gerelateerd document" +#: ../src/rdf.cpp:265 +msgid "A related resource" +msgstr "Een gerelateerd document" -#: ../src/rdf.cpp:264 -#: ../src/ui/dialog/inkscape-preferences.cpp:1830 +#: ../src/rdf.cpp:267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1841 msgid "Language:" msgstr "Taal:" -#: ../src/rdf.cpp:265 -msgid "Two-letter language tag with optional subtags for the language of this document (e.g. 'en-GB')" -msgstr "Een tweeletterige aanduiding (met optionele subaanduiding) van de taal van dit document (bijvoorbeeld 'nl-NL')" +#: ../src/rdf.cpp:268 +msgid "A language of the resource" +msgstr "Taal van het document" -#: ../src/rdf.cpp:267 +#: ../src/rdf.cpp:270 msgid "Keywords:" msgstr "Sleutelwoorden:" -#: ../src/rdf.cpp:268 -msgid "The topic of this document as comma-separated key words, phrases, or classifications" -msgstr "Het onderwerp van dit document als losse woorden of zinnetjes, gescheiden door komma's" +#: ../src/rdf.cpp:271 +msgid "The topic of the resource" +msgstr "Kernwoorden van het document" #. TRANSLATORS: "Coverage": the spatial or temporal characteristics of the content. #. For info, see Appendix D of http://www.w3.org/TR/1998/WD-rdf-schema-19980409/ -#: ../src/rdf.cpp:272 +#: ../src/rdf.cpp:275 msgid "Coverage:" msgstr "Dekking:" -#: ../src/rdf.cpp:273 -msgid "Extent or scope of this document" -msgstr "Dekking of lading van dit document" - #: ../src/rdf.cpp:276 +msgid "The spatial or temporal topic of the resource, the spatial applicability of the resource, or the jurisdiction under which the resource is relevant" +msgstr "Ruimtelijke of tijdelijke dekking van het document, toepasbaarheid van het document of de jurisdictie waaronder het document valt" + +#: ../src/rdf.cpp:279 msgid "Description:" msgstr "Beschrijving:" -#: ../src/rdf.cpp:277 -msgid "A short account of the content of this document" -msgstr "Een korte samenvatting van de inhoud van dit document" +#: ../src/rdf.cpp:280 +msgid "An account of the resource" +msgstr "Een korte samenvatting van de inhoud" #. FIXME: need to handle 1 agent per line of input -#: ../src/rdf.cpp:281 +#: ../src/rdf.cpp:284 msgid "Contributors:" msgstr "Met dank aan:" -#: ../src/rdf.cpp:282 -msgid "Names of entities responsible for making contributions to the content of this document" -msgstr "Naam van degenen die bijdragen hebben geleverd aan de inhoud van dit document" +#: ../src/rdf.cpp:285 +msgid "An entity responsible for making contributions to the resource" +msgstr "Instantie verantwoordelijk voor bijdragen aan het document" #. TRANSLATORS: URL to a page that defines the license for the document -#: ../src/rdf.cpp:286 +#: ../src/rdf.cpp:289 msgid "URI:" msgstr "URI:" #. TRANSLATORS: this is where you put a URL to a page that defines the license -#: ../src/rdf.cpp:288 +#: ../src/rdf.cpp:291 msgid "URI to this document's license's namespace definition" msgstr "URI naar de naamsruimtedefinitie van de licentie van dit document" #. TRANSLATORS: fragment of XML representing the license of the document -#: ../src/rdf.cpp:292 +#: ../src/rdf.cpp:295 msgid "Fragment:" msgstr "Onderdeel:" -#: ../src/rdf.cpp:293 +#: ../src/rdf.cpp:296 msgid "XML fragment for the RDF 'License' section" msgstr "XML-fragment voor het RDF 'licentie'-deel" -#: ../src/rect-context.cpp:352 +#: ../src/rect-context.cpp:351 msgid "<b>Ctrl</b>: make square or integer-ratio rect, lock a rounded corner circular" msgstr "<b>Ctrl</b>: tekent een vierkant of simpele rechthoek, vergrendelt de hoekafronding op cirkelvormig" -#: ../src/rect-context.cpp:505 +#: ../src/rect-context.cpp:506 #, c-format msgid "<b>Rectangle</b>: %s × %s (constrained to ratio %d:%d); with <b>Shift</b> to draw around the starting point" msgstr "<b>Rechthoek</b>: %s × %s (verhouding %d:%d); gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/rect-context.cpp:508 +#: ../src/rect-context.cpp:509 #, c-format msgid "<b>Rectangle</b>: %s × %s (constrained to golden ratio 1.618 : 1); with <b>Shift</b> to draw around the starting point" msgstr "<b>Rechthoek</b>: %s × %s (gulden snede 1,618:1); gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/rect-context.cpp:510 +#: ../src/rect-context.cpp:511 #, c-format msgid "<b>Rectangle</b>: %s × %s (constrained to golden ratio 1 : 1.618); with <b>Shift</b> to draw around the starting point" msgstr "<b>Rechthoek</b>: %s × %s (gulden snede 1:1,618); gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/rect-context.cpp:514 +#: ../src/rect-context.cpp:515 #, c-format msgid "<b>Rectangle</b>: %s × %s; with <b>Ctrl</b> to make square or integer-ratio rectangle; with <b>Shift</b> to draw around the starting point" msgstr "<b>Rechthoek</b>: %s × %s; gebruik <b>Ctrl</b> om een vierkant of een rechthoek te maken; gebruik <b>Shift</b> om rond het startpunt te tekenen" -#: ../src/rect-context.cpp:539 +#: ../src/rect-context.cpp:540 msgid "Create rectangle" msgstr "Rechthoek maken" @@ -11744,19 +11589,19 @@ msgstr "Rechthoek maken" msgid "Fixup broken links" msgstr "" -#: ../src/select-context.cpp:181 +#: ../src/select-context.cpp:183 msgid "Click selection to toggle scale/rotation handles" msgstr "Klik op de selectie om te wisselen tussen draaien en vergroten/verkleinen" -#: ../src/select-context.cpp:182 +#: ../src/select-context.cpp:184 msgid "No objects selected. Click, Shift+click, Alt+scroll mouse on top of objects, or drag around objects to select." msgstr "Geen objecten geselecteerd. Klik, Shift+klik of Alt+scroll met de muis over objecten of sleep rond objecten om te selecteren." -#: ../src/select-context.cpp:241 +#: ../src/select-context.cpp:243 msgid "Move canceled." msgstr "Het verplaatsen is geannuleerd." -#: ../src/select-context.cpp:249 +#: ../src/select-context.cpp:251 msgid "Selection canceled." msgstr "Het selecteren is geannuleerd." @@ -11784,551 +11629,572 @@ msgstr "<b>Alt</b>: klik voor onderselectie; scroll muiswiel om de selectie te w msgid "Selected object is not a group. Cannot enter." msgstr "Het geselecteerde object is geen groep. Kan er niet in gaan." -#: ../src/selection-chemistry.cpp:377 +#: ../src/selection-chemistry.cpp:392 msgid "Delete text" msgstr "Tekst verwijderen" -#: ../src/selection-chemistry.cpp:385 +#: ../src/selection-chemistry.cpp:400 msgid "<b>Nothing</b> was deleted." msgstr "Er is <b>niets</b> verwijderd." -#: ../src/selection-chemistry.cpp:404 -#: ../src/text-context.cpp:1030 +#: ../src/selection-chemistry.cpp:419 +#: ../src/text-context.cpp:1031 #: ../src/ui/dialog/calligraphic-profile-rename.cpp:75 -#: ../src/ui/dialog/swatches.cpp:278 -#: ../src/widgets/erasor-toolbar.cpp:114 +#: ../src/ui/dialog/swatches.cpp:279 +#: ../src/widgets/eraser-toolbar.cpp:110 #: ../src/widgets/gradient-toolbar.cpp:1193 #: ../src/widgets/gradient-toolbar.cpp:1207 #: ../src/widgets/gradient-toolbar.cpp:1221 -#: ../src/widgets/node-toolbar.cpp:410 +#: ../src/widgets/node-toolbar.cpp:413 msgid "Delete" msgstr "Verwijderen" -#: ../src/selection-chemistry.cpp:432 +#: ../src/selection-chemistry.cpp:447 msgid "Select <b>object(s)</b> to duplicate." msgstr "Selecteer (een) <b>object(en)</b> om te dupliceren." -#: ../src/selection-chemistry.cpp:541 +#: ../src/selection-chemistry.cpp:556 msgid "Delete all" msgstr "Alles verwijderen" -#: ../src/selection-chemistry.cpp:737 +#: ../src/selection-chemistry.cpp:746 msgid "Select <b>some objects</b> to group." msgstr "Selecteer <b>twee objecten of meer objecten</b> om te groeperen." -#: ../src/selection-chemistry.cpp:752 -#: ../src/selection-describer.cpp:53 +#: ../src/selection-chemistry.cpp:761 +#: ../src/selection-describer.cpp:55 msgid "Group" msgstr "Groeperen" -#: ../src/selection-chemistry.cpp:766 +#: ../src/selection-chemistry.cpp:770 msgid "Select a <b>group</b> to ungroup." msgstr "Selecteer een <b>groep</b> om op te heffen" -#: ../src/selection-chemistry.cpp:807 +#: ../src/selection-chemistry.cpp:813 msgid "<b>No groups</b> to ungroup in the selection." msgstr "<b>Geen groepen geselecteerd</b> om op te heffen." -#: ../src/selection-chemistry.cpp:813 -#: ../src/sp-item-group.cpp:476 +#: ../src/selection-chemistry.cpp:819 +#: ../src/sp-item-group.cpp:479 msgid "Ungroup" msgstr "Groep opheffen" -#: ../src/selection-chemistry.cpp:899 +#: ../src/selection-chemistry.cpp:900 msgid "Select <b>object(s)</b> to raise." msgstr "Selecteer <b>object(en)</b> om naar boven te brengen." -#: ../src/selection-chemistry.cpp:905 -#: ../src/selection-chemistry.cpp:965 -#: ../src/selection-chemistry.cpp:998 -#: ../src/selection-chemistry.cpp:1062 +#: ../src/selection-chemistry.cpp:906 +#: ../src/selection-chemistry.cpp:962 +#: ../src/selection-chemistry.cpp:990 +#: ../src/selection-chemistry.cpp:1050 msgid "You cannot raise/lower objects from <b>different groups</b> or <b>layers</b>." msgstr "U kunt geen object uit <b>verschillende groepen</b> of <b>lagen</b> naar boven brengen of naar onder sturen." #. TRANSLATORS: "Raise" means "to raise an object" in the undo history -#: ../src/selection-chemistry.cpp:945 +#: ../src/selection-chemistry.cpp:946 msgctxt "Undo action" msgid "Raise" msgstr "Verhogen" -#: ../src/selection-chemistry.cpp:957 +#: ../src/selection-chemistry.cpp:954 msgid "Select <b>object(s)</b> to raise to top." msgstr "Selecteer <b>objecten</b> die u helemaal naar boven wilt brengen." -#: ../src/selection-chemistry.cpp:980 +#: ../src/selection-chemistry.cpp:977 msgid "Raise to top" msgstr "Bovenaan" -#: ../src/selection-chemistry.cpp:992 +#: ../src/selection-chemistry.cpp:984 msgid "Select <b>object(s)</b> to lower." msgstr "Selecteer <b>objecten</b> die u naar onderen wilt brengen." -#: ../src/selection-chemistry.cpp:1042 +#: ../src/selection-chemistry.cpp:1034 +#: ../src/widgets/ruler.cpp:209 msgid "Lower" msgstr "Omlaag" -#: ../src/selection-chemistry.cpp:1054 +#: ../src/selection-chemistry.cpp:1042 msgid "Select <b>object(s)</b> to lower to bottom." msgstr "Selecteer <b>objecten</b> die u naar helemaal naar onderen wilt sturen." -#: ../src/selection-chemistry.cpp:1089 +#: ../src/selection-chemistry.cpp:1077 msgid "Lower to bottom" msgstr "Onderaan" -#: ../src/selection-chemistry.cpp:1096 +#: ../src/selection-chemistry.cpp:1084 msgid "Nothing to undo." msgstr "Er is niets om ongedaan te maken." -#: ../src/selection-chemistry.cpp:1104 +#: ../src/selection-chemistry.cpp:1092 msgid "Nothing to redo." msgstr "Er is niets om opnieuw te doen." -#: ../src/selection-chemistry.cpp:1165 +#: ../src/selection-chemistry.cpp:1153 msgid "Paste" msgstr "Plakken" -#: ../src/selection-chemistry.cpp:1173 +#: ../src/selection-chemistry.cpp:1161 msgid "Paste style" msgstr "Stijl plakken" -#: ../src/selection-chemistry.cpp:1183 +#: ../src/selection-chemistry.cpp:1171 msgid "Paste live path effect" msgstr "Padeffect plakken" -#: ../src/selection-chemistry.cpp:1204 +#: ../src/selection-chemistry.cpp:1192 msgid "Select <b>object(s)</b> to remove live path effects from." msgstr "Selecteer <b>object(en)</b> om padeffect van te verwijderen." -#: ../src/selection-chemistry.cpp:1216 +#: ../src/selection-chemistry.cpp:1204 msgid "Remove live path effect" msgstr "Padeffect verwijderen" -#: ../src/selection-chemistry.cpp:1227 +#: ../src/selection-chemistry.cpp:1215 msgid "Select <b>object(s)</b> to remove filters from." msgstr "Selecteer <b>object(en)</b> om filters van te verwijderen." -#: ../src/selection-chemistry.cpp:1237 -#: ../src/ui/dialog/filter-effects-dialog.cpp:1448 +#: ../src/selection-chemistry.cpp:1225 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1461 msgid "Remove filter" msgstr "Verwijder filter" -#: ../src/selection-chemistry.cpp:1246 +#: ../src/selection-chemistry.cpp:1234 msgid "Paste size" msgstr "Grootte plakken" -#: ../src/selection-chemistry.cpp:1255 +#: ../src/selection-chemistry.cpp:1243 msgid "Paste size separately" msgstr "Grootte apart plakken" -#: ../src/selection-chemistry.cpp:1265 +#: ../src/selection-chemistry.cpp:1253 msgid "Select <b>object(s)</b> to move to the layer above." msgstr "Selecteer <b>objecten</b> om naar de bovenliggende laag te verplaatsen." -#: ../src/selection-chemistry.cpp:1291 +#: ../src/selection-chemistry.cpp:1279 msgid "Raise to next layer" msgstr "Verhoog naar de volgende laag" -#: ../src/selection-chemistry.cpp:1298 +#: ../src/selection-chemistry.cpp:1286 msgid "No more layers above." msgstr "Er zijn geen bovenliggende lagen." -#: ../src/selection-chemistry.cpp:1310 +#: ../src/selection-chemistry.cpp:1298 msgid "Select <b>object(s)</b> to move to the layer below." msgstr "Selecteer <b>objecten</b> om naar de onderliggende laag te verplaatsen." -#: ../src/selection-chemistry.cpp:1336 +#: ../src/selection-chemistry.cpp:1324 msgid "Lower to previous layer" msgstr "Verlaag naar de vorige laag" -#: ../src/selection-chemistry.cpp:1343 +#: ../src/selection-chemistry.cpp:1331 msgid "No more layers below." msgstr "Er zijn geen onderliggende lagen." -#: ../src/selection-chemistry.cpp:1355 +#: ../src/selection-chemistry.cpp:1343 msgid "Select <b>object(s)</b> to move." msgstr "Selecteer <b>object(en)</b> om te verplaatsen." -#: ../src/selection-chemistry.cpp:1372 -#: ../src/verbs.cpp:2513 +#: ../src/selection-chemistry.cpp:1360 +#: ../src/verbs.cpp:2572 msgid "Move selection to layer" msgstr "Selectie naar laag verplaatsen" -#: ../src/selection-chemistry.cpp:1596 +#: ../src/selection-chemistry.cpp:1584 msgid "Remove transform" msgstr "Transformatie verwijderen" -#: ../src/selection-chemistry.cpp:1699 +#: ../src/selection-chemistry.cpp:1687 msgid "Rotate 90° CCW" msgstr "90 graden draaien; TKI" -#: ../src/selection-chemistry.cpp:1699 +#: ../src/selection-chemistry.cpp:1687 msgid "Rotate 90° CW" msgstr "90 graden draaien; MKM" -#: ../src/selection-chemistry.cpp:1720 -#: ../src/seltrans.cpp:485 -#: ../src/ui/dialog/transformation.cpp:888 +#: ../src/selection-chemistry.cpp:1708 +#: ../src/seltrans.cpp:468 +#: ../src/ui/dialog/transformation.cpp:893 msgid "Rotate" msgstr "Roteren" -#: ../src/selection-chemistry.cpp:2099 +#: ../src/selection-chemistry.cpp:2087 msgid "Rotate by pixels" msgstr "Per pixel draaien" -#: ../src/selection-chemistry.cpp:2129 -#: ../src/seltrans.cpp:482 -#: ../src/ui/dialog/transformation.cpp:863 +#: ../src/selection-chemistry.cpp:2117 +#: ../src/seltrans.cpp:465 +#: ../src/ui/dialog/transformation.cpp:868 #: ../share/extensions/interp_att_g.inx.h:12 msgid "Scale" msgstr "Schalen" -#: ../src/selection-chemistry.cpp:2154 +#: ../src/selection-chemistry.cpp:2142 msgid "Scale by whole factor" msgstr "Met een hele factor schalen" -#: ../src/selection-chemistry.cpp:2169 +#: ../src/selection-chemistry.cpp:2157 msgid "Move vertically" msgstr "Verticaal verplaatsen" -#: ../src/selection-chemistry.cpp:2172 +#: ../src/selection-chemistry.cpp:2160 msgid "Move horizontally" msgstr "Horizontaal verplaatsen" -#: ../src/selection-chemistry.cpp:2175 -#: ../src/selection-chemistry.cpp:2201 -#: ../src/seltrans.cpp:479 -#: ../src/ui/dialog/transformation.cpp:802 +#: ../src/selection-chemistry.cpp:2163 +#: ../src/selection-chemistry.cpp:2189 +#: ../src/seltrans.cpp:462 +#: ../src/ui/dialog/transformation.cpp:807 msgid "Move" msgstr "Verplaatsen" -#: ../src/selection-chemistry.cpp:2195 +#: ../src/selection-chemistry.cpp:2183 msgid "Move vertically by pixels" msgstr "Verticaal verplaatsen per pixels" -#: ../src/selection-chemistry.cpp:2198 +#: ../src/selection-chemistry.cpp:2186 msgid "Move horizontally by pixels" msgstr "Horizontaal verplaatsen per pixels" -#: ../src/selection-chemistry.cpp:2330 +#: ../src/selection-chemistry.cpp:2318 msgid "The selection has no applied path effect." msgstr "De selectie bevat geen toegepast padeffect." -#: ../src/selection-chemistry.cpp:2533 +#: ../src/selection-chemistry.cpp:2521 msgctxt "Action" msgid "Clone" msgstr "Kloon" -#: ../src/selection-chemistry.cpp:2549 +#: ../src/selection-chemistry.cpp:2537 msgid "Select <b>clones</b> to relink." msgstr "Selecteer <b>klonen</b> om te herlinken." -#: ../src/selection-chemistry.cpp:2556 +#: ../src/selection-chemistry.cpp:2544 msgid "Copy an <b>object</b> to clipboard to relink clones to." msgstr "Een <b>object</b> naar het klembord kopiëren om klonen naar te herlinken" -#: ../src/selection-chemistry.cpp:2580 +#: ../src/selection-chemistry.cpp:2568 msgid "<b>No clones to relink</b> in the selection." msgstr "<b>Geen klonen om te herlinken</b> in de selectie" -#: ../src/selection-chemistry.cpp:2583 +#: ../src/selection-chemistry.cpp:2571 msgid "Relink clone" msgstr "Kloon herlinken" -#: ../src/selection-chemistry.cpp:2597 +#: ../src/selection-chemistry.cpp:2585 msgid "Select <b>clones</b> to unlink." msgstr "Selecteer <b>klonen</b> om te ontlinken." -#: ../src/selection-chemistry.cpp:2651 +#: ../src/selection-chemistry.cpp:2639 msgid "<b>No clones to unlink</b> in the selection." msgstr "<b>Geen klonen geselecteerd</b> om te ontkoppelen." -#: ../src/selection-chemistry.cpp:2655 +#: ../src/selection-chemistry.cpp:2643 msgid "Unlink clone" msgstr "Kloon ontkoppelen" -#: ../src/selection-chemistry.cpp:2668 +#: ../src/selection-chemistry.cpp:2656 msgid "Select a <b>clone</b> to go to its original. Select a <b>linked offset</b> to go to its source. Select a <b>text on path</b> to go to the path. Select a <b>flowed text</b> to go to its frame." msgstr "Selecteer een <b>kloon</b> om naar zijn origineel te gaan. Selecteer een <b>gekoppelde offset</b> om naar zijn bron te gaan. Selecteer <b>tekst op een pad</b> om naar het pad te gaan. Selecteer <b>ingekaderde tekst</b> om naar het vormende object te gaan." -#: ../src/selection-chemistry.cpp:2701 +#: ../src/selection-chemistry.cpp:2689 msgid "<b>Cannot find</b> the object to select (orphaned clone, offset, textpath, flowed text?)" msgstr "Het te selecteren object <b>is onvindbaar</b> (verweesde kloon, offset, tekstpad of ingekaderde tekst?)" -#: ../src/selection-chemistry.cpp:2707 +#: ../src/selection-chemistry.cpp:2695 msgid "The object you're trying to select is <b>not visible</b> (it is in <defs>)" msgstr "Het object dat u probeert te selecteren is <b>niet zichtbaar</b> (het staat in <defs>)" -#: ../src/selection-chemistry.cpp:2752 +#: ../src/selection-chemistry.cpp:2740 msgid "Select <b>one</b> path to clone." msgstr "Selecteer <b>een</b> pad om te klonen." -#: ../src/selection-chemistry.cpp:2756 +#: ../src/selection-chemistry.cpp:2744 msgid "Select one <b>path</b> to clone." msgstr "Selecteer een <b>pad</b> om te klonen." -#: ../src/selection-chemistry.cpp:2811 +#: ../src/selection-chemistry.cpp:2799 msgid "Select <b>object(s)</b> to convert to marker." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar een markering." -#: ../src/selection-chemistry.cpp:2879 +#: ../src/selection-chemistry.cpp:2867 msgid "Objects to marker" msgstr "Objecten naar markering" -#: ../src/selection-chemistry.cpp:2907 +#: ../src/selection-chemistry.cpp:2895 msgid "Select <b>object(s)</b> to convert to guides." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar hulplijnen." -#: ../src/selection-chemistry.cpp:2919 +#: ../src/selection-chemistry.cpp:2907 msgid "Objects to guides" msgstr "Objecten naar hulplijnen" -#: ../src/selection-chemistry.cpp:2938 +#: ../src/selection-chemistry.cpp:2926 msgid "Select <b>groups</b> to convert to symbols." msgstr "Selecteer <b>groepen</b> om naar symbolen te converteren." -#: ../src/selection-chemistry.cpp:2958 +#: ../src/selection-chemistry.cpp:2946 msgid "No <b>groups</b> converted to symbols." msgstr "Geen <b>groepen</b> naar symbolen geconverteerd." #. Group just disappears, nothing to select. -#: ../src/selection-chemistry.cpp:2965 +#: ../src/selection-chemistry.cpp:2953 msgid "Group to symbol" msgstr "Groep naar symbool" -#: ../src/selection-chemistry.cpp:3029 +#: ../src/selection-chemistry.cpp:3017 msgid "Select a <b>symbol</b> to extract objects from." msgstr "Selecteer een <b>symbool</b> om objecten uit te halen." -#: ../src/selection-chemistry.cpp:3038 +#: ../src/selection-chemistry.cpp:3026 msgid "Select only one <b>symbol</b> to convert to group." msgstr "Selecteer slechts één <b>symbool</b> om naar een groep te converteren." -#: ../src/selection-chemistry.cpp:3081 +#: ../src/selection-chemistry.cpp:3067 msgid "Group from symbol" msgstr "Groep van symbool" -#: ../src/selection-chemistry.cpp:3098 +#: ../src/selection-chemistry.cpp:3084 msgid "Select <b>object(s)</b> to convert to pattern." msgstr "Selecteer eerst de <b>objecten</b> om te converteren naar een patroon." -#: ../src/selection-chemistry.cpp:3186 +#: ../src/selection-chemistry.cpp:3172 msgid "Objects to pattern" msgstr "Objecten naar patroon" -#: ../src/selection-chemistry.cpp:3202 +#: ../src/selection-chemistry.cpp:3188 msgid "Select an <b>object with pattern fill</b> to extract objects from." msgstr "Selecteer <b>objecten met patroonvulling</b> om objecten uit te halen." -#: ../src/selection-chemistry.cpp:3255 +#: ../src/selection-chemistry.cpp:3241 msgid "<b>No pattern fills</b> in the selection." msgstr "Er zijn geen <b>objecten met patroonvulling</b> geselecteerd." -#: ../src/selection-chemistry.cpp:3258 +#: ../src/selection-chemistry.cpp:3244 msgid "Pattern to objects" msgstr "Patroon naar objecten" -#: ../src/selection-chemistry.cpp:3349 +#: ../src/selection-chemistry.cpp:3335 msgid "Select <b>object(s)</b> to make a bitmap copy." msgstr "Selecteer eerst de <b>objecten</b> om een bitmapkopie van te maken." -#: ../src/selection-chemistry.cpp:3353 +#: ../src/selection-chemistry.cpp:3339 msgid "Rendering bitmap..." msgstr "Renderen van bitmap..." -#: ../src/selection-chemistry.cpp:3530 +#: ../src/selection-chemistry.cpp:3516 msgid "Create bitmap" msgstr "Bitmap maken" -#: ../src/selection-chemistry.cpp:3562 +#: ../src/selection-chemistry.cpp:3548 msgid "Select <b>object(s)</b> to create clippath or mask from." msgstr "Selecteer de <b>objecten</b> om een afsnijpad/masker van te maken." -#: ../src/selection-chemistry.cpp:3565 +#: ../src/selection-chemistry.cpp:3551 msgid "Select mask object and <b>object(s)</b> to apply clippath or mask to." msgstr "Selecteer het maskerobject en de <b>object(en)</b> om het afsnijpad/masker op toe te passen." -#: ../src/selection-chemistry.cpp:3746 +#: ../src/selection-chemistry.cpp:3732 msgid "Set clipping path" msgstr "Afsnijpad inschakelen" -#: ../src/selection-chemistry.cpp:3748 +#: ../src/selection-chemistry.cpp:3734 msgid "Set mask" msgstr "Masker inschakelen" -#: ../src/selection-chemistry.cpp:3763 +#: ../src/selection-chemistry.cpp:3749 msgid "Select <b>object(s)</b> to remove clippath or mask from." msgstr "Selecteer <b>object(en)</b> om het afsnijpad/masker van uit te schakelen." -#: ../src/selection-chemistry.cpp:3874 +#: ../src/selection-chemistry.cpp:3860 msgid "Release clipping path" msgstr "Afsnijpad uitschakelen" -#: ../src/selection-chemistry.cpp:3876 +#: ../src/selection-chemistry.cpp:3862 msgid "Release mask" msgstr "Masker uitschakelen" -#: ../src/selection-chemistry.cpp:3895 +#: ../src/selection-chemistry.cpp:3881 msgid "Select <b>object(s)</b> to fit canvas to." msgstr "Selecteer <b>object(en)</b> voor aanpassing van het canvas" #. Fit Page -#: ../src/selection-chemistry.cpp:3915 -#: ../src/verbs.cpp:2839 +#: ../src/selection-chemistry.cpp:3901 +#: ../src/verbs.cpp:2896 msgid "Fit Page to Selection" msgstr "Pagina naar selectie schalen" -#: ../src/selection-chemistry.cpp:3944 -#: ../src/verbs.cpp:2841 +#: ../src/selection-chemistry.cpp:3930 +#: ../src/verbs.cpp:2898 msgid "Fit Page to Drawing" msgstr "Pagina naar tekening schalen" -#: ../src/selection-chemistry.cpp:3965 -#: ../src/verbs.cpp:2843 +#: ../src/selection-chemistry.cpp:3951 +#: ../src/verbs.cpp:2900 msgid "Fit Page to Selection or Drawing" msgstr "Pagina naar selectie of inhoud schalen" #. TRANSLATORS: "Link" means internet link (anchor) -#: ../src/selection-describer.cpp:45 +#: ../src/selection-describer.cpp:47 msgctxt "Web" msgid "Link" msgstr "Link" -#: ../src/selection-describer.cpp:47 +#: ../src/selection-describer.cpp:49 msgid "Circle" msgstr "Cirkel" #. Ellipse -#: ../src/selection-describer.cpp:49 -#: ../src/selection-describer.cpp:74 +#: ../src/selection-describer.cpp:51 +#: ../src/selection-describer.cpp:78 #: ../src/ui/dialog/inkscape-preferences.cpp:403 -#: ../src/widgets/pencil-toolbar.cpp:192 +#: ../src/widgets/pencil-toolbar.cpp:187 msgid "Ellipse" msgstr "Ellips" -#: ../src/selection-describer.cpp:51 +#: ../src/selection-describer.cpp:53 msgid "Flowed text" msgstr "Ingekaderde tekst" -#: ../src/selection-describer.cpp:57 +#: ../src/selection-describer.cpp:59 msgid "Line" msgstr "Lijn" -#: ../src/selection-describer.cpp:59 +#: ../src/selection-describer.cpp:61 msgid "Path" msgstr "Pad" -#: ../src/selection-describer.cpp:61 -#: ../src/widgets/star-toolbar.cpp:474 +#: ../src/selection-describer.cpp:63 +#: ../src/widgets/star-toolbar.cpp:470 msgid "Polygon" msgstr "Veelhoek" -#: ../src/selection-describer.cpp:63 +#: ../src/selection-describer.cpp:65 msgid "Polyline" msgstr "Veellijn" #. Rectangle -#: ../src/selection-describer.cpp:65 +#: ../src/selection-describer.cpp:67 #: ../src/ui/dialog/inkscape-preferences.cpp:393 msgid "Rectangle" msgstr "Rechthoek" #. 3D box -#: ../src/selection-describer.cpp:67 +#: ../src/selection-describer.cpp:69 #: ../src/ui/dialog/inkscape-preferences.cpp:398 msgid "3D Box" msgstr "3D-kubus" -#: ../src/selection-describer.cpp:69 +#: ../src/selection-describer.cpp:71 msgctxt "Object" msgid "Text" msgstr "Tekst" +#: ../src/selection-describer.cpp:74 +msgctxt "Object" +msgid "Symbol" +msgstr "Symbool" + #. TRANSLATORS: "Clone" is a noun, type of object -#: ../src/selection-describer.cpp:72 +#: ../src/selection-describer.cpp:76 msgctxt "Object" msgid "Clone" msgstr "Kloon" -#: ../src/selection-describer.cpp:76 +#: ../src/selection-describer.cpp:80 #: ../share/extensions/gcodetools_lathe.inx.h:9 msgid "Offset path" msgstr "Rand object" #. Spiral -#: ../src/selection-describer.cpp:78 +#: ../src/selection-describer.cpp:82 #: ../src/ui/dialog/inkscape-preferences.cpp:411 #: ../share/extensions/gcodetools_area.inx.h:11 msgid "Spiral" msgstr "Spiraal" #. Star -#: ../src/selection-describer.cpp:80 +#: ../src/selection-describer.cpp:84 #: ../src/ui/dialog/inkscape-preferences.cpp:407 -#: ../src/widgets/star-toolbar.cpp:481 +#: ../src/widgets/star-toolbar.cpp:477 msgid "Star" msgstr "Ster" -#: ../src/selection-describer.cpp:150 +#: ../src/selection-describer.cpp:153 msgid "root" msgstr "basis" -#: ../src/selection-describer.cpp:162 +#: ../src/selection-describer.cpp:155 +#: ../src/widgets/ege-paint-def.cpp:67 +#: ../src/widgets/ege-paint-def.cpp:91 +msgid "none" +msgstr "Niet" + +#: ../src/selection-describer.cpp:167 #, c-format msgid "layer <b>%s</b>" msgstr "laag <b>%s</b>" -#: ../src/selection-describer.cpp:164 +#: ../src/selection-describer.cpp:169 #, c-format msgid "layer <b><i>%s</i></b>" msgstr "laag <b><i>%s</i></b>" -#: ../src/selection-describer.cpp:173 +#: ../src/selection-describer.cpp:178 #, c-format msgid "<i>%s</i>" msgstr "<i>%s</i>" -#: ../src/selection-describer.cpp:182 +#: ../src/selection-describer.cpp:187 #, c-format msgid " in %s" msgstr " in %s" -#: ../src/selection-describer.cpp:184 +#: ../src/selection-describer.cpp:189 +#, c-format +msgid " hidden in definitions" +msgstr " verborgen in de definities" + +#: ../src/selection-describer.cpp:191 #, c-format msgid " in group %s (%s)" msgstr " in groep %s (%s)" -#: ../src/selection-describer.cpp:186 +#: ../src/selection-describer.cpp:193 #, c-format msgid " in <b>%i</b> parents (%s)" msgid_plural " in <b>%i</b> parents (%s)" msgstr[0] " in <b>%i</b> ouder (%s)" msgstr[1] " in <b>%i</b> ouders (%s)" -#: ../src/selection-describer.cpp:189 +#: ../src/selection-describer.cpp:196 #, c-format msgid " in <b>%i</b> layers" msgid_plural " in <b>%i</b> layers" msgstr[0] " in <b>%i</b> lagen" msgstr[1] " in <b>%i</b> lagen" -#: ../src/selection-describer.cpp:199 +#: ../src/selection-describer.cpp:206 msgid "Convert symbol to group to edit" msgstr "Symbool naar bewerkbare groep omzetten" -#: ../src/selection-describer.cpp:203 +#: ../src/selection-describer.cpp:210 +msgid "Remove from symbols tray to edit symbol" +msgstr "" + +#: ../src/selection-describer.cpp:214 msgid "Use <b>Shift+D</b> to look up original" msgstr "Gebruik <b>Shift+D</b> om het origineel te vinden" -#: ../src/selection-describer.cpp:207 +#: ../src/selection-describer.cpp:218 msgid "Use <b>Shift+D</b> to look up path" msgstr "Gebruik <b>Shift+D</b> om het pad te vinden" -#: ../src/selection-describer.cpp:211 +#: ../src/selection-describer.cpp:222 msgid "Use <b>Shift+D</b> to look up frame" msgstr "Gebruik <b>Shift+D</b> om het kaderobject te vinden" #. this is only used with 2 or more objects -#: ../src/selection-describer.cpp:226 +#: ../src/selection-describer.cpp:237 #: ../src/spray-context.cpp:203 #: ../src/tweak-context.cpp:189 #, c-format @@ -12338,7 +12204,7 @@ msgstr[0] "<b>%i</b> object geselecteerd" msgstr[1] "<b>%i</b> objecten geselecteerd" #. this is only used with 2 or more objects -#: ../src/selection-describer.cpp:231 +#: ../src/selection-describer.cpp:242 #, c-format msgid "<b>%i</b> object of type <b>%s</b>" msgid_plural "<b>%i</b> objects of type <b>%s</b>" @@ -12346,7 +12212,7 @@ msgstr[0] "<b>%d</b> object gevonden van type <b>%s</b>" msgstr[1] "<b>%d</b> objecten gevonden van type <b>%s</b>" #. this is only used with 2 or more objects -#: ../src/selection-describer.cpp:236 +#: ../src/selection-describer.cpp:247 #, c-format msgid "<b>%i</b> object of types <b>%s</b>, <b>%s</b>" msgid_plural "<b>%i</b> objects of types <b>%s</b>, <b>%s</b>" @@ -12354,7 +12220,7 @@ msgstr[0] "<b>%d</b> object gevonden van type <b>%s</b>, <b>%s</b>" msgstr[1] "<b>%d</b> objecten gevonden van type <b>%s</b>, <b>%s</b>" #. this is only used with 2 or more objects -#: ../src/selection-describer.cpp:241 +#: ../src/selection-describer.cpp:252 #, c-format msgid "<b>%i</b> object of types <b>%s</b>, <b>%s</b>, <b>%s</b>" msgid_plural "<b>%i</b> objects of types <b>%s</b>, <b>%s</b>, <b>%s</b>" @@ -12362,93 +12228,93 @@ msgstr[0] "<b>%d</b> object gevonden van type <b>%s</b>, <b>%s</b>, <b>%s</b>" msgstr[1] "<b>%d</b> objecten gevonden van type <b>%s</b>, <b>%s</b>, <b>%s</b>" #. this is only used with 2 or more objects -#: ../src/selection-describer.cpp:246 +#: ../src/selection-describer.cpp:257 #, c-format msgid "<b>%i</b> object of <b>%i</b> types" msgid_plural "<b>%i</b> objects of <b>%i</b> types" msgstr[0] "<b>%d</b> object gevonden van <b>%i</b> types" msgstr[1] "<b>%d</b> objecten gevonden van <b>%i</b> types" -#: ../src/selection-describer.cpp:256 +#: ../src/selection-describer.cpp:267 #, c-format msgid "; <i>%d filtered object</i> " msgid_plural "; <i>%d filtered objects</i> " msgstr[0] "; <i>%d gefilterd object</i>" msgstr[1] "; <i>%d gefilterde objecten</i>" -#: ../src/seltrans.cpp:488 -#: ../src/ui/dialog/transformation.cpp:946 +#: ../src/seltrans.cpp:471 +#: ../src/ui/dialog/transformation.cpp:981 msgid "Skew" msgstr "Scheeftrekken" -#: ../src/seltrans.cpp:500 +#: ../src/seltrans.cpp:483 msgid "Set center" msgstr "Centrum instellen" -#: ../src/seltrans.cpp:575 +#: ../src/seltrans.cpp:558 msgid "Stamp" msgstr "Stempel" -#: ../src/seltrans.cpp:604 -msgid "<b>Squeeze or stretch</b> selection; with <b>Ctrl</b> to scale uniformly; with <b>Shift</b> to scale around rotation center" -msgstr "Selectie <b>samendrukken of uitrekken</b>; <b>Ctrl</b> behoudt de verhoudingen; <b>Shift</b> vergroot/verkleint om het rotatiemiddelpunt" - -#: ../src/seltrans.cpp:605 -msgid "<b>Scale</b> selection; with <b>Ctrl</b> to scale uniformly; with <b>Shift</b> to scale around rotation center" -msgstr "Selectie <b>vergroten of verkleinen</b>; <b>Ctrl</b> behoudt de verhoudingen; <b>Shift</b> vergroot/verkleint om het rotatiemiddelpunt" - -#: ../src/seltrans.cpp:609 -msgid "<b>Skew</b> selection; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to skew around the opposite side" -msgstr "Selectie <b>scheeftrekken</b>; <b>Ctrl</b> trekt in stappen, <b>Shift</b> trekt om de tegenoverliggende hoek" - -#: ../src/seltrans.cpp:610 -msgid "<b>Rotate</b> selection; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to rotate around the opposite corner" -msgstr "Selectie <b>draaien</b>; <b>Ctrl</b> draait in stappen, <b>Shift</b> draait om de tegenoverliggende hoek" - -#: ../src/seltrans.cpp:623 -msgid "<b>Center</b> of rotation and skewing: drag to reposition; scaling with Shift also uses this center" -msgstr "Het <b>centrum</b> van draaien en scheeftrekken: sleep om te verplaatsen; vergroten/verkleinen met <b>Shift</b> gebruikt ook dit centrum." - -#: ../src/seltrans.cpp:773 +#: ../src/seltrans.cpp:711 msgid "Reset center" msgstr "Centrum herstellen" -#: ../src/seltrans.cpp:1017 -#: ../src/seltrans.cpp:1114 +#: ../src/seltrans.cpp:938 +#: ../src/seltrans.cpp:1035 #, c-format msgid "<b>Scale</b>: %0.2f%% x %0.2f%%; with <b>Ctrl</b> to lock ratio" msgstr "<b>Vergroten/verkleinen</b>: %0.2f%% x %0.2f%%; gebruik <b>Ctrl</b> om de verhouding te vergrendelen" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) -#: ../src/seltrans.cpp:1228 +#: ../src/seltrans.cpp:1167 #, c-format msgid "<b>Skew</b>: %0.2f°; with <b>Ctrl</b> to snap angle" msgstr "<b>Scheeftrekken</b>: %0.2f°; gebruik <b>Ctrl</b> om in stappen te trekken" #. TRANSLATORS: don't modify the first ";" #. (it will NOT be displayed as ";" - only the second one will be) -#: ../src/seltrans.cpp:1303 +#: ../src/seltrans.cpp:1242 #, c-format msgid "<b>Rotate</b>: %0.2f°; with <b>Ctrl</b> to snap angle" msgstr "<b>Draaien</b>: %0.2f°; gebruik <b>Ctrl</b> in stappen te draaien" -#: ../src/seltrans.cpp:1338 +#: ../src/seltrans.cpp:1279 #, c-format msgid "Move <b>center</b> to %s, %s" msgstr "<b>Centrum</b> verplaatsen naar %s, %s" -#: ../src/seltrans.cpp:1514 +#: ../src/seltrans.cpp:1433 #, c-format msgid "<b>Move</b> by %s, %s; with <b>Ctrl</b> to restrict to horizontal/vertical; with <b>Shift</b> to disable snapping" msgstr "<b>Verplaatsen</b> met %s, %s; gebruik <b>Ctrl</b> om het te beperken tot horizontaal en verticaal, gebruik <b>Shift</b> om magnetisch raster uit te zetten." -#: ../src/shortcuts.cpp:225 +#: ../src/seltrans-handles.cpp:9 +msgid "<b>Squeeze or stretch</b> selection; with <b>Ctrl</b> to scale uniformly; with <b>Shift</b> to scale around rotation center" +msgstr "Selectie <b>samendrukken of uitrekken</b>; <b>Ctrl</b> behoudt de verhoudingen; <b>Shift</b> vergroot/verkleint om het rotatiemiddelpunt" + +#: ../src/seltrans-handles.cpp:10 +msgid "<b>Scale</b> selection; with <b>Ctrl</b> to scale uniformly; with <b>Shift</b> to scale around rotation center" +msgstr "Selectie <b>vergroten of verkleinen</b>; <b>Ctrl</b> behoudt de verhoudingen; <b>Shift</b> vergroot/verkleint om het rotatiemiddelpunt" + +#: ../src/seltrans-handles.cpp:11 +msgid "<b>Skew</b> selection; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to skew around the opposite side" +msgstr "Selectie <b>scheeftrekken</b>; <b>Ctrl</b> trekt in stappen, <b>Shift</b> trekt om de tegenoverliggende hoek" + +#: ../src/seltrans-handles.cpp:12 +msgid "<b>Rotate</b> selection; with <b>Ctrl</b> to snap angle; with <b>Shift</b> to rotate around the opposite corner" +msgstr "Selectie <b>draaien</b>; <b>Ctrl</b> draait in stappen, <b>Shift</b> draait om de tegenoverliggende hoek" + +#: ../src/seltrans-handles.cpp:13 +msgid "<b>Center</b> of rotation and skewing: drag to reposition; scaling with Shift also uses this center" +msgstr "Het <b>centrum</b> van draaien en scheeftrekken: sleep om te verplaatsen; vergroten/verkleinen met <b>Shift</b> gebruikt ook dit centrum." + +#: ../src/shortcuts.cpp:226 #, c-format msgid "Keyboard directory (%s) is unavailable." msgstr "Toetsenbordmap (%s) is niet beschikbaar." -#: ../src/shortcuts.cpp:369 +#: ../src/shortcuts.cpp:370 msgid "Select a file to import" msgstr "Selecteer een bestand om te importeren" @@ -12461,20 +12327,20 @@ msgstr "<b>Koppeling</b> naar %s" msgid "<b>Link</b> without URI" msgstr "<b>Koppeling</b> zonder URI" -#: ../src/sp-ellipse.cpp:452 -#: ../src/sp-ellipse.cpp:775 +#: ../src/sp-ellipse.cpp:457 +#: ../src/sp-ellipse.cpp:780 msgid "<b>Ellipse</b>" msgstr "<b>Ellips</b>" -#: ../src/sp-ellipse.cpp:566 +#: ../src/sp-ellipse.cpp:571 msgid "<b>Circle</b>" msgstr "<b>Cirkel</b>" -#: ../src/sp-ellipse.cpp:770 +#: ../src/sp-ellipse.cpp:775 msgid "<b>Segment</b>" msgstr "<b>Segment</b>" -#: ../src/sp-ellipse.cpp:772 +#: ../src/sp-ellipse.cpp:777 msgid "<b>Arc</b>" msgstr "<b>Boog</b>" @@ -12493,55 +12359,55 @@ msgstr "Gebied met tekstvormen" msgid "Flow excluded region" msgstr "Gebied zonder tekstvormen" -#: ../src/sp-guide.cpp:290 +#: ../src/sp-guide.cpp:289 msgid "Create Guides Around the Page" msgstr "Hulplijnen rond pagina maken" -#: ../src/sp-guide.cpp:302 -#: ../src/verbs.cpp:2410 +#: ../src/sp-guide.cpp:301 +#: ../src/verbs.cpp:2467 msgid "Delete All Guides" msgstr "Alle hulplijnen verwijderen" #. Guide has probably been deleted and no longer has an attached namedview. -#: ../src/sp-guide.cpp:462 +#: ../src/sp-guide.cpp:461 #, c-format msgid "Deleted" msgstr "Verwijderd" -#: ../src/sp-guide.cpp:471 +#: ../src/sp-guide.cpp:470 msgid "<b>Shift+drag</b> to rotate, <b>Ctrl+drag</b> to move origin, <b>Del</b> to delete" msgstr "<b>Shift+sleep</b> om te draaien, <b>Ctrl+sleep</b> om de oorsprong te verplaatsen, <b>Del</b> om te verwijderen" -#: ../src/sp-guide.cpp:475 +#: ../src/sp-guide.cpp:474 #, c-format msgid "vertical, at %s" msgstr "verticaal, op %s" -#: ../src/sp-guide.cpp:478 +#: ../src/sp-guide.cpp:477 #, c-format msgid "horizontal, at %s" msgstr "horizontaal, op %s" -#: ../src/sp-guide.cpp:483 +#: ../src/sp-guide.cpp:482 #, c-format msgid "at %d degrees, through (%s,%s)" msgstr "op %d graden, door (%s,%s)" -#: ../src/sp-image.cpp:1068 +#: ../src/sp-image.cpp:1069 msgid "embedded" msgstr "ingevoegd" -#: ../src/sp-image.cpp:1076 +#: ../src/sp-image.cpp:1077 #, c-format msgid "<b>Image with bad reference</b>: %s" msgstr "<b>Afbeelding met ongeldige referentie</b>: %s" -#: ../src/sp-image.cpp:1077 +#: ../src/sp-image.cpp:1078 #, c-format msgid "<b>Image</b> %d × %d: %s" msgstr "<b>Afbeelding</b> %d × %d: %s" -#: ../src/sp-item-group.cpp:718 +#: ../src/sp-item-group.cpp:721 #, c-format msgid "<b>Group</b> of <b>%d</b> object" msgid_plural "<b>Group</b> of <b>%d</b> objects" @@ -12549,7 +12415,7 @@ msgstr[0] "<b>Groep</b> van <b>%d</b> object" msgstr[1] "<b>Groep</b> van <b>%d</b> objecten" #: ../src/sp-item.cpp:977 -#: ../src/verbs.cpp:207 +#: ../src/verbs.cpp:213 msgid "Object" msgstr "Object" @@ -12651,16 +12517,16 @@ msgstr[0] "<b>Veelhoek</b> met %d hoek" msgstr[1] "<b>Veelhoek</b> met %d hoeken" #. TRANSLATORS: For description of font with no name. -#: ../src/sp-text.cpp:392 +#: ../src/sp-text.cpp:390 msgid "<no name found>" msgstr "<geen naam gevonden>" -#: ../src/sp-text.cpp:404 +#: ../src/sp-text.cpp:403 #, c-format msgid "<b>Text on path</b>%s (%s, %s)" msgstr "<b>Tekst op een pad</b>%s (%s, %s)" -#: ../src/sp-text.cpp:405 +#: ../src/sp-text.cpp:404 #, c-format msgid "<b>Text</b>%s (%s, %s)" msgstr "<b>Tekst</b>%s (%s, %s)" @@ -12682,31 +12548,31 @@ msgstr "<b>Verweesde gekloonde tekst</b>" msgid "<b>Text span</b>" msgstr "<b>Tekstbreedte</b>" -#: ../src/sp-use.cpp:303 -#, fuzzy, c-format +#: ../src/sp-use.cpp:299 +#, c-format msgid "<b>'%s' Symbol</b>" -msgstr "<b>Kloon van symbool</b>" +msgstr "" #. TRANSLATORS: Used for statusbar description for long <use> chains: #. * "Clone of: Clone of: ... in Layer 1". -#: ../src/sp-use.cpp:311 +#: ../src/sp-use.cpp:307 msgid "..." msgstr "..." -#: ../src/sp-use.cpp:319 +#: ../src/sp-use.cpp:315 #, c-format msgid "<b>Clone</b> of: %s" msgstr "<b>Kloon</b> van %s" -#: ../src/sp-use.cpp:323 +#: ../src/sp-use.cpp:319 msgid "<b>Orphaned clone</b>" msgstr "<b>Verweesde kloon</b>" -#: ../src/spiral-context.cpp:304 +#: ../src/spiral-context.cpp:303 msgid "<b>Ctrl</b>: snap angle" msgstr "<b>Ctrl</b>: draait in stappen" -#: ../src/spiral-context.cpp:306 +#: ../src/spiral-context.cpp:305 msgid "<b>Alt</b>: lock spiral radius" msgstr "<b>Alt</b>: vergrendelt de spiraalstraal" @@ -12719,119 +12585,119 @@ msgstr "<b>Spiraal</b>: straal %s, hoek %5g°; gebruik <b>Ctrl</b> om in sta msgid "Create spiral" msgstr "Spiraal maken" -#: ../src/splivarot.cpp:68 -#: ../src/splivarot.cpp:74 +#: ../src/splivarot.cpp:69 +#: ../src/splivarot.cpp:75 msgid "Union" msgstr "Vereniging" -#: ../src/splivarot.cpp:80 +#: ../src/splivarot.cpp:81 msgid "Intersection" msgstr "Overlap" -#: ../src/splivarot.cpp:86 -#: ../src/splivarot.cpp:92 +#: ../src/splivarot.cpp:87 +#: ../src/splivarot.cpp:93 msgid "Difference" msgstr "Verschil" -#: ../src/splivarot.cpp:98 +#: ../src/splivarot.cpp:99 msgid "Exclusion" msgstr "Uitsluiten" -#: ../src/splivarot.cpp:103 +#: ../src/splivarot.cpp:104 msgid "Division" msgstr "Splitsen" -#: ../src/splivarot.cpp:108 +#: ../src/splivarot.cpp:109 msgid "Cut path" msgstr "Pad versnijden" -#: ../src/splivarot.cpp:123 +#: ../src/splivarot.cpp:134 msgid "Select <b>at least 2 paths</b> to perform a boolean operation." msgstr "Selecteer <b>minstens twee paden</b> om een booleaanse bewerking uit te voeren." -#: ../src/splivarot.cpp:127 +#: ../src/splivarot.cpp:138 msgid "Select <b>at least 1 path</b> to perform a boolean union." msgstr "Selecteer <b>minstens één pad</b> om een booleaanse vereniging uit te voeren." -#: ../src/splivarot.cpp:133 +#: ../src/splivarot.cpp:144 msgid "Select <b>exactly 2 paths</b> to perform difference, division, or path cut." msgstr "Selecteer <b>precies twee paden</b> om een verschil, uitsluiting, splitsing of padversnijding uit te voeren." -#: ../src/splivarot.cpp:149 -#: ../src/splivarot.cpp:164 +#: ../src/splivarot.cpp:160 +#: ../src/splivarot.cpp:175 msgid "Unable to determine the <b>z-order</b> of the objects selected for difference, XOR, division, or path cut." msgstr "Er kon niet worden bepaald welk object <b>boven de andere</b> lag om een verschil, uitsluiting, splitsing of pad-snijding uit te voeren." -#: ../src/splivarot.cpp:194 +#: ../src/splivarot.cpp:205 msgid "One of the objects is <b>not a path</b>, cannot perform boolean operation." msgstr "Een van de geselecteerde objecten <b>is geen pad</b>, de booleaansche bewerking kan niet worden uitgevoerd." -#: ../src/splivarot.cpp:918 +#: ../src/splivarot.cpp:954 msgid "Select <b>stroked path(s)</b> to convert stroke to path." msgstr "Selecteer <b>paden</b> waarvan de omlijning omgezet moet worden naar een pad." -#: ../src/splivarot.cpp:1271 +#: ../src/splivarot.cpp:1307 msgid "Convert stroke to path" msgstr "Omlijning omzetten naar pad" #. TRANSLATORS: "to outline" means "to convert stroke to path" -#: ../src/splivarot.cpp:1274 +#: ../src/splivarot.cpp:1310 msgid "<b>No stroked paths</b> in the selection." msgstr "Er zijn <b>geen omlijnde paden</b> geselecteerd." -#: ../src/splivarot.cpp:1345 +#: ../src/splivarot.cpp:1381 msgid "Selected object is <b>not a path</b>, cannot inset/outset." msgstr "Het geselecteerde object is <b>geen pad</b>, en kan dus niet versmalt/verbreed worden." -#: ../src/splivarot.cpp:1441 -#: ../src/splivarot.cpp:1506 +#: ../src/splivarot.cpp:1477 +#: ../src/splivarot.cpp:1542 msgid "Create linked offset" msgstr "Gekoppelde offset maken" -#: ../src/splivarot.cpp:1442 -#: ../src/splivarot.cpp:1507 +#: ../src/splivarot.cpp:1478 +#: ../src/splivarot.cpp:1543 msgid "Create dynamic offset" msgstr "Dynamische offset maken" -#: ../src/splivarot.cpp:1532 +#: ../src/splivarot.cpp:1568 msgid "Select <b>path(s)</b> to inset/outset." msgstr "Selecteer de <b>paden</b> om te versmallen/verbreden." -#: ../src/splivarot.cpp:1745 +#: ../src/splivarot.cpp:1781 msgid "Outset path" msgstr "Pad verbreden" -#: ../src/splivarot.cpp:1745 +#: ../src/splivarot.cpp:1781 msgid "Inset path" msgstr "Pad versmallen" -#: ../src/splivarot.cpp:1747 +#: ../src/splivarot.cpp:1783 msgid "<b>No paths</b> to inset/outset in the selection." msgstr "Er zijn <b>geen paden</b> geselecteerd om te vernauwen/verwijden." -#: ../src/splivarot.cpp:1909 +#: ../src/splivarot.cpp:1945 msgid "Simplifying paths (separately):" msgstr "Vereenvoudigen van paden (apart):" -#: ../src/splivarot.cpp:1911 +#: ../src/splivarot.cpp:1947 msgid "Simplifying paths:" msgstr "Vereenvoudigen van paden:" -#: ../src/splivarot.cpp:1948 +#: ../src/splivarot.cpp:1984 #, c-format msgid "%s <b>%d</b> of <b>%d</b> paths simplified..." msgstr "%s <b>%d</b> van <b>%d</b> paden vereenvoudigd..." -#: ../src/splivarot.cpp:1960 +#: ../src/splivarot.cpp:1996 #, c-format msgid "<b>%d</b> paths simplified." msgstr "<b>%d</b> paden zijn vereenvoudigd." -#: ../src/splivarot.cpp:1974 +#: ../src/splivarot.cpp:2010 msgid "Select <b>path(s)</b> to simplify." msgstr "Selecteer <b>paden</b> om te vereenvoudigen." -#: ../src/splivarot.cpp:1990 +#: ../src/splivarot.cpp:2026 msgid "<b>No paths</b> to simplify in the selection." msgstr "Er zijn <b>geen paden</b> geselecteerd om te vereenvoudigen." @@ -12861,12 +12727,12 @@ msgid "<b>Nothing selected!</b> Select objects to spray." msgstr "<b>Niets geselecteerd!</b> Selecteer objecten voor verstuiving." #: ../src/spray-context.cpp:745 -#: ../src/widgets/spray-toolbar.cpp:182 +#: ../src/widgets/spray-toolbar.cpp:178 msgid "Spray with copies" msgstr "Verstuiven met kopieën" #: ../src/spray-context.cpp:749 -#: ../src/widgets/spray-toolbar.cpp:189 +#: ../src/widgets/spray-toolbar.cpp:185 msgid "Spray with clones" msgstr "Verstuiven met klonen" @@ -12874,7 +12740,7 @@ msgstr "Verstuiven met klonen" msgid "Spray in single path" msgstr "Verstuiven in één richting" -#: ../src/star-context.cpp:320 +#: ../src/star-context.cpp:319 msgid "<b>Ctrl</b>: snap angle; keep rays radial" msgstr "<b>Ctrl</b>: in stappen draaien; stralen radiaal houden" @@ -12910,7 +12776,7 @@ msgid "The flowed text(s) must be <b>visible</b> in order to be put on a path." msgstr "Ingekaderde tekst moet <b>zichtbaar</b> zijn om deze op een pad te kunnen zetten." #: ../src/text-chemistry.cpp:183 -#: ../src/verbs.cpp:2430 +#: ../src/verbs.cpp:2489 msgid "Put text on path" msgstr "Tekst op een pad plaatsen" @@ -12923,7 +12789,7 @@ msgid "<b>No texts-on-paths</b> in the selection." msgstr "Geen <b>tekst op een pad</b> geselecteerd." #: ../src/text-chemistry.cpp:219 -#: ../src/verbs.cpp:2432 +#: ../src/verbs.cpp:2491 msgid "Remove text from path" msgstr "Tekst van een pad verwijderen" @@ -12968,141 +12834,141 @@ msgstr "Ingekaderde tekst omzetten naar tekst" msgid "<b>No flowed text(s)</b> to convert in the selection." msgstr "Er zijn <b>geen ingekaderde tekst(en)</b> geselecteerd om om te zetten." -#: ../src/text-context.cpp:426 +#: ../src/text-context.cpp:425 msgid "<b>Click</b> to edit the text, <b>drag</b> to select part of the text." msgstr "<b>Klik</b> om de tekst te bewerken, <b>sleep</b> om een deel van de tekst te selecteren." -#: ../src/text-context.cpp:428 +#: ../src/text-context.cpp:427 msgid "<b>Click</b> to edit the flowed text, <b>drag</b> to select part of the text." msgstr "<b>Klik</b> om de ingekaderde tekst te bewerken, <b>sleep</b> om een gedeelte te selecteren." -#: ../src/text-context.cpp:482 +#: ../src/text-context.cpp:481 msgid "Create text" msgstr "Tekst aanmaken" -#: ../src/text-context.cpp:507 +#: ../src/text-context.cpp:506 msgid "Non-printable character" msgstr "Niet-afdrukbaar teken" -#: ../src/text-context.cpp:522 +#: ../src/text-context.cpp:521 msgid "Insert Unicode character" msgstr "Unicodeteken invoegen" -#: ../src/text-context.cpp:557 +#: ../src/text-context.cpp:556 #, c-format msgid "Unicode (<b>Enter</b> to finish): %s: %s" msgstr "Unicode (<b>Enter</b> om te voltooien): %s: %s" -#: ../src/text-context.cpp:559 -#: ../src/text-context.cpp:868 +#: ../src/text-context.cpp:558 +#: ../src/text-context.cpp:869 msgid "Unicode (<b>Enter</b> to finish): " msgstr "Unicode (<b>Enter</b> om te voltooien): " -#: ../src/text-context.cpp:645 +#: ../src/text-context.cpp:646 #, c-format msgid "<b>Flowed text frame</b>: %s × %s" msgstr "<b>Tekstkader</b>: %s × %s" -#: ../src/text-context.cpp:702 +#: ../src/text-context.cpp:703 msgid "Type text; <b>Enter</b> to start new line." msgstr "Tik uw tekst; <b>Enter</b> begint een nieuwe regel." -#: ../src/text-context.cpp:713 +#: ../src/text-context.cpp:714 msgid "Flowed text is created." msgstr "Ingekaderde tekst is aangemaakt." -#: ../src/text-context.cpp:715 +#: ../src/text-context.cpp:716 msgid "Create flowed text" msgstr "Ingekaderde tekst maken" -#: ../src/text-context.cpp:717 +#: ../src/text-context.cpp:718 msgid "The frame is <b>too small</b> for the current font size. Flowed text not created." msgstr "Het kader is <b>te klein</b> voor de grootte van het huidige lettertype. Er is geen ingekaderde tekst aangemaakt." -#: ../src/text-context.cpp:853 +#: ../src/text-context.cpp:854 msgid "No-break space" msgstr "Harde spatie" -#: ../src/text-context.cpp:855 +#: ../src/text-context.cpp:856 msgid "Insert no-break space" msgstr "Harde spatie invoegen" -#: ../src/text-context.cpp:892 +#: ../src/text-context.cpp:893 msgid "Make bold" msgstr "Vet maken" -#: ../src/text-context.cpp:910 +#: ../src/text-context.cpp:911 msgid "Make italic" msgstr "Cursief maken" -#: ../src/text-context.cpp:949 +#: ../src/text-context.cpp:950 msgid "New line" msgstr "Nieuwe regel invoegen" -#: ../src/text-context.cpp:991 +#: ../src/text-context.cpp:992 msgid "Backspace" msgstr "Backspace" -#: ../src/text-context.cpp:1047 +#: ../src/text-context.cpp:1048 msgid "Kern to the left" msgstr "Overhang naar links" -#: ../src/text-context.cpp:1072 +#: ../src/text-context.cpp:1073 msgid "Kern to the right" msgstr "Overhang naar rechts" -#: ../src/text-context.cpp:1097 +#: ../src/text-context.cpp:1098 msgid "Kern up" msgstr "Overhang naar boven" -#: ../src/text-context.cpp:1122 +#: ../src/text-context.cpp:1123 msgid "Kern down" msgstr "Overhang naar beneden" -#: ../src/text-context.cpp:1198 +#: ../src/text-context.cpp:1199 msgid "Rotate counterclockwise" msgstr "Tegen de klok in draaien" -#: ../src/text-context.cpp:1219 +#: ../src/text-context.cpp:1220 msgid "Rotate clockwise" msgstr "Met de klok mee draaien" -#: ../src/text-context.cpp:1236 +#: ../src/text-context.cpp:1237 msgid "Contract line spacing" msgstr "Regelafstand verkleinen" -#: ../src/text-context.cpp:1243 +#: ../src/text-context.cpp:1244 msgid "Contract letter spacing" msgstr "Letterafstand verkleinen" -#: ../src/text-context.cpp:1261 +#: ../src/text-context.cpp:1262 msgid "Expand line spacing" msgstr "Regelafstand vergroten" -#: ../src/text-context.cpp:1268 +#: ../src/text-context.cpp:1269 msgid "Expand letter spacing" msgstr "Letterafstand vergroten" -#: ../src/text-context.cpp:1396 +#: ../src/text-context.cpp:1397 msgid "Paste text" msgstr "Tekst plakken" -#: ../src/text-context.cpp:1647 +#: ../src/text-context.cpp:1648 #, c-format msgid "Type or edit flowed text (%d characters%s); <b>Enter</b> to start new paragraph." msgstr "Tik of wijzig ingekaderde tekst (%d karakters%s); <b>Enter</b> begint een nieuwe paragraaf." -#: ../src/text-context.cpp:1649 +#: ../src/text-context.cpp:1650 #, c-format msgid "Type or edit text (%d characters%s); <b>Enter</b> to start new line." msgstr "Tik of wijzig tekst (%d karakters%s); <b>Enter</b> begint een nieuwe regel." -#: ../src/text-context.cpp:1657 +#: ../src/text-context.cpp:1658 #: ../src/tools-switch.cpp:201 msgid "<b>Click</b> to select or create text, <b>drag</b> to create flowed text; then type." msgstr "<b>Klik</b> om een tekst te beginnen of te selecteren, <b>sleep</b> om ingekaderde tekst te maken; begin vervolgens te tikken." -#: ../src/text-context.cpp:1759 +#: ../src/text-context.cpp:1760 msgid "Type text" msgstr "Tekst typen" @@ -13450,260 +13316,260 @@ msgstr "" "Vincent van Adrighem (V.vanAdrighem@dirck.mine.nu), 2003.\n" "Jeroen van der Vegt (jvdvegt@gmail.com), 2003, 2005, 2008." -#: ../src/ui/dialog/align-and-distribute.cpp:219 -#: ../src/ui/dialog/align-and-distribute.cpp:896 +#: ../src/ui/dialog/align-and-distribute.cpp:170 +#: ../src/ui/dialog/align-and-distribute.cpp:845 msgid "Align" msgstr "Uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:391 -#: ../src/ui/dialog/align-and-distribute.cpp:897 +#: ../src/ui/dialog/align-and-distribute.cpp:340 +#: ../src/ui/dialog/align-and-distribute.cpp:846 msgid "Distribute" msgstr "Verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:464 +#: ../src/ui/dialog/align-and-distribute.cpp:413 msgid "Minimum horizontal gap (in px units) between bounding boxes" msgstr "Minimum horizontale tussenruimte (in px) tussen omvattende vakken" # Hue - Tint. #. TRANSLATORS: "H:" stands for horizontal gap -#: ../src/ui/dialog/align-and-distribute.cpp:466 +#: ../src/ui/dialog/align-and-distribute.cpp:415 msgctxt "Gap" msgid "_H:" msgstr "_T:" -#: ../src/ui/dialog/align-and-distribute.cpp:474 +#: ../src/ui/dialog/align-and-distribute.cpp:423 msgid "Minimum vertical gap (in px units) between bounding boxes" msgstr "Minimum verticale tussenruimte (in px) tussen omvattende vakken" #. TRANSLATORS: Vertical gap -#: ../src/ui/dialog/align-and-distribute.cpp:476 +#: ../src/ui/dialog/align-and-distribute.cpp:425 msgctxt "Gap" msgid "_V:" msgstr "V:" -#: ../src/ui/dialog/align-and-distribute.cpp:512 -#: ../src/ui/dialog/align-and-distribute.cpp:899 -#: ../src/widgets/connector-toolbar.cpp:427 +#: ../src/ui/dialog/align-and-distribute.cpp:461 +#: ../src/ui/dialog/align-and-distribute.cpp:848 +#: ../src/widgets/connector-toolbar.cpp:423 msgid "Remove overlaps" msgstr "Overlappingen verwijderen" -#: ../src/ui/dialog/align-and-distribute.cpp:543 -#: ../src/widgets/connector-toolbar.cpp:256 +#: ../src/ui/dialog/align-and-distribute.cpp:492 +#: ../src/widgets/connector-toolbar.cpp:252 msgid "Arrange connector network" msgstr "Het verbindingennetwerk herschikken" -#: ../src/ui/dialog/align-and-distribute.cpp:636 +#: ../src/ui/dialog/align-and-distribute.cpp:585 msgid "Exchange Positions" msgstr "Posities uitwisselen" -#: ../src/ui/dialog/align-and-distribute.cpp:670 +#: ../src/ui/dialog/align-and-distribute.cpp:619 msgid "Unclump" msgstr "Ontklonteren" -#: ../src/ui/dialog/align-and-distribute.cpp:742 +#: ../src/ui/dialog/align-and-distribute.cpp:691 msgid "Randomize positions" msgstr "Posities willekeurig maken" -#: ../src/ui/dialog/align-and-distribute.cpp:845 +#: ../src/ui/dialog/align-and-distribute.cpp:794 msgid "Distribute text baselines" msgstr "Grondlijnen van tekst verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:868 +#: ../src/ui/dialog/align-and-distribute.cpp:817 msgid "Align text baselines" msgstr "Grondlijnen van tekst uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:898 +#: ../src/ui/dialog/align-and-distribute.cpp:847 msgid "Rearrange" msgstr "Ordenen" -#: ../src/ui/dialog/align-and-distribute.cpp:900 -#: ../src/widgets/toolbox.cpp:1724 +#: ../src/ui/dialog/align-and-distribute.cpp:849 +#: ../src/widgets/toolbox.cpp:1722 msgid "Nodes" msgstr "Knooppunten" -#: ../src/ui/dialog/align-and-distribute.cpp:914 +#: ../src/ui/dialog/align-and-distribute.cpp:863 msgid "Relative to: " msgstr "Relatief tov: " -#: ../src/ui/dialog/align-and-distribute.cpp:915 +#: ../src/ui/dialog/align-and-distribute.cpp:864 msgid "_Treat selection as group: " msgstr "_Selectie als groep behandelen: " #. Align -#: ../src/ui/dialog/align-and-distribute.cpp:921 -#: ../src/verbs.cpp:2861 -#: ../src/verbs.cpp:2862 +#: ../src/ui/dialog/align-and-distribute.cpp:870 +#: ../src/verbs.cpp:2928 +#: ../src/verbs.cpp:2929 msgid "Align right edges of objects to the left edge of the anchor" msgstr "Rechterzijden van de objecten uitlijnen op de linkerkant van het anker" -#: ../src/ui/dialog/align-and-distribute.cpp:924 -#: ../src/verbs.cpp:2863 -#: ../src/verbs.cpp:2864 +#: ../src/ui/dialog/align-and-distribute.cpp:873 +#: ../src/verbs.cpp:2930 +#: ../src/verbs.cpp:2931 msgid "Align left edges" msgstr "Linkerzijden uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:927 -#: ../src/verbs.cpp:2865 -#: ../src/verbs.cpp:2866 +#: ../src/ui/dialog/align-and-distribute.cpp:876 +#: ../src/verbs.cpp:2932 +#: ../src/verbs.cpp:2933 msgid "Center on vertical axis" msgstr "Centreren op horizontale as" -#: ../src/ui/dialog/align-and-distribute.cpp:930 -#: ../src/verbs.cpp:2867 -#: ../src/verbs.cpp:2868 +#: ../src/ui/dialog/align-and-distribute.cpp:879 +#: ../src/verbs.cpp:2934 +#: ../src/verbs.cpp:2935 msgid "Align right sides" msgstr "Rechterzijden uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:933 -#: ../src/verbs.cpp:2869 -#: ../src/verbs.cpp:2870 +#: ../src/ui/dialog/align-and-distribute.cpp:882 +#: ../src/verbs.cpp:2936 +#: ../src/verbs.cpp:2937 msgid "Align left edges of objects to the right edge of the anchor" msgstr "Linkerzijden van de objecten uitlijnen op de rechterzijde van het anker" -#: ../src/ui/dialog/align-and-distribute.cpp:936 -#: ../src/verbs.cpp:2871 -#: ../src/verbs.cpp:2872 +#: ../src/ui/dialog/align-and-distribute.cpp:885 +#: ../src/verbs.cpp:2938 +#: ../src/verbs.cpp:2939 msgid "Align bottom edges of objects to the top edge of the anchor" msgstr "Onderzijde van de objecten uitlijnen op de bovenzijde van het anker" -#: ../src/ui/dialog/align-and-distribute.cpp:939 -#: ../src/verbs.cpp:2873 -#: ../src/verbs.cpp:2874 +#: ../src/ui/dialog/align-and-distribute.cpp:888 +#: ../src/verbs.cpp:2940 +#: ../src/verbs.cpp:2941 msgid "Align top edges" msgstr "Bovenzijden uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:942 -#: ../src/verbs.cpp:2875 -#: ../src/verbs.cpp:2876 +#: ../src/ui/dialog/align-and-distribute.cpp:891 +#: ../src/verbs.cpp:2942 +#: ../src/verbs.cpp:2943 msgid "Center on horizontal axis" msgstr "Centreren om de horizontale as" -#: ../src/ui/dialog/align-and-distribute.cpp:945 -#: ../src/verbs.cpp:2877 -#: ../src/verbs.cpp:2878 +#: ../src/ui/dialog/align-and-distribute.cpp:894 +#: ../src/verbs.cpp:2944 +#: ../src/verbs.cpp:2945 msgid "Align bottom edges" msgstr "Onderzijden uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:948 -#: ../src/verbs.cpp:2879 -#: ../src/verbs.cpp:2880 +#: ../src/ui/dialog/align-and-distribute.cpp:897 +#: ../src/verbs.cpp:2946 +#: ../src/verbs.cpp:2947 msgid "Align top edges of objects to the bottom edge of the anchor" msgstr "Bovenzijde van de objecten uitlijnen op de onderzijde van het anker" -#: ../src/ui/dialog/align-and-distribute.cpp:953 +#: ../src/ui/dialog/align-and-distribute.cpp:902 msgid "Align baseline anchors of texts horizontally" msgstr "Grondlijnankers teksten horizontaal uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:956 +#: ../src/ui/dialog/align-and-distribute.cpp:905 msgid "Align baselines of texts" msgstr "Grondlijnen van teksten uitlijnen" -#: ../src/ui/dialog/align-and-distribute.cpp:961 +#: ../src/ui/dialog/align-and-distribute.cpp:910 msgid "Make horizontal gaps between objects equal" msgstr "Horizontale afstand tussen objecten gelijk maken" -#: ../src/ui/dialog/align-and-distribute.cpp:965 +#: ../src/ui/dialog/align-and-distribute.cpp:914 msgid "Distribute left edges equidistantly" msgstr "Afstand tussen de linkerzijden van de objecten gelijkmatig verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:968 +#: ../src/ui/dialog/align-and-distribute.cpp:917 msgid "Distribute centers equidistantly horizontally" msgstr "Objectmiddens gelijkmatig verdelen in horizontale richting" -#: ../src/ui/dialog/align-and-distribute.cpp:971 +#: ../src/ui/dialog/align-and-distribute.cpp:920 msgid "Distribute right edges equidistantly" msgstr "Afstand tussen de rechterzijden van de objecten gelijkmatig verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:975 +#: ../src/ui/dialog/align-and-distribute.cpp:924 msgid "Make vertical gaps between objects equal" msgstr "Verticale afstand tussen de objecten gelijk maken" -#: ../src/ui/dialog/align-and-distribute.cpp:979 +#: ../src/ui/dialog/align-and-distribute.cpp:928 msgid "Distribute top edges equidistantly" msgstr "Afstand tussen de bovenzijden van de objecten gelijkmatig verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:982 +#: ../src/ui/dialog/align-and-distribute.cpp:931 msgid "Distribute centers equidistantly vertically" msgstr "Objectmiddens gelijkmatig verdelen in verticale richting" -#: ../src/ui/dialog/align-and-distribute.cpp:985 +#: ../src/ui/dialog/align-and-distribute.cpp:934 msgid "Distribute bottom edges equidistantly" msgstr "Afstand tussen de onderzijden van de objecten gelijkmatig verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:990 +#: ../src/ui/dialog/align-and-distribute.cpp:939 msgid "Distribute baseline anchors of texts horizontally" msgstr "Geselecteerde teksten horizontaal verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:993 +#: ../src/ui/dialog/align-and-distribute.cpp:942 msgid "Distribute baselines of texts vertically" msgstr "Grondlijnen van geselecteerde teksten verticaal verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:999 -#: ../src/widgets/connector-toolbar.cpp:389 +#: ../src/ui/dialog/align-and-distribute.cpp:948 +#: ../src/widgets/connector-toolbar.cpp:385 msgid "Nicely arrange selected connector network" msgstr "Het geselecteerde verbindingennetwerk netjes schikken" -#: ../src/ui/dialog/align-and-distribute.cpp:1002 +#: ../src/ui/dialog/align-and-distribute.cpp:951 msgid "Exchange positions of selected objects - selection order" msgstr "Posities van geselecteerde objecten uitwisselen - volgens selectie" -#: ../src/ui/dialog/align-and-distribute.cpp:1005 +#: ../src/ui/dialog/align-and-distribute.cpp:954 msgid "Exchange positions of selected objects - stacking order" msgstr "Posities van geselecteerde objecten uitwisselen - volgens stapeling" -#: ../src/ui/dialog/align-and-distribute.cpp:1008 +#: ../src/ui/dialog/align-and-distribute.cpp:957 msgid "Exchange positions of selected objects - clockwise rotate" msgstr "Posities van geselecteerde objecten uitwisselen - met de klok draaien" -#: ../src/ui/dialog/align-and-distribute.cpp:1013 +#: ../src/ui/dialog/align-and-distribute.cpp:962 msgid "Randomize centers in both dimensions" msgstr "Objectmiddens in beide richtingen willekeurig verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:1016 +#: ../src/ui/dialog/align-and-distribute.cpp:965 msgid "Unclump objects: try to equalize edge-to-edge distances" msgstr "Objecten ontklonteren: rand-tot-rand afstanden gelijk proberen maken" -#: ../src/ui/dialog/align-and-distribute.cpp:1021 +#: ../src/ui/dialog/align-and-distribute.cpp:970 msgid "Move objects as little as possible so that their bounding boxes do not overlap" msgstr "Objecten zo min mogelijk verplaatsen opdat hun omvattende vakken niet overlappen" -#: ../src/ui/dialog/align-and-distribute.cpp:1029 +#: ../src/ui/dialog/align-and-distribute.cpp:978 msgid "Align selected nodes to a common horizontal line" msgstr "Geselecteerde knooppunten uitlijnen op een gemeenschappelijke horizontale lijn" -#: ../src/ui/dialog/align-and-distribute.cpp:1032 +#: ../src/ui/dialog/align-and-distribute.cpp:981 msgid "Align selected nodes to a common vertical line" msgstr "Geselecteerde knooppunten uitlijnen op een gemeenschappelijke verticale lijn" -#: ../src/ui/dialog/align-and-distribute.cpp:1035 +#: ../src/ui/dialog/align-and-distribute.cpp:984 msgid "Distribute selected nodes horizontally" msgstr "Geselecteerde knooppunten horizontaal verdelen" -#: ../src/ui/dialog/align-and-distribute.cpp:1038 +#: ../src/ui/dialog/align-and-distribute.cpp:987 msgid "Distribute selected nodes vertically" msgstr "Geselecteerde knooppunten verticaal verdelen" #. Rest of the widgetry -#: ../src/ui/dialog/align-and-distribute.cpp:1043 +#: ../src/ui/dialog/align-and-distribute.cpp:992 msgid "Last selected" msgstr "Laatst geselecteerde" -#: ../src/ui/dialog/align-and-distribute.cpp:1044 +#: ../src/ui/dialog/align-and-distribute.cpp:993 msgid "First selected" msgstr "Eerst geselecteerde" -#: ../src/ui/dialog/align-and-distribute.cpp:1045 +#: ../src/ui/dialog/align-and-distribute.cpp:994 msgid "Biggest object" msgstr "Grootste object" -#: ../src/ui/dialog/align-and-distribute.cpp:1046 +#: ../src/ui/dialog/align-and-distribute.cpp:995 msgid "Smallest object" msgstr "Kleinste object" -#: ../src/ui/dialog/align-and-distribute.cpp:1049 +#: ../src/ui/dialog/align-and-distribute.cpp:998 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:1555 -#: ../src/verbs.cpp:169 -#: ../src/widgets/desktop-widget.cpp:1934 +#: ../src/verbs.cpp:175 +#: ../src/widgets/desktop-widget.cpp:2008 #: ../share/extensions/printing_marks.inx.h:18 msgid "Selection" msgstr "Selectie" @@ -13725,328 +13591,327 @@ msgstr "Opslaan" msgid "Add profile" msgstr "Kleurprofiel toevoegen" -#: ../src/ui/dialog/color-item.cpp:122 +#: ../src/ui/dialog/color-item.cpp:131 #, c-format msgid "Color: <b>%s</b>; <b>Click</b> to set fill, <b>Shift+click</b> to set stroke" msgstr "Kleur: <b>%s</b>; <b>Klik</b> om vulling in te stellen, <b>Shift+klik</b> om lijnkleur in te stellen" -#: ../src/ui/dialog/color-item.cpp:504 +#: ../src/ui/dialog/color-item.cpp:513 msgid "Change color definition" msgstr "Kleurdefinitie veranderen" -#: ../src/ui/dialog/color-item.cpp:678 +#: ../src/ui/dialog/color-item.cpp:687 msgid "Remove stroke color" msgstr "Lijnkleur verwijderen" -#: ../src/ui/dialog/color-item.cpp:678 +#: ../src/ui/dialog/color-item.cpp:687 msgid "Remove fill color" msgstr "Vulling verwijderen" -#: ../src/ui/dialog/color-item.cpp:683 +#: ../src/ui/dialog/color-item.cpp:692 msgid "Set stroke color to none" msgstr "Lijnkleur op geen instellen" -#: ../src/ui/dialog/color-item.cpp:683 +#: ../src/ui/dialog/color-item.cpp:692 msgid "Set fill color to none" msgstr "Vulling op geen instellen" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:708 msgid "Set stroke color from swatch" msgstr "Lijnkleur instellen uit palet" -#: ../src/ui/dialog/color-item.cpp:699 +#: ../src/ui/dialog/color-item.cpp:708 msgid "Set fill color from swatch" msgstr "Vulling instellen uit palet" -#: ../src/ui/dialog/debug.cpp:69 +#: ../src/ui/dialog/debug.cpp:73 msgid "Messages" msgstr "Berichten" -#: ../src/ui/dialog/debug.cpp:83 +#: ../src/ui/dialog/debug.cpp:87 #: ../src/ui/dialog/messages.cpp:47 -#: ../src/ui/dialog/scriptdialog.cpp:182 msgid "_Clear" msgstr "_Wissen" -#: ../src/ui/dialog/debug.cpp:87 +#: ../src/ui/dialog/debug.cpp:91 #: ../src/ui/dialog/messages.cpp:48 msgid "Capture log messages" msgstr "Logberichten bewaren" -#: ../src/ui/dialog/debug.cpp:91 +#: ../src/ui/dialog/debug.cpp:95 msgid "Release log messages" msgstr "Logberichten negeren" #: ../src/ui/dialog/document-metadata.cpp:88 -#: ../src/ui/dialog/document-properties.cpp:152 +#: ../src/ui/dialog/document-properties.cpp:151 msgid "Metadata" msgstr "Metadata" #: ../src/ui/dialog/document-metadata.cpp:89 -#: ../src/ui/dialog/document-properties.cpp:153 +#: ../src/ui/dialog/document-properties.cpp:152 msgid "License" msgstr "Licentie" #: ../src/ui/dialog/document-metadata.cpp:126 -#: ../src/ui/dialog/document-properties.cpp:960 +#: ../src/ui/dialog/document-properties.cpp:959 msgid "<b>Dublin Core Entities</b>" msgstr "<b>Dublin Core-elementen</b>" #: ../src/ui/dialog/document-metadata.cpp:168 -#: ../src/ui/dialog/document-properties.cpp:1022 +#: ../src/ui/dialog/document-properties.cpp:1021 msgid "<b>License</b>" msgstr "<b>Licentie</b>" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "Show page _border" msgstr "Pagina_rand weergeven" -#: ../src/ui/dialog/document-properties.cpp:105 +#: ../src/ui/dialog/document-properties.cpp:104 msgid "If set, rectangular page border is shown" msgstr "Indien aangevinkt, wordt de rechthoekige paginarand getoond" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:105 msgid "Border on _top of drawing" msgstr "Rand altijd boven de _tekening" -#: ../src/ui/dialog/document-properties.cpp:106 +#: ../src/ui/dialog/document-properties.cpp:105 msgid "If set, border is always on top of the drawing" msgstr "Indien aangevinkt, wordt de rand altijd boven de tekening getoond" -#: ../src/ui/dialog/document-properties.cpp:107 +#: ../src/ui/dialog/document-properties.cpp:106 msgid "_Show border shadow" msgstr "Paginascha_duw weergeven" -#: ../src/ui/dialog/document-properties.cpp:107 +#: ../src/ui/dialog/document-properties.cpp:106 msgid "If set, page border shows a shadow on its right and lower side" msgstr "Indien aangevinkt, heeft de paginarand onder en rechts een schaduw" -#: ../src/ui/dialog/document-properties.cpp:108 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Back_ground color:" msgstr "_Achtergrondkleur:" -#: ../src/ui/dialog/document-properties.cpp:108 +#: ../src/ui/dialog/document-properties.cpp:107 msgid "Color of the page background. Note: transparency setting ignored while editing but used when exporting to bitmap." msgstr "" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Border _color:" msgstr "_Kleur paginarand:" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Page border color" msgstr "Kleur paginarand" -#: ../src/ui/dialog/document-properties.cpp:109 +#: ../src/ui/dialog/document-properties.cpp:108 msgid "Color of the page border" msgstr "Kleur van de paginarand" -#: ../src/ui/dialog/document-properties.cpp:110 +#: ../src/ui/dialog/document-properties.cpp:109 msgid "Default _units:" msgstr "Standaardeen_heid:" #. --------------------------------------------------------------- #. General snap options -#: ../src/ui/dialog/document-properties.cpp:114 +#: ../src/ui/dialog/document-properties.cpp:113 msgid "Show _guides" msgstr "_Hulplijnen weergeven" -#: ../src/ui/dialog/document-properties.cpp:114 +#: ../src/ui/dialog/document-properties.cpp:113 msgid "Show or hide guides" msgstr "Hulplijnen weergeven of verbergen" -#: ../src/ui/dialog/document-properties.cpp:115 +#: ../src/ui/dialog/document-properties.cpp:114 msgid "Guide co_lor:" msgstr "K_leur hulplijnen:" -#: ../src/ui/dialog/document-properties.cpp:115 +#: ../src/ui/dialog/document-properties.cpp:114 msgid "Guideline color" msgstr "Kleur hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:115 +#: ../src/ui/dialog/document-properties.cpp:114 msgid "Color of guidelines" msgstr "Kleur van de hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:116 +#: ../src/ui/dialog/document-properties.cpp:115 msgid "_Highlight color:" msgstr "_Oplichtende kleur:" -#: ../src/ui/dialog/document-properties.cpp:116 +#: ../src/ui/dialog/document-properties.cpp:115 msgid "Highlighted guideline color" msgstr "Kleur van oplichtende hulplijn" -#: ../src/ui/dialog/document-properties.cpp:116 +#: ../src/ui/dialog/document-properties.cpp:115 msgid "Color of a guideline when it is under mouse" msgstr "Kleur van een hulplijn als de muis ernaar wijst" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/document-properties.cpp:117 msgid "Snap _distance" msgstr "Kleefafstan_d" -#: ../src/ui/dialog/document-properties.cpp:118 +#: ../src/ui/dialog/document-properties.cpp:117 msgid "Snap only when _closer than:" msgstr "Alleen kleven indien _dichter dan:" -#: ../src/ui/dialog/document-properties.cpp:118 -#: ../src/ui/dialog/document-properties.cpp:123 -#: ../src/ui/dialog/document-properties.cpp:128 +#: ../src/ui/dialog/document-properties.cpp:117 +#: ../src/ui/dialog/document-properties.cpp:122 +#: ../src/ui/dialog/document-properties.cpp:127 msgid "Always snap" msgstr "Altijd kleven" -#: ../src/ui/dialog/document-properties.cpp:119 +#: ../src/ui/dialog/document-properties.cpp:118 msgid "Snapping distance, in screen pixels, for snapping to objects" msgstr "Kleefafstand, in schermpixels, voor kleven aan objecten" -#: ../src/ui/dialog/document-properties.cpp:119 +#: ../src/ui/dialog/document-properties.cpp:118 msgid "Always snap to objects, regardless of their distance" msgstr "Altijd aan objecten kleven, ongeacht hun afstand" -#: ../src/ui/dialog/document-properties.cpp:120 +#: ../src/ui/dialog/document-properties.cpp:119 msgid "If set, objects only snap to another object when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan andere objecten als deze zich binnen de hier aangegeven afstand bevindt" #. Options for snapping to grids -#: ../src/ui/dialog/document-properties.cpp:123 +#: ../src/ui/dialog/document-properties.cpp:122 msgid "Snap d_istance" msgstr "Klee_fafstand" -#: ../src/ui/dialog/document-properties.cpp:123 +#: ../src/ui/dialog/document-properties.cpp:122 msgid "Snap only when c_loser than:" msgstr "Alleen kleven indien d_ichter dan:" -#: ../src/ui/dialog/document-properties.cpp:124 +#: ../src/ui/dialog/document-properties.cpp:123 msgid "Snapping distance, in screen pixels, for snapping to grid" msgstr "Kleefafstand, in schermpixels, voor kleven aan raster" -#: ../src/ui/dialog/document-properties.cpp:124 +#: ../src/ui/dialog/document-properties.cpp:123 msgid "Always snap to grids, regardless of the distance" msgstr "Altijd aan raster kleven, ongeacht de afstand" -#: ../src/ui/dialog/document-properties.cpp:125 +#: ../src/ui/dialog/document-properties.cpp:124 msgid "If set, objects only snap to a grid line when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan een rasterlijn als deze zich binnen de hier aangegeven afstand bevindt" #. Options for snapping to guides -#: ../src/ui/dialog/document-properties.cpp:128 +#: ../src/ui/dialog/document-properties.cpp:127 msgid "Snap dist_ance" msgstr "Kleef_afstand" -#: ../src/ui/dialog/document-properties.cpp:128 +#: ../src/ui/dialog/document-properties.cpp:127 msgid "Snap only when close_r than:" msgstr "Alleen kleven indien di_chter dan:" -#: ../src/ui/dialog/document-properties.cpp:129 +#: ../src/ui/dialog/document-properties.cpp:128 msgid "Snapping distance, in screen pixels, for snapping to guides" msgstr "Kleefafstand, in schermpixels, voor kleven aan hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:129 +#: ../src/ui/dialog/document-properties.cpp:128 msgid "Always snap to guides, regardless of the distance" msgstr "Altijd aan hulplijnen kleven, ongeacht de afstand" -#: ../src/ui/dialog/document-properties.cpp:130 +#: ../src/ui/dialog/document-properties.cpp:129 msgid "If set, objects only snap to a guide when it's within the range specified below" msgstr "Indien aangevinkt, kleven objecten alleen aan een hulplijn als deze zich binnen de hier aangegeven afstand bevindt" #. --------------------------------------------------------------- -#: ../src/ui/dialog/document-properties.cpp:133 +#: ../src/ui/dialog/document-properties.cpp:132 msgid "Snap to clip paths" msgstr "Aan afsnijpaden kleven" -#: ../src/ui/dialog/document-properties.cpp:133 +#: ../src/ui/dialog/document-properties.cpp:132 msgid "When snapping to paths, then also try snapping to clip paths" msgstr "Bij het kleven aan paden, ook aan afsnijpaden trachten te kleven" -#: ../src/ui/dialog/document-properties.cpp:134 +#: ../src/ui/dialog/document-properties.cpp:133 msgid "Snap to mask paths" msgstr "Aan maskerpaden kleven" -#: ../src/ui/dialog/document-properties.cpp:134 +#: ../src/ui/dialog/document-properties.cpp:133 msgid "When snapping to paths, then also try snapping to mask paths" msgstr "Bij het kleven aan paden, ook aan maskerpaden trachten te kleven" -#: ../src/ui/dialog/document-properties.cpp:135 +#: ../src/ui/dialog/document-properties.cpp:134 msgid "Snap perpendicularly" msgstr "Loodrecht kleven" -#: ../src/ui/dialog/document-properties.cpp:135 +#: ../src/ui/dialog/document-properties.cpp:134 msgid "When snapping to paths or guides, then also try snapping perpendicularly" msgstr "Bij het kleven aan paden of hulplijnen, ook loodrecht trachten te kleven" -#: ../src/ui/dialog/document-properties.cpp:136 +#: ../src/ui/dialog/document-properties.cpp:135 msgid "Snap tangentially" msgstr "Tangentiëel kleven" -#: ../src/ui/dialog/document-properties.cpp:136 +#: ../src/ui/dialog/document-properties.cpp:135 msgid "When snapping to paths or guides, then also try snapping tangentially" msgstr "Bij het kleven aan paden of hulplijnen, ook tangentiëel trachten te kleven" -#: ../src/ui/dialog/document-properties.cpp:139 +#: ../src/ui/dialog/document-properties.cpp:138 msgctxt "Grid" msgid "_New" msgstr "_Nieuw" -#: ../src/ui/dialog/document-properties.cpp:139 +#: ../src/ui/dialog/document-properties.cpp:138 msgid "Create new grid." msgstr "Nieuw raster maken." -#: ../src/ui/dialog/document-properties.cpp:140 +#: ../src/ui/dialog/document-properties.cpp:139 msgctxt "Grid" msgid "_Remove" msgstr "Ve_rwijderen" -#: ../src/ui/dialog/document-properties.cpp:140 +#: ../src/ui/dialog/document-properties.cpp:139 msgid "Remove selected grid." msgstr "Geselecteerd raster verwijderen." -#: ../src/ui/dialog/document-properties.cpp:147 -#: ../src/widgets/toolbox.cpp:1831 +#: ../src/ui/dialog/document-properties.cpp:146 +#: ../src/widgets/toolbox.cpp:1829 msgid "Guides" msgstr "Hulplijnen" -#: ../src/ui/dialog/document-properties.cpp:149 -#: ../src/verbs.cpp:2680 +#: ../src/ui/dialog/document-properties.cpp:148 +#: ../src/verbs.cpp:2739 msgid "Snap" msgstr "Kleven" -#: ../src/ui/dialog/document-properties.cpp:151 +#: ../src/ui/dialog/document-properties.cpp:150 msgid "Scripting" msgstr "Scripting" -#: ../src/ui/dialog/document-properties.cpp:311 +#: ../src/ui/dialog/document-properties.cpp:310 msgid "<b>General</b>" msgstr "<b>Algemeen</b>" -#: ../src/ui/dialog/document-properties.cpp:313 +#: ../src/ui/dialog/document-properties.cpp:312 msgid "<b>Color</b>" msgstr "<b>Kleur</b>" -#: ../src/ui/dialog/document-properties.cpp:315 +#: ../src/ui/dialog/document-properties.cpp:314 msgid "<b>Border</b>" msgstr "<b>Omranding</b>" -#: ../src/ui/dialog/document-properties.cpp:317 +#: ../src/ui/dialog/document-properties.cpp:316 msgid "<b>Page Size</b>" msgstr "<b>Paginagrootte</b>" -#: ../src/ui/dialog/document-properties.cpp:350 +#: ../src/ui/dialog/document-properties.cpp:349 msgid "<b>Guides</b>" msgstr "<b>Hulplijnen</b>" -#: ../src/ui/dialog/document-properties.cpp:368 +#: ../src/ui/dialog/document-properties.cpp:367 msgid "<b>Snap to objects</b>" msgstr "<b>Kleven aan objecten</b>" -#: ../src/ui/dialog/document-properties.cpp:370 +#: ../src/ui/dialog/document-properties.cpp:369 msgid "<b>Snap to grids</b>" msgstr "<b>Kleven aan rasters</b>" -#: ../src/ui/dialog/document-properties.cpp:372 +#: ../src/ui/dialog/document-properties.cpp:371 msgid "<b>Snap to guides</b>" msgstr "<b>Kleven aan hulplijnen</b>" -#: ../src/ui/dialog/document-properties.cpp:374 +#: ../src/ui/dialog/document-properties.cpp:373 msgid "<b>Miscellaneous</b>" msgstr "<b>Diversen</b>" @@ -14054,134 +13919,134 @@ msgstr "<b>Diversen</b>" #. Inkscape::GC::release(defsRepr); #. inform the document, so we can undo #. Color Management -#: ../src/ui/dialog/document-properties.cpp:487 -#: ../src/verbs.cpp:2855 +#: ../src/ui/dialog/document-properties.cpp:486 +#: ../src/verbs.cpp:2912 msgid "Link Color Profile" msgstr "Kleurprofiel linken" -#: ../src/ui/dialog/document-properties.cpp:588 +#: ../src/ui/dialog/document-properties.cpp:587 msgid "Remove linked color profile" msgstr "Gelinkt kleurprofiel verwijderen" -#: ../src/ui/dialog/document-properties.cpp:601 +#: ../src/ui/dialog/document-properties.cpp:600 msgid "<b>Linked Color Profiles:</b>" msgstr "<b>Gelinkte kleurprofielen:</b>" -#: ../src/ui/dialog/document-properties.cpp:603 +#: ../src/ui/dialog/document-properties.cpp:602 msgid "<b>Available Color Profiles:</b>" msgstr "<b>Beschikbare kleurprofielen:</b>" -#: ../src/ui/dialog/document-properties.cpp:605 +#: ../src/ui/dialog/document-properties.cpp:604 msgid "Link Profile" msgstr "Kleurprofiel linken" -#: ../src/ui/dialog/document-properties.cpp:608 +#: ../src/ui/dialog/document-properties.cpp:607 msgid "Unlink Profile" msgstr "Kleurprofiel ontlinken" -#: ../src/ui/dialog/document-properties.cpp:686 +#: ../src/ui/dialog/document-properties.cpp:685 msgid "Profile Name" msgstr "Naam profiel" -#: ../src/ui/dialog/document-properties.cpp:722 +#: ../src/ui/dialog/document-properties.cpp:721 msgid "External scripts" msgstr "Externe scripts" -#: ../src/ui/dialog/document-properties.cpp:723 +#: ../src/ui/dialog/document-properties.cpp:722 msgid "Embedded scripts" msgstr "Ingevoegde scripts" # zijn dit de uitbreidingen (Engels: external modules)? -#: ../src/ui/dialog/document-properties.cpp:728 +#: ../src/ui/dialog/document-properties.cpp:727 msgid "<b>External script files:</b>" msgstr "<b>Externe scriptbestanden:</b>" -#: ../src/ui/dialog/document-properties.cpp:730 +#: ../src/ui/dialog/document-properties.cpp:729 msgid "Add the current file name or browse for a file" msgstr "Deze bestandsnaam toevoegen of naar bestand browsen" -#: ../src/ui/dialog/document-properties.cpp:733 -#: ../src/ui/dialog/document-properties.cpp:811 -#: ../src/ui/widget/selected-style.cpp:334 +#: ../src/ui/dialog/document-properties.cpp:732 +#: ../src/ui/dialog/document-properties.cpp:810 +#: ../src/ui/widget/selected-style.cpp:339 msgid "Remove" msgstr "Verwijderen" -#: ../src/ui/dialog/document-properties.cpp:798 +#: ../src/ui/dialog/document-properties.cpp:797 msgid "Filename" msgstr "Bestand" # zijn dit de uitbreidingen (Engels: external modules)? -#: ../src/ui/dialog/document-properties.cpp:806 +#: ../src/ui/dialog/document-properties.cpp:805 msgid "<b>Embedded script files:</b>" msgstr "<b>Ingevoegde scriptbestanden:</b>" -#: ../src/ui/dialog/document-properties.cpp:808 +#: ../src/ui/dialog/document-properties.cpp:807 msgid "New" msgstr "Nieuw" -#: ../src/ui/dialog/document-properties.cpp:875 +#: ../src/ui/dialog/document-properties.cpp:874 msgid "Script id" msgstr "Script id" -#: ../src/ui/dialog/document-properties.cpp:881 +#: ../src/ui/dialog/document-properties.cpp:880 msgid "<b>Content:</b>" msgstr "<b>Inhoud:</b>" -#: ../src/ui/dialog/document-properties.cpp:998 +#: ../src/ui/dialog/document-properties.cpp:997 msgid "_Save as default" msgstr "_Instellen als standaard" -#: ../src/ui/dialog/document-properties.cpp:999 +#: ../src/ui/dialog/document-properties.cpp:998 msgid "Save this metadata as the default metadata" msgstr "Deze metadata als standaardwaarde bewaren" -#: ../src/ui/dialog/document-properties.cpp:1000 +#: ../src/ui/dialog/document-properties.cpp:999 msgid "Use _default" msgstr "_Standaard gebruiken" -#: ../src/ui/dialog/document-properties.cpp:1001 +#: ../src/ui/dialog/document-properties.cpp:1000 msgid "Use the previously saved default metadata here" msgstr "_Bewaarde standaardmetadata gebruiken" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:1074 +#: ../src/ui/dialog/document-properties.cpp:1073 msgid "Add external script..." msgstr "Extern script toevoegen..." -#: ../src/ui/dialog/document-properties.cpp:1113 +#: ../src/ui/dialog/document-properties.cpp:1112 msgid "Select a script to load" msgstr "Selecteer een script om te laden" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:1141 +#: ../src/ui/dialog/document-properties.cpp:1140 msgid "Add embedded script..." msgstr "Ingevoegd script toevoegen..." #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:1172 +#: ../src/ui/dialog/document-properties.cpp:1171 msgid "Remove external script" msgstr "Extern script verwijderen" #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:1206 +#: ../src/ui/dialog/document-properties.cpp:1205 msgid "Remove embedded script" msgstr "Ingevoegd script verwijderen" #. TODO repr->set_content(_EmbeddedContent.get_buffer()->get_text()); #. inform the document, so we can undo -#: ../src/ui/dialog/document-properties.cpp:1306 +#: ../src/ui/dialog/document-properties.cpp:1305 msgid "Edit embedded script" msgstr "Ingevoegd script bewerken" -#: ../src/ui/dialog/document-properties.cpp:1389 +#: ../src/ui/dialog/document-properties.cpp:1388 msgid "<b>Creation</b>" msgstr "<b>Aanmaken</b>" -#: ../src/ui/dialog/document-properties.cpp:1390 +#: ../src/ui/dialog/document-properties.cpp:1389 msgid "<b>Defined grids</b>" msgstr "<b>Bestaande rasters</b>" -#: ../src/ui/dialog/document-properties.cpp:1618 +#: ../src/ui/dialog/document-properties.cpp:1617 msgid "Remove grid" msgstr "Raster verwijderen" @@ -14190,8 +14055,8 @@ msgid "Information" msgstr "Informatie" #: ../src/ui/dialog/extension-editor.cpp:82 -#: ../src/verbs.cpp:284 -#: ../src/verbs.cpp:303 +#: ../src/verbs.cpp:290 +#: ../src/verbs.cpp:309 #: ../share/extensions/color_custom.inx.h:7 #: ../share/extensions/color_HSL_adjust.inx.h:11 #: ../share/extensions/color_randomize.inx.h:6 @@ -14264,36 +14129,36 @@ msgstr "Bestandsvoorbeeld tonen" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:779 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:795 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:810 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:291 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:422 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:289 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:420 msgid "All Files" msgstr "Alle bestanden" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:776 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:792 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:807 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:292 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:290 msgid "All Inkscape Files" msgstr "Alle Inkscapebestanden" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:783 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:799 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:813 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:293 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:291 msgid "All Images" msgstr "Alle afbeeldingen" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:786 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:802 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:816 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:294 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:292 msgid "All Vectors" msgstr "Alle vectoren" #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:789 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:805 #: ../src/ui/dialog/filedialogimpl-gtkmm.cpp:819 -#: ../src/ui/dialog/filedialogimpl-win32.cpp:295 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:293 msgid "All Bitmaps" msgstr "Alle bitmaps" @@ -14374,15 +14239,15 @@ msgstr "Antialias" msgid "Destination" msgstr "Doel" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:423 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:421 msgid "All Executable Files" msgstr "Alle uitvoerbare bestanden" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:615 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:613 msgid "Show Preview" msgstr "Voorbeeld tonen" -#: ../src/ui/dialog/filedialogimpl-win32.cpp:753 +#: ../src/ui/dialog/filedialogimpl-win32.cpp:751 msgid "No file selected" msgstr "Geen bestand geselecteerd" @@ -14495,275 +14360,275 @@ msgstr "_Dupliceren" msgid "_Filter" msgstr "_Filter" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1168 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1174 msgid "R_ename" msgstr "H_ernoemen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1298 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1304 msgid "Rename filter" msgstr "Hernoem filter" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1335 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1348 msgid "Apply filter" msgstr "Filter toepassen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1405 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1418 msgid "filter" msgstr "filter" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1412 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1425 msgid "Add filter" msgstr "Filter toevoegen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1464 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1477 msgid "Duplicate filter" msgstr "Filter dupliceren" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1563 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1576 msgid "_Effect" msgstr "_Effect" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1573 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1586 msgid "Connections" msgstr "Verbindingen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:1711 +#: ../src/ui/dialog/filter-effects-dialog.cpp:1724 msgid "Remove filter primitive" msgstr "Filtereffect verwijderen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2299 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2312 msgid "Remove merge node" msgstr "Verwijder samenvoegingsknooppunt" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2419 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2432 msgid "Reorder filter primitive" msgstr "Filtereffect herordenen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2499 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2512 msgid "Add Effect:" msgstr "Effect toevoegen:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2500 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2513 msgid "No effect selected" msgstr "Geen effect geselecteerd" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2501 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2514 msgid "No filter selected" msgstr "Geen filter geselecteerd" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2547 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2560 msgid "Effect parameters" msgstr "Effectparameters" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2548 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2561 msgid "Filter General Settings" msgstr "Algemene filterinstellingen" #. default x: #. default y: -#: ../src/ui/dialog/filter-effects-dialog.cpp:2606 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2619 msgid "Coordinates:" msgstr "Coördinaten:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2606 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2619 msgid "X coordinate of the left corners of filter effects region" msgstr "X-coördinaat van de linkerhoeken van het filtereffectgebied" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2606 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2619 msgid "Y coordinate of the upper corners of filter effects region" msgstr "Y-coördinaat van de linkerhoeken van het filtereffectgebied" #. default width: #. default height: -#: ../src/ui/dialog/filter-effects-dialog.cpp:2607 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2620 msgid "Dimensions:" msgstr "Dimensies:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2607 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2620 msgid "Width of filter effects region" msgstr "Breedte van filtereffectgebied" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2607 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2620 msgid "Height of filter effects region" msgstr "Hoogte van filtereffectgebied" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2613 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2626 msgid "Indicates the type of matrix operation. The keyword 'matrix' indicates that a full 5x4 matrix of values will be provided. The other keywords represent convenience shortcuts to allow commonly used color operations to be performed without specifying a complete matrix." msgstr "Geeft het type matrixbewerking aan. De optie 'matrix' geeft de mogelijkheid een volledige 5x4-matrix op te geven. De andere opties stellen veelgebruikte kleurbewerkingen voor zonder dat een volledige matrix opgegeven moet worden." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2614 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2627 msgid "Value(s):" msgstr "Waarde(n):" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2629 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2669 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2642 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2682 msgid "Operator:" msgstr "Operator:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2630 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2643 msgid "K1:" msgstr "K1:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2630 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2631 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2632 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2633 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2643 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2644 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2645 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2646 msgid "If the arithmetic operation is chosen, each result pixel is computed using the formula k1*i1*i2 + k2*i1 + k3*i2 + k4 where i1 and i2 are the pixel values of the first and second inputs respectively." msgstr "Als de rekenkundige bewerking is gekozen, wordt elke pixel berekend volgens de formule k1*i1*i2 + k2*i1 + k3*i2 + k4 waarbij i1 en i2 de pixelwaarden van respectievelijk de eerste en tweede invoer zijn." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2631 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2644 msgid "K2:" msgstr "K2:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2632 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2645 msgid "K3:" msgstr "K3:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2633 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2646 msgid "K4:" msgstr "K4:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2636 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2649 msgid "Size:" msgstr "Grootte:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2636 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2649 msgid "width of the convolve matrix" msgstr "Breedte van de convolutiematrix" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2636 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2649 msgid "height of the convolve matrix" msgstr "Hoogte van de convolutiematrix" #. default x: #. default y: -#: ../src/ui/dialog/filter-effects-dialog.cpp:2637 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2650 #: ../src/ui/dialog/object-attributes.cpp:48 msgid "Target:" msgstr "Doel:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2637 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2650 msgid "X coordinate of the target point in the convolve matrix. The convolution is applied to pixels around this point." msgstr "X-coördinaat van het doelpunt in de convolutiematrix. De convolutie wordt toegepast op pixels rondom dit punt." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2637 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2650 msgid "Y coordinate of the target point in the convolve matrix. The convolution is applied to pixels around this point." msgstr "Y-coördinaat van het doelpunt in de convolutiematrix. De convolutie wordt toegepast op pixels rondom dit punt." #. TRANSLATORS: for info on "Kernel", see http://en.wikipedia.org/wiki/Kernel_(matrix) -#: ../src/ui/dialog/filter-effects-dialog.cpp:2639 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2652 msgid "Kernel:" msgstr "Kernmatrix:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2639 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2652 msgid "This matrix describes the convolve operation that is applied to the input image in order to calculate the pixel colors at the output. Different arrangements of values in this matrix result in various possible visual effects. An identity matrix would lead to a motion blur effect (parallel to the matrix diagonal) while a matrix filled with a constant non-zero value would lead to a common blur effect." msgstr "Deze matrix beschrijft de convolutie die wordt toegepast op de afbeelding om de kleurwaarde van de pixels in het resultaat te berekenen. Verschillende waarden voor de getallen in deze matrix resulteren in verschillende visuele effecten. Een identiteitsmatrix resulteert in bewegingsonscherpte (parallel met de diagonaal) terwijl een matrix met een constante niet-nul waarde resulteert in algemene onscherpte." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2641 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2654 msgid "Divisor:" msgstr "Deler:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2641 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2654 msgid "After applying the kernelMatrix to the input image to yield a number, that number is divided by divisor to yield the final destination color value. A divisor that is the sum of all the matrix values tends to have an evening effect on the overall color intensity of the result." msgstr "Na toepassen van de kernmatrix op de afbeelding wordt de kleurwaarde gedeeld door de deler om de uiteindelijke kleurwaarde te bepalen. Een deler die gelijk is aan de som van de kleurwaarden geeft een avondeffect aan de algemene kleurintensiteit van het resultaat." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2642 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2655 msgid "Bias:" msgstr "Vertekening:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2642 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2655 msgid "This value is added to each component. This is useful to define a constant value as the zero response of the filter." msgstr "Deze waarde wordt opgeteld bij elke kleurcomponent. Dit is handig om een constante als nulwaarde van de filterrespons te definiëren." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2643 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2656 msgid "Edge Mode:" msgstr "Randgedrag:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2643 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2656 msgid "Determines how to extend the input image as necessary with color values so that the matrix operations can be applied when the kernel is positioned at or near the edge of the input image." msgstr "Bepaalt hoe de afbeelding wordt vergroot met extra pixels opdat matrixoperaties toegepast kunnen worden wanneer de kernmatrix zich op of nabij de rand van de afbeelding bevindt." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2644 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2657 msgid "Preserve Alpha" msgstr "Alfa behouden" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2644 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2657 msgid "If set, the alpha channel won't be altered by this filter primitive." msgstr "Indien aangevinkt, wordt het alfakanaal door dit filtereffect niet aangepast." #. default: white -#: ../src/ui/dialog/filter-effects-dialog.cpp:2647 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2660 msgid "Diffuse Color:" msgstr "Diffusiekleur:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2647 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2680 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2660 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2693 msgid "Defines the color of the light source" msgstr "Definieert de kleur van de lichtbron" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2648 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2681 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2661 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2694 msgid "Surface Scale:" msgstr "Textuurversterking:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2648 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2681 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2661 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2694 msgid "This value amplifies the heights of the bump map defined by the input alpha channel" msgstr "Deze waarde versterkt de hoogten in de textuurkaart gedefinieerd door het invoeralfakanaal" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2649 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2682 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2662 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2695 msgid "Constant:" msgstr "Constante:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2649 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2682 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2662 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2695 msgid "This constant affects the Phong lighting model." msgstr "Deze constante beïnvloedt het Phong-belichtingsmodel" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2650 -#: ../src/ui/dialog/filter-effects-dialog.cpp:2684 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2663 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2697 msgid "Kernel Unit Length:" msgstr "Kerneleenheidslengte:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2654 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2667 msgid "This defines the intensity of the displacement effect." msgstr "Dit definieert de intensiteit van het verplaatsingseffect." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2655 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2668 msgid "X displacement:" msgstr "X-verplaatsing:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2655 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2668 msgid "Color component that controls the displacement in the X direction" msgstr "Kleurcomponent die de verplaatsing in horizontale richting bepaalt." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2656 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2669 msgid "Y displacement:" msgstr "Y-verplaatsing:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2656 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2669 msgid "Color component that controls the displacement in the Y direction" msgstr "Kleurcomponent die de verplaatsing in verticale richting bepaalt." #. default: black -#: ../src/ui/dialog/filter-effects-dialog.cpp:2659 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2672 msgid "Flood Color:" msgstr "Vulkleur:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2659 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2672 msgid "The whole filter region will be filled with this color." msgstr "Het hele filtereffectgebied zal worden gevuld met deze kleur." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2663 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2676 msgid "Standard Deviation:" msgstr "Standaarddeviatie:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2663 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2676 msgid "The standard deviation for the blur operation." msgstr "De standaarddeviatie voor de vervagingsbewerking." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2669 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2682 msgid "" "Erode: performs \"thinning\" of input image.\n" "Dilate: performs \"fattenning\" of input image." @@ -14771,133 +14636,133 @@ msgstr "" "Eroderen: maakt de afbeelding \"vlakker\".\n" "Aandikken: maakt de afbeelding \"dikker\"." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2673 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2686 msgid "Source of Image:" msgstr "Bron van afbeelding:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2676 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2689 msgid "Delta X:" msgstr "Horizontaal verschil:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2676 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2689 msgid "This is how far the input image gets shifted to the right" msgstr "Hoe ver de bronafbeelding naar rechts wordt verschoven." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2677 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2690 msgid "Delta Y:" msgstr "Verticaal verschil:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2677 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2690 msgid "This is how far the input image gets shifted downwards" msgstr "Hoe ver de bronafbeelding omlaag wordt verschoven." #. default: white -#: ../src/ui/dialog/filter-effects-dialog.cpp:2680 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2693 msgid "Specular Color:" msgstr "Lichtbronkleur:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2683 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2696 #: ../share/extensions/interp.inx.h:2 msgid "Exponent:" msgstr "Exponent:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2683 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2696 msgid "Exponent for specular term, larger is more \"shiny\"." msgstr "Exponent van de lichtbronkleur; groter is \"glimmender\"." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2692 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2705 msgid "Indicates whether the filter primitive should perform a noise or turbulence function." msgstr "Geeft aan of het filtereffect een ruis- of turbulentiefunctie toepast." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2693 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2706 msgid "Base Frequency:" msgstr "Basisfrequentie:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2694 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2707 msgid "Octaves:" msgstr "Octaven:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2695 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2708 msgid "Seed:" msgstr "Beginwaarde:" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2695 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2708 msgid "The starting number for the pseudo random number generator." msgstr "Het begingetal voor de toevalsgenerator" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2707 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2720 msgid "Add filter primitive" msgstr "Filtereffect toevoegen" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2724 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2737 msgid "The <b>feBlend</b> filter primitive provides 4 image blending modes: screen, multiply, darken and lighten." msgstr "Het <b>feBlend</b>-filtereffect kent vier mengmanieren voor afbeeldingen: scherm, vermenigvuldigen, donkerder en lichter." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2728 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2741 msgid "The <b>feColorMatrix</b> filter primitive applies a matrix transformation to color of each rendered pixel. This allows for effects like turning object to grayscale, modifying color saturation and changing color hue." msgstr "Het <b>feColorMatrix</b>-filtereffect past een matrixoperatie toe op de kleur van elke gerenderde pixel. Dit maakt effecten mogelijk zoals het omzetten van een object naar grijswaarden, het aanpassen van kleurverzadiging en het veranderen van de tint." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2732 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2745 msgid "The <b>feComponentTransfer</b> filter primitive manipulates the input's color components (red, green, blue, and alpha) according to particular transfer functions, allowing operations like brightness and contrast adjustment, color balance, and thresholding." msgstr "Het <b>feComponentTransfer</b>-filtereffect manipuleert de kleurcomponenten (rood, groen, blauw en alfa) van de invoer aan de hand van bepaalde transferfuncties, hetgeen bewerkingen zoals het aanpassen van helderheid en contrast, kleurbalans, en drempelwaarden mogelijk maakt." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2736 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2749 msgid "The <b>feComposite</b> filter primitive composites two images using one of the Porter-Duff blending modes or the arithmetic mode described in SVG standard. Porter-Duff blending modes are essentially logical operations between the corresponding pixel values of the images." msgstr "Het <b>feComposite</b>-filtereffect verenigt twee afbeeldingen met één van de Porter-Duff-mengmodi of de rekenkundige modus beschreven in de SVG-standaard. Porter-Duff-mengmodi zijn in essentie logische bewerkingen tussen de overeenkomende pixelwaarden van de afbeeldingen." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2740 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2753 msgid "The <b>feConvolveMatrix</b> lets you specify a Convolution to be applied on the image. Common effects created using convolution matrices are blur, sharpening, embossing and edge detection. Note that while gaussian blur can be created using this filter primitive, the special gaussian blur primitive is faster and resolution-independent." msgstr "Met het <b>feConvolveMatrix</b>-filtereffect kan een convolutie toegepast worden op de afbeelding. Gebruikelijke effecten die met convolutiematrices gemaakt worden zijn: vervaging, verscherping, reliëf, en randherkenning. Merk op dat hoewel gaussiaans vervagen mogelijk is met dit filtereffect, het speciale filtereffect hiervoor sneller en resolutie-onafhankelijk is." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2744 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2757 msgid "The <b>feDiffuseLighting</b> and feSpecularLighting filter primitives create \"embossed\" shadings. The input's alpha channel is used to provide depth information: higher opacity areas are raised toward the viewer and lower opacity areas recede away from the viewer." msgstr "De <b>feDiffuseLighting</b>- en <i>feSpecularLighting</i>-filtereffecten maken reliëfschaduwen. Het alfakanaal van de invoer wordt gebruikt voor de diepte-informatie: gebieden met grotere ondoorzichtigheid verrijzen ten opzichte van de kijker en gebieden met lagere ondoorzichtigheid wijken terug." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2748 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2761 msgid "The <b>feDisplacementMap</b> filter primitive displaces the pixels in the first input using the second input as a displacement map, that shows from how far the pixel should come from. Classical examples are whirl and pinch effects." msgstr "Het <b>feDisplacementMap</b>-filtereffect verplaatst de pixels in de eerste invoer, daarbij de tweede invoer gebruikend als een verplaatsingskaart die aangeeft van hoever elk pixel moet komen. Klassieke voorbeelden zijn draai- en boetseerefffecten" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2752 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2765 msgid "The <b>feFlood</b> filter primitive fills the region with a given color and opacity. It is usually used as an input to other filters to apply color to a graphic." msgstr "Het <b>feFlood</b>-filtereffect vult een regio met een opgegeven kleur en ondoorzichtigheid. Het wordt normaal gebruikt als invoer voor andere filters om een kleur toe te passen op een tekening." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2756 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2769 msgid "The <b>feGaussianBlur</b> filter primitive uniformly blurs its input. It is commonly used together with feOffset to create a drop shadow effect." msgstr "Het <b>feGaussianBlur</b>-filtereffect vervaagt de invoer uniform. Het wordt vaak samen met <i>feOffset</i> gebruikt om een schaduweffect te creëren." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2760 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2773 msgid "The <b>feImage</b> filter primitive fills the region with an external image or another part of the document." msgstr "Het <b>feImage</b>-filtereffect vult een regio met een externe afbeelding of een ander deel van het document." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2764 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2777 msgid "The <b>feMerge</b> filter primitive composites several temporary images inside the filter primitive to a single image. It uses normal alpha compositing for this. This is equivalent to using several feBlend primitives in 'normal' mode or several feComposite primitives in 'over' mode." msgstr "Het <b>feMerge</b>-filtereffect verenigt verschillende tijdelijke beelden in het filter tot één afbeelding. Hiervoor wordt normale alfamenging gebruikt. Dit is equivalent aan het gebruik van verschillende <i>feBlend</i>-filtereffecten in 'normale' modus of verschillende <i>feComposite</i>-filtereffecten in 'over'-modus." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2768 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2781 msgid "The <b>feMorphology</b> filter primitive provides erode and dilate effects. For single-color objects erode makes the object thinner and dilate makes it thicker." msgstr "Het <b>feMorphology</b>-filtereffect verschaft eroderings- en verdikkingseffecten. Voor objecten met één kleur maakt eroderen het object dunner en verdikken maakt het object dikker." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2772 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2785 msgid "The <b>feOffset</b> filter primitive offsets the image by an user-defined amount. For example, this is useful for drop shadows, where the shadow is in a slightly different position than the actual object." msgstr "Het <b>feOffset</b>-filtereffect verplaatst de afbeelding met een opgegeven hoeveelheid. Dit is handig om bijvoorbeeld schaduwen te maken, waarbij de schaduw en het actuele object zich op bijna dezelfde positie bevinden." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2776 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2789 msgid "The <b>feDiffuseLighting</b> and <b>feSpecularLighting</b> filter primitives create \"embossed\" shadings. The input's alpha channel is used to provide depth information: higher opacity areas are raised toward the viewer and lower opacity areas recede away from the viewer." msgstr "De <b>feDiffuseLighting</b>- en <i>feSpecularLighting</i>-filtereffecten maken \"reliëf\"schaduwen. Het alfakanaal van de invoer wordt gebruikt voor de diepte-informatie: gebieden met grotere ondoorzichtigheid verrijzen ten opzichte van de kijker en gebieden met lagere ondoorzichtigheid wijken terug." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2780 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2793 msgid "The <b>feTile</b> filter primitive tiles a region with its input graphic" msgstr "Het <b>feTile</b>-filtereffect maakt klonen van een regio in de bronafbeelding." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2784 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2797 msgid "The <b>feTurbulence</b> filter primitive renders Perlin noise. This kind of noise is useful in simulating several nature phenomena like clouds, fire and smoke and in generating complex textures like marble or granite." msgstr "Het <b>feTurbulence</b>-filtereffect genereert Perlin-ruis. Dit type ruis simuleert diverse natuurlijke fenomenen zoals wolken, vuur en rook, en genereert complexe texturen zoals marmer of graniet." -#: ../src/ui/dialog/filter-effects-dialog.cpp:2803 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2816 msgid "Duplicate filter primitive" msgstr "Filtereffect dupliceren" -#: ../src/ui/dialog/filter-effects-dialog.cpp:2856 +#: ../src/ui/dialog/filter-effects-dialog.cpp:2869 msgid "Set filter primitive attribute" msgstr "Eigenschap van filtereffect instellen" @@ -15084,7 +14949,7 @@ msgid "Search spirals" msgstr "Spiralen doorzoeken" #: ../src/ui/dialog/find.cpp:102 -#: ../src/widgets/toolbox.cpp:1732 +#: ../src/widgets/toolbox.cpp:1730 msgid "Paths" msgstr "Paden" @@ -15210,7 +15075,7 @@ msgstr "Selecteer een objecttype" msgid "Select a property" msgstr "Selecteer een eigenschap" -#: ../src/ui/dialog/font-substitution.cpp:83 +#: ../src/ui/dialog/font-substitution.cpp:87 msgid "" "\n" "Some fonts are not available and have been substituted." @@ -15218,19 +15083,19 @@ msgstr "" "\n" "Sommige lettertypen zijn niet beschikbaar en werden vervangen." -#: ../src/ui/dialog/font-substitution.cpp:86 +#: ../src/ui/dialog/font-substitution.cpp:90 msgid "Font substitution" msgstr "Lettertypevervanging" -#: ../src/ui/dialog/font-substitution.cpp:105 +#: ../src/ui/dialog/font-substitution.cpp:109 msgid "Select all the affected items" msgstr "Selecteer alle geaffecteerde objecten" -#: ../src/ui/dialog/font-substitution.cpp:110 +#: ../src/ui/dialog/font-substitution.cpp:114 msgid "Don't show this warning again" msgstr "Toon deze waarschuwing niet meer" -#: ../src/ui/dialog/font-substitution.cpp:251 +#: ../src/ui/dialog/font-substitution.cpp:255 msgid "Font '%1' substituted with '%2'" msgstr "Lettertype '%1' vervangen door '%2'" @@ -16061,25 +15926,25 @@ msgstr "Hulplijn ID: %s" msgid "Current: %s" msgstr "Huidig: %s" -#: ../src/ui/dialog/icon-preview.cpp:155 +#: ../src/ui/dialog/icon-preview.cpp:159 #, c-format msgid "%d x %d" msgstr "%d x %d" -#: ../src/ui/dialog/icon-preview.cpp:167 +#: ../src/ui/dialog/icon-preview.cpp:171 msgid "Magnified:" msgstr "Uitvergroot:" -#: ../src/ui/dialog/icon-preview.cpp:236 +#: ../src/ui/dialog/icon-preview.cpp:240 msgid "Actual Size:" msgstr "Huidige grootte:" -#: ../src/ui/dialog/icon-preview.cpp:241 +#: ../src/ui/dialog/icon-preview.cpp:245 msgctxt "Icon preview window" msgid "Sele_ction" msgstr "Sele_ctie" -#: ../src/ui/dialog/icon-preview.cpp:243 +#: ../src/ui/dialog/icon-preview.cpp:247 msgid "Selection only or whole document" msgstr "Alleen selectie of volledig document" @@ -16373,16 +16238,14 @@ msgid "Object paint style" msgstr "Verfstijl objecten" #. Zoom -#. dtw->zoom_status = gtk_spin_button_new_with_range (log(SP_DESKTOP_ZOOM_MIN)/log(2), log(SP_DESKTOP_ZOOM_MAX)/log(2), 0.1); #: ../src/ui/dialog/inkscape-preferences.cpp:376 -#: ../src/widgets/desktop-widget.cpp:636 -#: ../src/widgets/desktop-widget.cpp:639 +#: ../src/widgets/desktop-widget.cpp:635 msgid "Zoom" msgstr "Zoomen" #. Measure #: ../src/ui/dialog/inkscape-preferences.cpp:381 -#: ../src/verbs.cpp:2614 +#: ../src/verbs.cpp:2673 msgctxt "ContextVerb" msgid "Measure" msgstr "Meetlat" @@ -16429,7 +16292,7 @@ msgstr "Indien actief, zal ieder nieuw aangemaakt object selecteren (deselecteer #. Text #: ../src/ui/dialog/inkscape-preferences.cpp:439 -#: ../src/verbs.cpp:2606 +#: ../src/verbs.cpp:2665 msgctxt "ContextVerb" msgid "Text" msgstr "Tekst" @@ -16450,6 +16313,30 @@ msgstr "Waarschuwing lettertypevervanging weergeven" msgid "Show font substitution warning dialog when requested fonts are not available on the system" msgstr "Waarschuwing lettertypevervanging weergeven wanneer de gevraagde lettertypes niet beschikbaar zijn op het systeem" +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Pixel" +msgstr "Pixel" + +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Pica" +msgstr "Pica" + +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Millimeter" +msgstr "Millimeter" + +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Centimeter" +msgstr "Centimeter" + +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Inch" +msgstr "Duim" + +#: ../src/ui/dialog/inkscape-preferences.cpp:451 +msgid "Em square" +msgstr "Em kwadraat" + #. , _("Ex square"), _("Percent") #. , SP_CSS_UNIT_EX, SP_CSS_UNIT_PERCENT #: ../src/ui/dialog/inkscape-preferences.cpp:454 @@ -16489,8 +16376,8 @@ msgstr "Verfemmer" #. Gradient #: ../src/ui/dialog/inkscape-preferences.cpp:478 -#: ../src/widgets/gradient-selector.cpp:150 -#: ../src/widgets/gradient-selector.cpp:302 +#: ../src/widgets/gradient-selector.cpp:151 +#: ../src/widgets/gradient-selector.cpp:303 msgid "Gradient" msgstr "Kleurverloop" @@ -17216,9 +17103,9 @@ msgid "_Click/drag threshold:" msgstr "G_renswaarde klikken/slepen:" #: ../src/ui/dialog/inkscape-preferences.cpp:852 -#: ../src/ui/dialog/inkscape-preferences.cpp:1190 #: ../src/ui/dialog/inkscape-preferences.cpp:1194 -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 msgid "pixels" msgstr "pixels" @@ -17287,151 +17174,164 @@ msgstr "Het aantal spaties dat gebruikt wordt voor het inspringen van geneste el msgid "Path data" msgstr "Data pad" -#: ../src/ui/dialog/inkscape-preferences.cpp:882 -msgid "Allow relative coordinates" -msgstr "Relatieve coördinaten toestaan" +#: ../src/ui/dialog/inkscape-preferences.cpp:883 +msgid "Absolute" +msgstr "Absoluut" #: ../src/ui/dialog/inkscape-preferences.cpp:883 -msgid "If set, relative coordinates may be used in path data" -msgstr "Indien aangevinkt, kunnen relatieve coördinaten gebruikt worden in paddata" +msgid "Relative" +msgstr "Relatief" + +#: ../src/ui/dialog/inkscape-preferences.cpp:883 +#: ../src/ui/dialog/inkscape-preferences.cpp:1173 +msgid "Optimized" +msgstr "Optimaliseren" + +#: ../src/ui/dialog/inkscape-preferences.cpp:887 +msgid "Path string format" +msgstr "Padstringformaat" + +#: ../src/ui/dialog/inkscape-preferences.cpp:887 +msgid "Path data should be written: only with absolute coordinates, only with relative coordinates, or optimized for string length (mixed absolute and relative coordinates)" +msgstr "Wijze waarop paddata geschreven worden: met alleen absolute coördinatie, met alleen relatieve coördinaten of geoptimaliseerd voor stringlengte (absolute en relatieve coördinaten gemengd)" -#: ../src/ui/dialog/inkscape-preferences.cpp:885 +#: ../src/ui/dialog/inkscape-preferences.cpp:889 msgid "Force repeat commands" msgstr "Herhaalcommando's forceren" -#: ../src/ui/dialog/inkscape-preferences.cpp:886 +#: ../src/ui/dialog/inkscape-preferences.cpp:890 msgid "Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')" msgstr "Herhaling van hetzelfde padcommando forceren (bijvoorbeeld 'L 1,2 L 3,4' in plaats van 'L 1,2 3,4')" -#: ../src/ui/dialog/inkscape-preferences.cpp:888 +#: ../src/ui/dialog/inkscape-preferences.cpp:892 msgid "Numbers" msgstr "Getallen" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:895 msgid "_Numeric precision:" msgstr "Numerieke _precisie:" -#: ../src/ui/dialog/inkscape-preferences.cpp:891 +#: ../src/ui/dialog/inkscape-preferences.cpp:895 msgid "Significant figures of the values written to the SVG file" msgstr "Significante cijfers van waarden weggeschreven in SVG-bestand" -#: ../src/ui/dialog/inkscape-preferences.cpp:894 +#: ../src/ui/dialog/inkscape-preferences.cpp:898 msgid "Minimum _exponent:" msgstr "Minimum _exponent:" -#: ../src/ui/dialog/inkscape-preferences.cpp:894 +#: ../src/ui/dialog/inkscape-preferences.cpp:898 msgid "The smallest number written to SVG is 10 to the power of this exponent; anything smaller is written as zero" msgstr "Het kleinste getal dat naar SVG weggeschreven wordt is 10 tot deze macht. Alles wat kleiner is, wordt weggeschreven als nul." #. Code to add controls for attribute checking options #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:899 +#: ../src/ui/dialog/inkscape-preferences.cpp:903 msgid "Improper Attributes Actions" msgstr "Bij foutieve attributen" -#: ../src/ui/dialog/inkscape-preferences.cpp:901 -#: ../src/ui/dialog/inkscape-preferences.cpp:909 -#: ../src/ui/dialog/inkscape-preferences.cpp:917 +#: ../src/ui/dialog/inkscape-preferences.cpp:905 +#: ../src/ui/dialog/inkscape-preferences.cpp:913 +#: ../src/ui/dialog/inkscape-preferences.cpp:921 msgid "Print warnings" msgstr "Waarschuwingen tonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:902 +#: ../src/ui/dialog/inkscape-preferences.cpp:906 msgid "Print warning if invalid or non-useful attributes found. Database files located in inkscape_data_dir/attributes." msgstr "Waarschuwing tonen bij ongeldige of onbruikbare attributen. Databasebestanden staan in inkscape_data_dir/attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:903 +#: ../src/ui/dialog/inkscape-preferences.cpp:907 msgid "Remove attributes" msgstr "Attributen verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:904 +#: ../src/ui/dialog/inkscape-preferences.cpp:908 msgid "Delete invalid or non-useful attributes from element tag" msgstr "Ongeldige of onbruikbare attributen van tags verwijderen" #. Add incorrect style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:907 +#: ../src/ui/dialog/inkscape-preferences.cpp:911 msgid "Inappropriate Style Properties Actions" msgstr "Bij ongeschikte stijleigenschappen" -#: ../src/ui/dialog/inkscape-preferences.cpp:910 +#: ../src/ui/dialog/inkscape-preferences.cpp:914 msgid "Print warning if inappropriate style properties found (i.e. 'font-family' set on a <rect>). Database files located in inkscape_data_dir/attributes." msgstr "Waarschuwing tonen bij ongeschikte stijleigenschappen (bv. 'font-family' op een <rect>). Databasebestanden staan in inkscape_data_dir/attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:911 -#: ../src/ui/dialog/inkscape-preferences.cpp:919 +#: ../src/ui/dialog/inkscape-preferences.cpp:915 +#: ../src/ui/dialog/inkscape-preferences.cpp:923 msgid "Remove style properties" msgstr "Stijleigenschappen verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:912 +#: ../src/ui/dialog/inkscape-preferences.cpp:916 msgid "Delete inappropriate style properties" msgstr "Ongeschikte stijleigenschappen verwijderen" #. Add default or inherited style properties options -#: ../src/ui/dialog/inkscape-preferences.cpp:915 +#: ../src/ui/dialog/inkscape-preferences.cpp:919 msgid "Non-useful Style Properties Actions" msgstr "Bij niet bruikbare stijleigenschappen" -#: ../src/ui/dialog/inkscape-preferences.cpp:918 +#: ../src/ui/dialog/inkscape-preferences.cpp:922 msgid "Print warning if redundant style properties found (i.e. if a property has the default value and a different value is not inherited or if value is the same as would be inherited). Database files located in inkscape_data_dir/attributes." msgstr "Waarschuwing tonen bij redundante stijleigenschappen (bv. indien een eigenschap ingesteld is op de standaardwaarde, een andere waarde niet overgeërfd wordt of indien de waarde identiek is aan de overgeërfde waarde). Databasebestanden staan in inkscape_data_dir/attributes." -#: ../src/ui/dialog/inkscape-preferences.cpp:920 +#: ../src/ui/dialog/inkscape-preferences.cpp:924 msgid "Delete redundant style properties" msgstr "Redundante stijleigenschappen verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:922 +#: ../src/ui/dialog/inkscape-preferences.cpp:926 msgid "Check Attributes and Style Properties on" msgstr "Attributen en stijleigenschappen nakijken bij" -#: ../src/ui/dialog/inkscape-preferences.cpp:924 +#: ../src/ui/dialog/inkscape-preferences.cpp:928 msgid "Reading" msgstr "Lezen" -#: ../src/ui/dialog/inkscape-preferences.cpp:925 +#: ../src/ui/dialog/inkscape-preferences.cpp:929 msgid "Check attributes and style properties on reading in SVG files (including those internal to Inkscape which will slow down startup)" msgstr "Attributen en stijleigenschappen nakijken bij het lezen van SVG-bestanden (inclusief de interne Inkscapebestanden hetgeen het opstarten zal vertragen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:926 +#: ../src/ui/dialog/inkscape-preferences.cpp:930 msgid "Editing" msgstr "Bewerken" -#: ../src/ui/dialog/inkscape-preferences.cpp:927 +#: ../src/ui/dialog/inkscape-preferences.cpp:931 msgid "Check attributes and style properties while editing SVG files (may slow down Inkscape, mostly useful for debugging)" msgstr "Attributen en stijleigenschappen nakijken bij het bewerken van SVG-bestanden (kan Inkscape vertragen, bruikbaar bij het debuggen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:928 +#: ../src/ui/dialog/inkscape-preferences.cpp:932 msgid "Writing" msgstr "Bewaren" -#: ../src/ui/dialog/inkscape-preferences.cpp:929 +#: ../src/ui/dialog/inkscape-preferences.cpp:933 msgid "Check attributes and style properties on writing out SVG files" msgstr "Attributen en stijleigenschappen bewaren bij het bewaren van SVG-bestanden." -#: ../src/ui/dialog/inkscape-preferences.cpp:931 +#: ../src/ui/dialog/inkscape-preferences.cpp:935 msgid "SVG output" msgstr "SVG-uitvoer" #. TRANSLATORS: see http://www.newsandtech.com/issues/2004/03-04/pt/03-04_rendering.htm -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:941 msgid "Perceptual" msgstr "Perceptueel" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:941 msgid "Relative Colorimetric" msgstr "Relatief colorimetrisch" -#: ../src/ui/dialog/inkscape-preferences.cpp:937 +#: ../src/ui/dialog/inkscape-preferences.cpp:941 msgid "Absolute Colorimetric" msgstr "Absoluut colorimetrisch" -#: ../src/ui/dialog/inkscape-preferences.cpp:941 +#: ../src/ui/dialog/inkscape-preferences.cpp:945 msgid "(Note: Color management has been disabled in this build)" msgstr "(Opmerking: kleurbeheer is niet beschikbaar in deze versie.)" -#: ../src/ui/dialog/inkscape-preferences.cpp:945 +#: ../src/ui/dialog/inkscape-preferences.cpp:949 msgid "Display adjustment" msgstr "Weergavebijstelling" -#: ../src/ui/dialog/inkscape-preferences.cpp:955 +#: ../src/ui/dialog/inkscape-preferences.cpp:959 #, c-format msgid "" "The ICC profile to use to calibrate display output.\n" @@ -17440,135 +17340,135 @@ msgstr "" "Te ICC-kleurprofiel gebruiken om schermuitvoer te kalibreren.\n" "Doorzochte mappen: %s" -#: ../src/ui/dialog/inkscape-preferences.cpp:956 +#: ../src/ui/dialog/inkscape-preferences.cpp:960 msgid "Display profile:" msgstr "Weergaveprofiel:" -#: ../src/ui/dialog/inkscape-preferences.cpp:961 +#: ../src/ui/dialog/inkscape-preferences.cpp:965 msgid "Retrieve profile from display" msgstr "Profiel uit weergaveapparaat ophalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:964 +#: ../src/ui/dialog/inkscape-preferences.cpp:968 msgid "Retrieve profiles from those attached to displays via XICC" msgstr "Verkrijg profielen van die verbonden aan weergaveapparaten via XICC" -#: ../src/ui/dialog/inkscape-preferences.cpp:966 +#: ../src/ui/dialog/inkscape-preferences.cpp:970 msgid "Retrieve profiles from those attached to displays" msgstr "Verkrijg profielen van die verbonden aan weergaveapparaten" -#: ../src/ui/dialog/inkscape-preferences.cpp:971 +#: ../src/ui/dialog/inkscape-preferences.cpp:975 msgid "Display rendering intent:" msgstr "Rendermethode voor weergave:" -#: ../src/ui/dialog/inkscape-preferences.cpp:972 +#: ../src/ui/dialog/inkscape-preferences.cpp:976 msgid "The rendering intent to use to calibrate display output" msgstr "De rendermethode die gebruikt moet worden voor het kalibreren van de weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:974 +#: ../src/ui/dialog/inkscape-preferences.cpp:978 msgid "Proofing" msgstr "Visuele controle" -#: ../src/ui/dialog/inkscape-preferences.cpp:976 +#: ../src/ui/dialog/inkscape-preferences.cpp:980 msgid "Simulate output on screen" msgstr "Uitvoer op scherm simuleren" -#: ../src/ui/dialog/inkscape-preferences.cpp:978 +#: ../src/ui/dialog/inkscape-preferences.cpp:982 msgid "Simulates output of target device" msgstr "Simuleert de uitvoer van het doelapparaat" -#: ../src/ui/dialog/inkscape-preferences.cpp:980 +#: ../src/ui/dialog/inkscape-preferences.cpp:984 msgid "Mark out of gamut colors" msgstr "Kleuren die buiten bereik vallen markeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:982 +#: ../src/ui/dialog/inkscape-preferences.cpp:986 msgid "Highlights colors that are out of gamut for the target device" msgstr "Markeert kleuren die buiten het bereik van het doelapparaat liggen" -#: ../src/ui/dialog/inkscape-preferences.cpp:994 +#: ../src/ui/dialog/inkscape-preferences.cpp:998 msgid "Out of gamut warning color:" msgstr "Buitenbereikwaarschuwingskleur:" -#: ../src/ui/dialog/inkscape-preferences.cpp:995 +#: ../src/ui/dialog/inkscape-preferences.cpp:999 msgid "Selects the color used for out of gamut warning" msgstr "Selecteert de kleur die voor de buitenbereikwaarschuwing gebruikt wordt" -#: ../src/ui/dialog/inkscape-preferences.cpp:997 +#: ../src/ui/dialog/inkscape-preferences.cpp:1001 msgid "Device profile:" msgstr "Apparaatprofiel:" -#: ../src/ui/dialog/inkscape-preferences.cpp:998 +#: ../src/ui/dialog/inkscape-preferences.cpp:1002 msgid "The ICC profile to use to simulate device output" msgstr "ICC-profiel om apparaatuitvoer mee te simuleren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1001 +#: ../src/ui/dialog/inkscape-preferences.cpp:1005 msgid "Device rendering intent:" msgstr "Rendermethode voor apparaat:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1002 +#: ../src/ui/dialog/inkscape-preferences.cpp:1006 msgid "The rendering intent to use to calibrate device output" msgstr "De te gebruiken rendermethode voor het kalibreren van de apparaatuitvoer" -#: ../src/ui/dialog/inkscape-preferences.cpp:1004 +#: ../src/ui/dialog/inkscape-preferences.cpp:1008 msgid "Black point compensation" msgstr "Zwartpuntcompensatie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1006 +#: ../src/ui/dialog/inkscape-preferences.cpp:1010 msgid "Enables black point compensation" msgstr "Zwartpuntcompensatie inschakelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1008 +#: ../src/ui/dialog/inkscape-preferences.cpp:1012 msgid "Preserve black" msgstr "Zwart behouden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1015 +#: ../src/ui/dialog/inkscape-preferences.cpp:1019 msgid "(LittleCMS 1.15 or later required)" msgstr "(LittleCMS 1.15 of nieuwer is vereist)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1017 +#: ../src/ui/dialog/inkscape-preferences.cpp:1021 msgid "Preserve K channel in CMYK -> CMYK transforms" msgstr "K-kanaal behouden in CMYK->CMYK-transformaties" -#: ../src/ui/dialog/inkscape-preferences.cpp:1031 -#: ../src/widgets/sp-color-icc-selector.cpp:325 -#: ../src/widgets/sp-color-icc-selector.cpp:678 +#: ../src/ui/dialog/inkscape-preferences.cpp:1035 +#: ../src/widgets/sp-color-icc-selector.cpp:474 +#: ../src/widgets/sp-color-icc-selector.cpp:766 msgid "<none>" msgstr "<geen>" -#: ../src/ui/dialog/inkscape-preferences.cpp:1076 +#: ../src/ui/dialog/inkscape-preferences.cpp:1080 msgid "Color management" msgstr "Kleurbeheer" #. Autosave options -#: ../src/ui/dialog/inkscape-preferences.cpp:1079 +#: ../src/ui/dialog/inkscape-preferences.cpp:1083 msgid "Enable autosave (requires restart)" msgstr "Auto-opslaan inschakelen (vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1080 +#: ../src/ui/dialog/inkscape-preferences.cpp:1084 msgid "Automatically save the current document(s) at a given interval, thus minimizing loss in case of a crash" msgstr "Huidig(e) document(en) automatisch opslaan na een gegeven interval om verlies te beperken bij een crash" -#: ../src/ui/dialog/inkscape-preferences.cpp:1086 +#: ../src/ui/dialog/inkscape-preferences.cpp:1090 msgctxt "Filesystem" msgid "Autosave _directory:" msgstr "Map voor _auto-opslaan:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1086 +#: ../src/ui/dialog/inkscape-preferences.cpp:1090 msgid "The directory where autosaves will be written. This should be an absolute path (starts with / on UNIX or a drive letter such as C: on Windows). " msgstr "De map waar automatisch bewaarde bestanden staan. Dit zou een absoluut pad moeten zijn (start met / op UNIX en een schijfletter zoals C: op Windows)." -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1092 msgid "_Interval (in minutes):" msgstr "I_nterval (in minuten):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1088 +#: ../src/ui/dialog/inkscape-preferences.cpp:1092 msgid "Interval (in minutes) at which document will be autosaved" msgstr "Interval (in minuten) voor het automatisch opslaan van documenten" -#: ../src/ui/dialog/inkscape-preferences.cpp:1090 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "_Maximum number of autosaves:" msgstr "_Maximum aantal auto-bewaringen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1090 +#: ../src/ui/dialog/inkscape-preferences.cpp:1094 msgid "Maximum number of autosaved files; use this to limit the storage space used" msgstr "Maximum aantal automatisch opgeslagen bestanden; gebruik deze instelling om de ingenomen opslagruimte te beperken" @@ -17584,244 +17484,240 @@ msgstr "Maximum aantal automatisch opgeslagen bestanden; gebruik deze instelling #. _autosave_autosave_interval.signal_changed().connect( sigc::ptr_fun(inkscape_autosave_init), TRUE ); #. #. ----------- -#: ../src/ui/dialog/inkscape-preferences.cpp:1105 +#: ../src/ui/dialog/inkscape-preferences.cpp:1109 msgid "Autosave" msgstr "Auto-opslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1109 +#: ../src/ui/dialog/inkscape-preferences.cpp:1113 msgid "Open Clip Art Library _Server Name:" msgstr "'Open Clip Art Library' _servernaam:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1110 +#: ../src/ui/dialog/inkscape-preferences.cpp:1114 msgid "The server name of the Open Clip Art Library webdav server; it's used by the Import and Export to OCAL function" msgstr "De servernaam van de weddav-server van de 'Open Clip Art'-mediatheek: deze wordt gebruikt bij het importeren uit en exporteren naar OCAL" -#: ../src/ui/dialog/inkscape-preferences.cpp:1112 +#: ../src/ui/dialog/inkscape-preferences.cpp:1116 msgid "Open Clip Art Library _Username:" msgstr "'Open Clip Art Library' _gebruikersnaam:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1113 +#: ../src/ui/dialog/inkscape-preferences.cpp:1117 msgid "The username used to log into Open Clip Art Library" msgstr "De gebruikersnaam om in te loggen in de 'Open Clip Art'-mediatheek" -#: ../src/ui/dialog/inkscape-preferences.cpp:1115 +#: ../src/ui/dialog/inkscape-preferences.cpp:1119 msgid "Open Clip Art Library _Password:" msgstr "'Open Clip Art Library' _wachtwoord:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1116 +#: ../src/ui/dialog/inkscape-preferences.cpp:1120 msgid "The password used to log into Open Clip Art Library" msgstr "Het wachtwoord om in te loggen in de 'Open Clip Art'-mediatheek" -#: ../src/ui/dialog/inkscape-preferences.cpp:1117 +#: ../src/ui/dialog/inkscape-preferences.cpp:1121 msgid "Open Clip Art" msgstr "Open Clip Art" -#: ../src/ui/dialog/inkscape-preferences.cpp:1122 +#: ../src/ui/dialog/inkscape-preferences.cpp:1126 msgid "Behavior" msgstr "Gedrag" -#: ../src/ui/dialog/inkscape-preferences.cpp:1126 +#: ../src/ui/dialog/inkscape-preferences.cpp:1130 msgid "_Simplification threshold:" msgstr "_Grenswaarde voor vereenvoudiging:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1127 +#: ../src/ui/dialog/inkscape-preferences.cpp:1131 msgid "How strong is the Node tool's Simplify command by default. If you invoke this command several times in quick succession, it will act more and more aggressively; invoking it again after a pause restores the default threshold." msgstr "De standaardsterkte van de 'Vereenvoudigen'-opdracht. Als u deze opdracht enkele malen vlak na elkaar uitvoert, zal dat steeds meer effect hebben; uitvoeren na een korte pauze herstelt de standaard grenswaarde." -#: ../src/ui/dialog/inkscape-preferences.cpp:1129 +#: ../src/ui/dialog/inkscape-preferences.cpp:1133 msgid "Color stock markers the same color as object" msgstr "Kleur standaardmarkering is deze van object" -#: ../src/ui/dialog/inkscape-preferences.cpp:1130 +#: ../src/ui/dialog/inkscape-preferences.cpp:1134 msgid "Color custom markers the same color as object" msgstr "Kleur aangepaste markering is deze van object" -#: ../src/ui/dialog/inkscape-preferences.cpp:1131 -#: ../src/ui/dialog/inkscape-preferences.cpp:1341 +#: ../src/ui/dialog/inkscape-preferences.cpp:1135 +#: ../src/ui/dialog/inkscape-preferences.cpp:1345 msgid "Update marker color when object color changes" msgstr "Markeringskleur bijwerken bij verandering objectkleur" # De volgende zes strings beschrijven wat enkele toetsen doen. # Een kleine letter maakt duidelijker dat ze een voortzetting zijn. #. Selecting options -#: ../src/ui/dialog/inkscape-preferences.cpp:1134 +#: ../src/ui/dialog/inkscape-preferences.cpp:1138 msgid "Select in all layers" msgstr "In alle lagen selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1135 +#: ../src/ui/dialog/inkscape-preferences.cpp:1139 msgid "Select only within current layer" msgstr "Alleen binnen de huidige laag selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1136 +#: ../src/ui/dialog/inkscape-preferences.cpp:1140 msgid "Select in current layer and sublayers" msgstr "In huidige laag en onderliggende lagen selecteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1137 +#: ../src/ui/dialog/inkscape-preferences.cpp:1141 msgid "Ignore hidden objects and layers" msgstr "Verborgen objecten en lagen negeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1138 +#: ../src/ui/dialog/inkscape-preferences.cpp:1142 msgid "Ignore locked objects and layers" msgstr "Vergrendelde objecten en lagen negeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1139 +#: ../src/ui/dialog/inkscape-preferences.cpp:1143 msgid "Deselect upon layer change" msgstr "Deselecteren bij veranderen van laag" -#: ../src/ui/dialog/inkscape-preferences.cpp:1142 +#: ../src/ui/dialog/inkscape-preferences.cpp:1146 msgid "Uncheck this to be able to keep the current objects selected when the current layer changes" msgstr "Deselecteer om geselecteerde objecten geselecteerd te houden als de huidige laag verandert" # Dit staat voor de vorige zes strings. -#: ../src/ui/dialog/inkscape-preferences.cpp:1144 +#: ../src/ui/dialog/inkscape-preferences.cpp:1148 msgid "Ctrl+A, Tab, Shift+Tab" msgstr "Ctrl+A, Tab, Shift+Tab" -#: ../src/ui/dialog/inkscape-preferences.cpp:1146 +#: ../src/ui/dialog/inkscape-preferences.cpp:1150 msgid "Make keyboard selection commands work on objects in all layers" msgstr "Toetsenbordselectiecommando's werken op objecten in alle lagen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1148 +#: ../src/ui/dialog/inkscape-preferences.cpp:1152 msgid "Make keyboard selection commands work on objects in current layer only" msgstr "Toetsenbordselectiecommando's werken alleen op objecten in de huidige laag" -#: ../src/ui/dialog/inkscape-preferences.cpp:1150 +#: ../src/ui/dialog/inkscape-preferences.cpp:1154 msgid "Make keyboard selection commands work on objects in current layer and all its sublayers" msgstr "Toetsenbordselectiecommando's werken op objecten in de huidige laag en alle onderliggende lagen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1152 +#: ../src/ui/dialog/inkscape-preferences.cpp:1156 msgid "Uncheck this to be able to select objects that are hidden (either by themselves or by being in a hidden layer)" msgstr "Deselecteer om objecten te kunnen selecteren die verborgen zijn (zelf verborgen of doordat ze in een verborgen laag zitten)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1154 +#: ../src/ui/dialog/inkscape-preferences.cpp:1158 msgid "Uncheck this to be able to select objects that are locked (either by themselves or by being in a locked layer)" msgstr "Deselecteer om objecten te kunnen selecteren die vergrendeld zijn (zelf vergrendeld of doordat ze in een vergrendelde laag zitten)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1156 +#: ../src/ui/dialog/inkscape-preferences.cpp:1160 msgid "Wrap when cycling objects in z-order" msgstr "In cycli gaan door objecten bij onderselectie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1158 +#: ../src/ui/dialog/inkscape-preferences.cpp:1162 msgid "Alt+Scroll Wheel" msgstr "Alt+Scrollwiel" -#: ../src/ui/dialog/inkscape-preferences.cpp:1160 +#: ../src/ui/dialog/inkscape-preferences.cpp:1164 msgid "Wrap around at start and end when cycling objects in z-order" msgstr "Bij het bereiken van het onderste object terug naar het bovenste bij onderselectie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1162 +#: ../src/ui/dialog/inkscape-preferences.cpp:1166 msgid "Selecting" msgstr "Selecteren" #. Transforms options -#: ../src/ui/dialog/inkscape-preferences.cpp:1165 -#: ../src/widgets/select-toolbar.cpp:572 +#: ../src/ui/dialog/inkscape-preferences.cpp:1169 +#: ../src/widgets/select-toolbar.cpp:576 msgid "Scale stroke width" msgstr "Lijndikte mee schalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1166 +#: ../src/ui/dialog/inkscape-preferences.cpp:1170 msgid "Scale rounded corners in rectangles" msgstr "Afronding van hoeken mee schalen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1167 +#: ../src/ui/dialog/inkscape-preferences.cpp:1171 msgid "Transform gradients" msgstr "Kleurverlopen transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1168 +#: ../src/ui/dialog/inkscape-preferences.cpp:1172 msgid "Transform patterns" msgstr "Patronen transformeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1169 -msgid "Optimized" -msgstr "Optimaliseren" - -#: ../src/ui/dialog/inkscape-preferences.cpp:1170 +#: ../src/ui/dialog/inkscape-preferences.cpp:1174 msgid "Preserved" msgstr "Behouden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1173 -#: ../src/widgets/select-toolbar.cpp:573 +#: ../src/ui/dialog/inkscape-preferences.cpp:1177 +#: ../src/widgets/select-toolbar.cpp:577 msgid "When scaling objects, scale the stroke width by the same proportion" msgstr "Wanneer objecten worden vergroot of verkleind, de lijndikte evenveel mee vergroten of verkleinen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1175 -#: ../src/widgets/select-toolbar.cpp:584 +#: ../src/ui/dialog/inkscape-preferences.cpp:1179 +#: ../src/widgets/select-toolbar.cpp:588 msgid "When scaling rectangles, scale the radii of rounded corners" msgstr "Wanneer rechthoeken worden vergroot of verkleind, de straal van de hoek mee vergroten of verkleinen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1177 -#: ../src/widgets/select-toolbar.cpp:595 +#: ../src/ui/dialog/inkscape-preferences.cpp:1181 +#: ../src/widgets/select-toolbar.cpp:599 msgid "Move gradients (in fill or stroke) along with the objects" msgstr "Kleurverlopen (bij vulling of lijn) verplaatsen samen met de objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:1179 -#: ../src/widgets/select-toolbar.cpp:606 +#: ../src/ui/dialog/inkscape-preferences.cpp:1183 +#: ../src/widgets/select-toolbar.cpp:610 msgid "Move patterns (in fill or stroke) along with the objects" msgstr "Patronen (bij vulling of lijn) verplaatsen samen met de objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:1180 +#: ../src/ui/dialog/inkscape-preferences.cpp:1184 msgid "Store transformation" msgstr "Opslaan van transformaties" -#: ../src/ui/dialog/inkscape-preferences.cpp:1182 +#: ../src/ui/dialog/inkscape-preferences.cpp:1186 msgid "If possible, apply transformation to objects without adding a transform= attribute" msgstr "Pas, indien mogelijk, transformaties op objecten toe zonder een 'transform='-waarde toe te voegen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1184 +#: ../src/ui/dialog/inkscape-preferences.cpp:1188 msgid "Always store transformation as a transform= attribute on objects" msgstr "Transformaties altijd opslaan als een 'transform='-waarde bij objecten." -#: ../src/ui/dialog/inkscape-preferences.cpp:1186 +#: ../src/ui/dialog/inkscape-preferences.cpp:1190 msgid "Transforms" msgstr "Transformaties" -#: ../src/ui/dialog/inkscape-preferences.cpp:1190 +#: ../src/ui/dialog/inkscape-preferences.cpp:1194 msgid "Mouse _wheel scrolls by:" msgstr "_Muiswiel verschuift met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1191 +#: ../src/ui/dialog/inkscape-preferences.cpp:1195 msgid "One mouse wheel notch scrolls by this distance in screen pixels (horizontally with Shift)" msgstr "Elke muiswielstap verschuift het beeld dit aantal pixels (houd Shift ingedrukt om horizontaal te verschuiven)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1192 +#: ../src/ui/dialog/inkscape-preferences.cpp:1196 msgid "Ctrl+arrows" msgstr "Ctrl+pijltjestoetsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1194 +#: ../src/ui/dialog/inkscape-preferences.cpp:1198 msgid "Sc_roll by:" msgstr "_Verschuiven met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1195 +#: ../src/ui/dialog/inkscape-preferences.cpp:1199 msgid "Pressing Ctrl+arrow key scrolls by this distance (in screen pixels)" msgstr "Ctrl en een pijltjestoets indrukken verschuift dit aantal pixels" -#: ../src/ui/dialog/inkscape-preferences.cpp:1197 +#: ../src/ui/dialog/inkscape-preferences.cpp:1201 msgid "_Acceleration:" msgstr "V_ersnelling:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1198 +#: ../src/ui/dialog/inkscape-preferences.cpp:1202 msgid "Pressing and holding Ctrl+arrow will gradually speed up scrolling (0 for no acceleration)" msgstr "Ctrl en een pijltjestoets ingedrukt houden zal versnellend verschuiven (0 voor geen versnelling)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1199 +#: ../src/ui/dialog/inkscape-preferences.cpp:1203 msgid "Autoscrolling" msgstr "Automatisch verschuiven" -#: ../src/ui/dialog/inkscape-preferences.cpp:1201 +#: ../src/ui/dialog/inkscape-preferences.cpp:1205 msgid "_Speed:" msgstr "_Snelheid:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1202 +#: ../src/ui/dialog/inkscape-preferences.cpp:1206 msgid "How fast the canvas autoscrolls when you drag beyond canvas edge (0 to turn autoscroll off)" msgstr "Hoe snel het canvas automatisch verschuift wanneer u voorbij de paginarand sleept (0 om dit uit te schakelen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1204 +#: ../src/ui/dialog/inkscape-preferences.cpp:1208 #: ../src/ui/dialog/tracedialog.cpp:522 #: ../src/ui/dialog/tracedialog.cpp:721 msgid "_Threshold:" msgstr "_Grenswaarde:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1205 +#: ../src/ui/dialog/inkscape-preferences.cpp:1209 msgid "How far (in screen pixels) you need to be from the canvas edge to trigger autoscroll; positive is outside the canvas, negative is within the canvas" msgstr "Hoe ver de cursor van de canvasrand moet zijn verwijderd om het automatisch verschuiven te activeren; positieve getallen voor buiten het canvas, negatieve voor er binnen" @@ -17830,639 +17726,658 @@ msgstr "Hoe ver de cursor van de canvasrand moet zijn verwijderd om het automati #. _page_scrolling.add_line( false, "", _scroll_space, "", #. _("When on, pressing and holding Space and dragging with left mouse button pans canvas (as in Adobe Illustrator); when off, Space temporarily switches to Selector tool (default)")); #. -#: ../src/ui/dialog/inkscape-preferences.cpp:1211 +#: ../src/ui/dialog/inkscape-preferences.cpp:1215 msgid "Mouse wheel zooms by default" msgstr "Standaard zoom muiswiel" -#: ../src/ui/dialog/inkscape-preferences.cpp:1213 +#: ../src/ui/dialog/inkscape-preferences.cpp:1217 msgid "When on, mouse wheel zooms without Ctrl and scrolls canvas with Ctrl; when off, it zooms with Ctrl and scrolls without Ctrl" msgstr "Indien aangevinkt, zal de muis zoomen zonder Ctrl en het canvas scrollen met Ctrl; indien uitgeschakeld, zal de muis zoomen met Ctrl en scrollen zonder Ctrl" -#: ../src/ui/dialog/inkscape-preferences.cpp:1214 +#: ../src/ui/dialog/inkscape-preferences.cpp:1218 msgid "Scrolling" msgstr "Verschuiven" #. Snapping options -#: ../src/ui/dialog/inkscape-preferences.cpp:1217 +#: ../src/ui/dialog/inkscape-preferences.cpp:1221 msgid "Enable snap indicator" msgstr "Kleefindicator activeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1219 +#: ../src/ui/dialog/inkscape-preferences.cpp:1223 msgid "After snapping, a symbol is drawn at the point that has snapped" msgstr "Na het kleven wordt er een symbool getekend op het punt waaraan gekleefd werd" -#: ../src/ui/dialog/inkscape-preferences.cpp:1222 +#: ../src/ui/dialog/inkscape-preferences.cpp:1226 msgid "_Delay (in ms):" msgstr "_Vertraging (ms):" -#: ../src/ui/dialog/inkscape-preferences.cpp:1223 +#: ../src/ui/dialog/inkscape-preferences.cpp:1227 msgid "Postpone snapping as long as the mouse is moving, and then wait an additional fraction of a second. This additional delay is specified here. When set to zero or to a very small number, snapping will be immediate." msgstr "Het kleven uitstellen zolang de muis beweegt en wacht een bepaalde fractie van een seconde. Deze extra vertraging wordt hier opgegeven. Indien ingesteld op nul of een zeer klein getal, vindt het kleven onmiddellijk plaats." -#: ../src/ui/dialog/inkscape-preferences.cpp:1225 +#: ../src/ui/dialog/inkscape-preferences.cpp:1229 msgid "Only snap the node closest to the pointer" msgstr "Enkel het knooppunt dichtst bij de cursor kleeft" -#: ../src/ui/dialog/inkscape-preferences.cpp:1227 +#: ../src/ui/dialog/inkscape-preferences.cpp:1231 msgid "Only try to snap the node that is initially closest to the mouse pointer" msgstr "Enkel het knooppunt dat initieel het dichtst bij de muiscursor is, proberen kleven" -#: ../src/ui/dialog/inkscape-preferences.cpp:1230 +#: ../src/ui/dialog/inkscape-preferences.cpp:1234 msgid "_Weight factor:" msgstr "W_egingsfactor:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1231 +#: ../src/ui/dialog/inkscape-preferences.cpp:1235 msgid "When multiple snap solutions are found, then Inkscape can either prefer the closest transformation (when set to 0), or prefer the node that was initially the closest to the pointer (when set to 1)" msgstr "Wanneer er meerdere mogelijkheden voor kleven zijn, dan kan Inkscape kiezen tussen de meest nabije transformatie (indien ingesteld op 0) of het knooppunt dat initeel het dichtst bij de muiscursor was (indien ingesteld op 1)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1233 +#: ../src/ui/dialog/inkscape-preferences.cpp:1237 msgid "Snap the mouse pointer when dragging a constrained knot" msgstr "De muis kleeft bij het slepen van een beperkt knooppunt" -#: ../src/ui/dialog/inkscape-preferences.cpp:1235 +#: ../src/ui/dialog/inkscape-preferences.cpp:1239 msgid "When dragging a knot along a constraint line, then snap the position of the mouse pointer instead of snapping the projection of the knot onto the constraint line" msgstr "Bij het verslepen van een beperkte lijn, de positie van de muis kleven in plaats van de projectie van het knooppunt op de beperkte lijn" -#: ../src/ui/dialog/inkscape-preferences.cpp:1237 +#: ../src/ui/dialog/inkscape-preferences.cpp:1241 msgid "Snapping" msgstr "Kleven" #. nudgedistance is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1242 +#: ../src/ui/dialog/inkscape-preferences.cpp:1246 msgid "_Arrow keys move by:" msgstr "P_ijltjestoetsen verschuiven met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1243 +#: ../src/ui/dialog/inkscape-preferences.cpp:1247 msgid "Pressing an arrow key moves selected object(s) or node(s) by this distance" msgstr "Een pijltjestoets indrukken verplaatst de geselecteerde objecten of knooppunten met deze afstand" #. defaultscale is limited to 1000 in select-context.cpp: use the same limit here -#: ../src/ui/dialog/inkscape-preferences.cpp:1246 +#: ../src/ui/dialog/inkscape-preferences.cpp:1250 msgid "> and < _scale by:" msgstr "> en < _schalen met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1247 +#: ../src/ui/dialog/inkscape-preferences.cpp:1251 msgid "Pressing > or < scales selection up or down by this increment" msgstr "Op > of < drukken vergroot of verkleint de selectie met deze waarde" -#: ../src/ui/dialog/inkscape-preferences.cpp:1249 +#: ../src/ui/dialog/inkscape-preferences.cpp:1253 msgid "_Inset/Outset by:" msgstr "_Vernauwen/verwijden met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1250 +#: ../src/ui/dialog/inkscape-preferences.cpp:1254 msgid "Inset and Outset commands displace the path by this distance" msgstr "Vernauwing en verwijding verplaatsen het pad met deze afstand" -#: ../src/ui/dialog/inkscape-preferences.cpp:1251 +#: ../src/ui/dialog/inkscape-preferences.cpp:1255 msgid "Compass-like display of angles" msgstr "Hoeken weergeven als een kompas" -#: ../src/ui/dialog/inkscape-preferences.cpp:1253 +#: ../src/ui/dialog/inkscape-preferences.cpp:1257 msgid "When on, angles are displayed with 0 at north, 0 to 360 range, positive clockwise; otherwise with 0 at east, -180 to 180 range, positive counterclockwise" msgstr "Indien aangevinkt, dan wijst 0 naar het noorden, en lopen de hoeken van 0 tot 360 graden met de klok mee; indien uit, dan wijst 0 naar het oosten, en lopen de hoeken van -180 tot 180 graden, tegen de klok in" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 msgid "_Rotation snaps every:" msgstr "D_raaien in stappen van:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1259 +#: ../src/ui/dialog/inkscape-preferences.cpp:1263 msgid "degrees" msgstr "graden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1260 +#: ../src/ui/dialog/inkscape-preferences.cpp:1264 msgid "Rotating with Ctrl pressed snaps every that much degrees; also, pressing [ or ] rotates by this amount" msgstr "Het aantal graden per stap wanneer Ctrl ingedrukt wordt tijdens het draaien; de toetsen [ en ] draaien ditzelfde aantal graden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1261 +#: ../src/ui/dialog/inkscape-preferences.cpp:1265 msgid "Relative snapping of guideline angles" msgstr "Relatief kleven van hulplijnhoeken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1263 +#: ../src/ui/dialog/inkscape-preferences.cpp:1267 msgid "When on, the snap angles when rotating a guideline will be relative to the original angle" msgstr "Indien aangevinkt, zijn de kleefhoeken bij het draaien van een hulplijn relatief tov de originele hoek" -#: ../src/ui/dialog/inkscape-preferences.cpp:1265 +#: ../src/ui/dialog/inkscape-preferences.cpp:1269 msgid "_Zoom in/out by:" msgstr "In- en uit_zoomen met:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1266 +#: ../src/ui/dialog/inkscape-preferences.cpp:1269 +msgid "%" +msgstr "%" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1270 msgid "Zoom tool click, +/- keys, and middle click zoom in and out by this multiplier" msgstr "Deze factor wordt gebruikt bij een klik op het vergrootglas, door de +/- toetsen, en door de middelste muisknop" -#: ../src/ui/dialog/inkscape-preferences.cpp:1267 +#: ../src/ui/dialog/inkscape-preferences.cpp:1271 msgid "Steps" msgstr "Stappen" #. Clones options -#: ../src/ui/dialog/inkscape-preferences.cpp:1270 +#: ../src/ui/dialog/inkscape-preferences.cpp:1274 msgid "Move in parallel" msgstr "Parallel verplaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1272 +#: ../src/ui/dialog/inkscape-preferences.cpp:1276 msgid "Stay unmoved" msgstr "Laten staan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1274 +#: ../src/ui/dialog/inkscape-preferences.cpp:1278 msgid "Move according to transform" msgstr "Verplaatsen volgens transformatie" -#: ../src/ui/dialog/inkscape-preferences.cpp:1276 +#: ../src/ui/dialog/inkscape-preferences.cpp:1280 msgid "Are unlinked" msgstr "Ontkoppelen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1278 +#: ../src/ui/dialog/inkscape-preferences.cpp:1282 msgid "Are deleted" msgstr "Verwijderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1281 +#: ../src/ui/dialog/inkscape-preferences.cpp:1285 msgid "Moving original: clones and linked offsets" msgstr "Verplaatsen origineel: klonen en gekoppelde offsets" -#: ../src/ui/dialog/inkscape-preferences.cpp:1283 +#: ../src/ui/dialog/inkscape-preferences.cpp:1287 msgid "Clones are translated by the same vector as their original" msgstr "Klonen worden op dezelfde manier verplaatst als het origineel" -#: ../src/ui/dialog/inkscape-preferences.cpp:1285 +#: ../src/ui/dialog/inkscape-preferences.cpp:1289 msgid "Clones preserve their positions when their original is moved" msgstr "Klonen blijven op hun plaats staan als het origineel wordt verplaatst" -#: ../src/ui/dialog/inkscape-preferences.cpp:1287 +#: ../src/ui/dialog/inkscape-preferences.cpp:1291 msgid "Each clone moves according to the value of its transform= attribute; for example, a rotated clone will move in a different direction than its original" msgstr "Elke kloon verplaatst volgens zijn eigen 'transform='-waarde. Een gedraaide kloon zal bijvoorbeeld in een andere richting verplaatsen dan zijn origineel." -#: ../src/ui/dialog/inkscape-preferences.cpp:1288 +#: ../src/ui/dialog/inkscape-preferences.cpp:1292 msgid "Deleting original: clones" msgstr "Verwijderen origineel: klonen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1290 +#: ../src/ui/dialog/inkscape-preferences.cpp:1294 msgid "Orphaned clones are converted to regular objects" msgstr "Verweesde klonen worden omgezet naar normale objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:1292 +#: ../src/ui/dialog/inkscape-preferences.cpp:1296 msgid "Orphaned clones are deleted along with their original" msgstr "Verweesde klonen worden verwijderd samen met hun origineel" -#: ../src/ui/dialog/inkscape-preferences.cpp:1294 +#: ../src/ui/dialog/inkscape-preferences.cpp:1298 msgid "Duplicating original+clones/linked offset" msgstr "Dupliceren van origineel en klonen/gekoppelde offset" -#: ../src/ui/dialog/inkscape-preferences.cpp:1296 +#: ../src/ui/dialog/inkscape-preferences.cpp:1300 msgid "Relink duplicated clones" msgstr "Gedupliceerde klonen herlinken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1298 +#: ../src/ui/dialog/inkscape-preferences.cpp:1302 msgid "When duplicating a selection containing both a clone and its original (possibly in groups), relink the duplicated clone to the duplicated original instead of the old original" msgstr "De gedupliceerde kloon herlinken naar het gedupliceerde origineel in plaats van het oude origineel bij het dupliceren van een selectie met zowel een kloon en zijn origineel (mogelijk voorkomend in groepen)." #. TRANSLATORS: Heading for the Inkscape Preferences "Clones" Page -#: ../src/ui/dialog/inkscape-preferences.cpp:1301 +#: ../src/ui/dialog/inkscape-preferences.cpp:1305 msgid "Clones" msgstr "Klonen" #. Clip paths and masks options -#: ../src/ui/dialog/inkscape-preferences.cpp:1304 +#: ../src/ui/dialog/inkscape-preferences.cpp:1308 msgid "When applying, use the topmost selected object as clippath/mask" msgstr "Het bovenste object als afsnijpad/masker gebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1306 +#: ../src/ui/dialog/inkscape-preferences.cpp:1310 msgid "Uncheck this to use the bottom selected object as the clipping path or mask" msgstr "Vink uit om het onderste object als masker of maskerpad te gebruiken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1307 +#: ../src/ui/dialog/inkscape-preferences.cpp:1311 msgid "Remove clippath/mask object after applying" msgstr "Het afsnijpad/masker verwijderen na gebruik" -#: ../src/ui/dialog/inkscape-preferences.cpp:1309 +#: ../src/ui/dialog/inkscape-preferences.cpp:1313 msgid "After applying, remove the object used as the clipping path or mask from the drawing" msgstr "Het object dat als afsnijpad of masker gebruikt is, verwijderen na gebruik" -#: ../src/ui/dialog/inkscape-preferences.cpp:1311 +#: ../src/ui/dialog/inkscape-preferences.cpp:1315 msgid "Before applying" msgstr "Voor toepassen afsnijpad/masker" -#: ../src/ui/dialog/inkscape-preferences.cpp:1313 +#: ../src/ui/dialog/inkscape-preferences.cpp:1317 msgid "Do not group clipped/masked objects" msgstr "Afgesneden/gemaskerde objecten niet groeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1314 +#: ../src/ui/dialog/inkscape-preferences.cpp:1318 msgid "Put every clipped/masked object in its own group" msgstr "Elk afgesneden/gemaskerd object in zijn eigen groep plaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1315 +#: ../src/ui/dialog/inkscape-preferences.cpp:1319 msgid "Put all clipped/masked objects into one group" msgstr "Alle afgesneden/gemaskerde objecte in één groep plaatsen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1318 +#: ../src/ui/dialog/inkscape-preferences.cpp:1322 msgid "Apply clippath/mask to every object" msgstr "Afsnijding/masker op elk object toepassen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1321 +#: ../src/ui/dialog/inkscape-preferences.cpp:1325 msgid "Apply clippath/mask to groups containing single object" msgstr "Afsnijding/masker toepassen op één-object-groepen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1324 +#: ../src/ui/dialog/inkscape-preferences.cpp:1328 msgid "Apply clippath/mask to group containing all objects" msgstr "Afsnijding/masker toepassen op groep met alle objecten" -#: ../src/ui/dialog/inkscape-preferences.cpp:1326 +#: ../src/ui/dialog/inkscape-preferences.cpp:1330 msgid "After releasing" msgstr "Na toepassen afsnijpad/masker" -#: ../src/ui/dialog/inkscape-preferences.cpp:1328 +#: ../src/ui/dialog/inkscape-preferences.cpp:1332 msgid "Ungroup automatically created groups" msgstr "Automatisch aangemaakte groepen degroeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1330 +#: ../src/ui/dialog/inkscape-preferences.cpp:1334 msgid "Ungroup groups created when setting clip/mask" msgstr "Groepen gemaakt tijdens maskeren/afsnijden, degroeperen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1332 +#: ../src/ui/dialog/inkscape-preferences.cpp:1336 msgid "Clippaths and masks" msgstr "Maskers en maskerpaden" -#: ../src/ui/dialog/inkscape-preferences.cpp:1335 +#: ../src/ui/dialog/inkscape-preferences.cpp:1339 msgid "Stroke Style Markers" msgstr "Lijnstijl" -#: ../src/ui/dialog/inkscape-preferences.cpp:1337 -#: ../src/ui/dialog/inkscape-preferences.cpp:1339 +#: ../src/ui/dialog/inkscape-preferences.cpp:1341 +#: ../src/ui/dialog/inkscape-preferences.cpp:1343 msgid "Stroke color same as object, fill color either object fill color or marker fill color" msgstr "Lijnkleur identiek als object, vulkleur is ofwel deze van object of markering" -#: ../src/ui/dialog/inkscape-preferences.cpp:1343 +#: ../src/ui/dialog/inkscape-preferences.cpp:1347 msgid "Markers" msgstr "Markeringen" +#: ../src/ui/dialog/inkscape-preferences.cpp:1350 +msgid "Document cleanup" +msgstr "Document schoonmaken" + #: ../src/ui/dialog/inkscape-preferences.cpp:1351 +#: ../src/ui/dialog/inkscape-preferences.cpp:1353 +msgid "Remove unused swatches when doing a document cleanup" +msgstr "Ongebruikte paletten verwijderen bij het schoonmaken van een document" + +#. tooltip +#: ../src/ui/dialog/inkscape-preferences.cpp:1354 +msgid "Cleanup" +msgstr "Schoonmaken" + +#: ../src/ui/dialog/inkscape-preferences.cpp:1362 msgid "Number of _Threads:" msgstr "_Aantal threads:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1351 -#: ../src/ui/dialog/inkscape-preferences.cpp:1869 +#: ../src/ui/dialog/inkscape-preferences.cpp:1362 +#: ../src/ui/dialog/inkscape-preferences.cpp:1880 msgid "(requires restart)" msgstr "(vereist herstart)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1352 +#: ../src/ui/dialog/inkscape-preferences.cpp:1363 msgid "Configure number of processors/threads to use when rendering filters" msgstr "Het aantal te gebruiken processors/threads bij het renderen van filters" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1367 msgid "Rendering _cache size:" msgstr "_Cachegrootte voor renderen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1367 msgctxt "mebibyte (2^20 bytes) abbreviation" msgid "MiB" msgstr "MiB" -#: ../src/ui/dialog/inkscape-preferences.cpp:1356 +#: ../src/ui/dialog/inkscape-preferences.cpp:1367 msgid "Set the amount of memory per document which can be used to store rendered parts of the drawing for later reuse; set to zero to disable caching" msgstr "De hoeveelheid geheugen voor het bewaren van gerenderde delen van de afbeelding voor hergebruik: stel in op nul om de cache uit te schakelen" #. blur quality #. filter quality -#: ../src/ui/dialog/inkscape-preferences.cpp:1359 -#: ../src/ui/dialog/inkscape-preferences.cpp:1383 +#: ../src/ui/dialog/inkscape-preferences.cpp:1370 +#: ../src/ui/dialog/inkscape-preferences.cpp:1394 msgid "Best quality (slowest)" msgstr "Beste kwaliteit (traagst)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1361 -#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1372 +#: ../src/ui/dialog/inkscape-preferences.cpp:1396 msgid "Better quality (slower)" msgstr "Betere kwaliteit (trager)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1363 -#: ../src/ui/dialog/inkscape-preferences.cpp:1387 +#: ../src/ui/dialog/inkscape-preferences.cpp:1374 +#: ../src/ui/dialog/inkscape-preferences.cpp:1398 msgid "Average quality" msgstr "Gemiddelde kwaliteit" -#: ../src/ui/dialog/inkscape-preferences.cpp:1365 -#: ../src/ui/dialog/inkscape-preferences.cpp:1389 +#: ../src/ui/dialog/inkscape-preferences.cpp:1376 +#: ../src/ui/dialog/inkscape-preferences.cpp:1400 msgid "Lower quality (faster)" msgstr "Lagere kwaliteit (sneller)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1367 -#: ../src/ui/dialog/inkscape-preferences.cpp:1391 +#: ../src/ui/dialog/inkscape-preferences.cpp:1378 +#: ../src/ui/dialog/inkscape-preferences.cpp:1402 msgid "Lowest quality (fastest)" msgstr "Laagste kwaliteit (snelst)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1370 +#: ../src/ui/dialog/inkscape-preferences.cpp:1381 msgid "Gaussian blur quality for display" msgstr "Kwaliteit gaussiaanse vervaging voor weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:1372 -#: ../src/ui/dialog/inkscape-preferences.cpp:1396 +#: ../src/ui/dialog/inkscape-preferences.cpp:1383 +#: ../src/ui/dialog/inkscape-preferences.cpp:1407 msgid "Best quality, but display may be very slow at high zooms (bitmap export always uses best quality)" msgstr "Beste kwaliteit, maar weergave kan heel langzaam zijn bij hoge zoom (bitmapexport gebruikt altijd beste kwaliteit)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1374 -#: ../src/ui/dialog/inkscape-preferences.cpp:1398 +#: ../src/ui/dialog/inkscape-preferences.cpp:1385 +#: ../src/ui/dialog/inkscape-preferences.cpp:1409 msgid "Better quality, but slower display" msgstr "Betere kwaliteit, maar langzamere weergave" -#: ../src/ui/dialog/inkscape-preferences.cpp:1376 -#: ../src/ui/dialog/inkscape-preferences.cpp:1400 +#: ../src/ui/dialog/inkscape-preferences.cpp:1387 +#: ../src/ui/dialog/inkscape-preferences.cpp:1411 msgid "Average quality, acceptable display speed" msgstr "Gemiddelde kwaliteit, acceptabele weergavesnelheid" -#: ../src/ui/dialog/inkscape-preferences.cpp:1378 -#: ../src/ui/dialog/inkscape-preferences.cpp:1402 +#: ../src/ui/dialog/inkscape-preferences.cpp:1389 +#: ../src/ui/dialog/inkscape-preferences.cpp:1413 msgid "Lower quality (some artifacts), but display is faster" msgstr "Lage kwaliteit (enkele weergavefouten), maar weergave is sneller" -#: ../src/ui/dialog/inkscape-preferences.cpp:1380 -#: ../src/ui/dialog/inkscape-preferences.cpp:1404 +#: ../src/ui/dialog/inkscape-preferences.cpp:1391 +#: ../src/ui/dialog/inkscape-preferences.cpp:1415 msgid "Lowest quality (considerable artifacts), but display is fastest" msgstr "Laagste kwaliteit (veel weergavefouten), maar weergave is het snelst" -#: ../src/ui/dialog/inkscape-preferences.cpp:1394 +#: ../src/ui/dialog/inkscape-preferences.cpp:1405 msgid "Filter effects quality for display" msgstr "Kwaliteit filtereffecten voor weergave" #. build custom preferences tab -#: ../src/ui/dialog/inkscape-preferences.cpp:1406 +#: ../src/ui/dialog/inkscape-preferences.cpp:1417 #: ../src/ui/dialog/print.cpp:224 msgid "Rendering" msgstr "Renderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1412 +#: ../src/ui/dialog/inkscape-preferences.cpp:1423 msgid "2x2" msgstr "2x2" -#: ../src/ui/dialog/inkscape-preferences.cpp:1412 +#: ../src/ui/dialog/inkscape-preferences.cpp:1423 msgid "4x4" msgstr "4x4" -#: ../src/ui/dialog/inkscape-preferences.cpp:1412 +#: ../src/ui/dialog/inkscape-preferences.cpp:1423 msgid "8x8" msgstr "8x8" -#: ../src/ui/dialog/inkscape-preferences.cpp:1412 +#: ../src/ui/dialog/inkscape-preferences.cpp:1423 msgid "16x16" msgstr "16x16" -#: ../src/ui/dialog/inkscape-preferences.cpp:1416 +#: ../src/ui/dialog/inkscape-preferences.cpp:1427 msgid "Oversample bitmaps:" msgstr "Bitmaps oversampelen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1419 +#: ../src/ui/dialog/inkscape-preferences.cpp:1430 msgid "Automatically reload bitmaps" msgstr "Bitmaps automatisch herladen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1421 +#: ../src/ui/dialog/inkscape-preferences.cpp:1432 msgid "Automatically reload linked images when file is changed on disk" msgstr "Gelinkte afbeeldingen automatisch herladen wanneer het bestand op de schijf gewijzigd is" -#: ../src/ui/dialog/inkscape-preferences.cpp:1423 +#: ../src/ui/dialog/inkscape-preferences.cpp:1434 msgid "_Bitmap editor:" msgstr "B_itmapeditor:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1425 +#: ../src/ui/dialog/inkscape-preferences.cpp:1436 msgid "Default export _resolution:" msgstr "Standaardresolutie voor _exporteren:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1426 +#: ../src/ui/dialog/inkscape-preferences.cpp:1437 msgid "Default bitmap resolution (in dots per inch) in the Export dialog" msgstr "Standaardresolutie voor bitmaps (in punten per duim) in het 'Bitmap exporteren'-dialoogvenster" -#: ../src/ui/dialog/inkscape-preferences.cpp:1428 +#: ../src/ui/dialog/inkscape-preferences.cpp:1439 msgid "Resolution for Create Bitmap _Copy:" msgstr "_Resolutie voor bitmapkopie:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1429 +#: ../src/ui/dialog/inkscape-preferences.cpp:1440 msgid "Resolution used by the Create Bitmap Copy command" msgstr "Resolutie gebruikt voor het commando Bitmapkopie Aanmaken:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1431 +#: ../src/ui/dialog/inkscape-preferences.cpp:1442 msgid "Always embed" msgstr "Altijd invoegen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1431 +#: ../src/ui/dialog/inkscape-preferences.cpp:1442 msgid "Always link" msgstr "Altijd linken" -#: ../src/ui/dialog/inkscape-preferences.cpp:1431 +#: ../src/ui/dialog/inkscape-preferences.cpp:1442 msgid "Ask" msgstr "Vragen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1434 +#: ../src/ui/dialog/inkscape-preferences.cpp:1445 msgid "Bitmap import:" msgstr "Bitmapeditor:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1437 +#: ../src/ui/dialog/inkscape-preferences.cpp:1448 msgid "Bitmap import quality:" msgstr "Importkwaliteit bitmap:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1440 +#: ../src/ui/dialog/inkscape-preferences.cpp:1451 msgid "Default _import resolution:" msgstr "Standaardresolutie voor _importeren:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1441 +#: ../src/ui/dialog/inkscape-preferences.cpp:1452 msgid "Default bitmap resolution (in dots per inch) for bitmap import" msgstr "Standaardresolutie (in punten per duim) voor het exporteren van bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1442 +#: ../src/ui/dialog/inkscape-preferences.cpp:1453 msgid "Override file resolution" msgstr "Bestandsresolutie overschrijven" -#: ../src/ui/dialog/inkscape-preferences.cpp:1444 +#: ../src/ui/dialog/inkscape-preferences.cpp:1455 msgid "Use default bitmap resolution in favor of information from file" msgstr "Standaardresolutie voor bitmaps gebruiken in plaats van info uit bestand" -#: ../src/ui/dialog/inkscape-preferences.cpp:1446 +#: ../src/ui/dialog/inkscape-preferences.cpp:1457 msgid "Bitmaps" msgstr "Bitmaps" -#: ../src/ui/dialog/inkscape-preferences.cpp:1458 +#: ../src/ui/dialog/inkscape-preferences.cpp:1469 msgid "Select a file of predefined shortcuts to use. Any customized shortcuts you create will be added seperately to " msgstr "" -#: ../src/ui/dialog/inkscape-preferences.cpp:1461 +#: ../src/ui/dialog/inkscape-preferences.cpp:1472 msgid "Shortcut file:" msgstr "Bestand met sneltoetsen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1464 +#: ../src/ui/dialog/inkscape-preferences.cpp:1475 +#: ../src/ui/dialog/template-load-tab.cpp:46 msgid "Search:" msgstr "Zoeken:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1476 +#: ../src/ui/dialog/inkscape-preferences.cpp:1487 msgid "Shortcut" msgstr "Sneltoets" -#: ../src/ui/dialog/inkscape-preferences.cpp:1477 -#: ../src/ui/widget/page-sizer.cpp:262 +#: ../src/ui/dialog/inkscape-preferences.cpp:1488 +#: ../src/ui/widget/page-sizer.cpp:260 msgid "Description" msgstr "Beschrijving" -#: ../src/ui/dialog/inkscape-preferences.cpp:1532 +#: ../src/ui/dialog/inkscape-preferences.cpp:1543 #: ../src/ui/dialog/svg-fonts-dialog.cpp:694 #: ../src/ui/dialog/tracedialog.cpp:813 -#: ../src/ui/widget/preferences-widget.cpp:745 +#: ../src/ui/widget/preferences-widget.cpp:749 msgid "Reset" msgstr "Beginwaarde" -#: ../src/ui/dialog/inkscape-preferences.cpp:1532 +#: ../src/ui/dialog/inkscape-preferences.cpp:1543 msgid "Remove all your customized keyboard shortcuts, and revert to the shortcuts in the shortcut file listed above" msgstr "Alle aangepaste sneltoetsen verwijderen en vervangen door de sneltoetsen in het hierboven geselecteerd sneltoetsbestand" -#: ../src/ui/dialog/inkscape-preferences.cpp:1536 +#: ../src/ui/dialog/inkscape-preferences.cpp:1547 msgid "Import ..." msgstr "Importeren..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1536 +#: ../src/ui/dialog/inkscape-preferences.cpp:1547 msgid "Import custom keyboard shortcuts from a file" msgstr "Aangepaste sneltoetsen van een bestand importeren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1539 +#: ../src/ui/dialog/inkscape-preferences.cpp:1550 msgid "Export ..." msgstr "Exporteren..." -#: ../src/ui/dialog/inkscape-preferences.cpp:1539 +#: ../src/ui/dialog/inkscape-preferences.cpp:1550 msgid "Export custom keyboard shortcuts to a file" msgstr "Aangepaste sneltoetsen naar een bestand exporteren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1549 +#: ../src/ui/dialog/inkscape-preferences.cpp:1560 msgid "Keyboard Shortcuts" msgstr "Sneltoetsen" #. Find this group in the tree -#: ../src/ui/dialog/inkscape-preferences.cpp:1712 +#: ../src/ui/dialog/inkscape-preferences.cpp:1723 msgid "Misc" msgstr "Overig" -#: ../src/ui/dialog/inkscape-preferences.cpp:1831 +#: ../src/ui/dialog/inkscape-preferences.cpp:1842 msgid "Set the main spell check language" msgstr "De hoofdtaal voor spellingscontrole instellen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1834 +#: ../src/ui/dialog/inkscape-preferences.cpp:1845 msgid "Second language:" msgstr "Tweede taal:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1835 +#: ../src/ui/dialog/inkscape-preferences.cpp:1846 msgid "Set the second spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "De tweede taal voor spellingscontrole instellen; controle zal enkel stoppen bij niet-bekende woorden in ALLE gekozen talen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1838 +#: ../src/ui/dialog/inkscape-preferences.cpp:1849 msgid "Third language:" msgstr "Derde taal:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1839 +#: ../src/ui/dialog/inkscape-preferences.cpp:1850 msgid "Set the third spell check language; checking will only stop on words unknown in ALL chosen languages" msgstr "De derde taal voor spellingscontrole instellen; controle zal enkel stoppen bij niet-bekende woorden in ALLE gekozen talen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1841 +#: ../src/ui/dialog/inkscape-preferences.cpp:1852 msgid "Ignore words with digits" msgstr "Woorden met cijfers overslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1843 +#: ../src/ui/dialog/inkscape-preferences.cpp:1854 msgid "Ignore words containing digits, such as \"R2D2\"" msgstr "Woorden met cijfers overslaan, bijvoorbeeld \"R2D2\"" -#: ../src/ui/dialog/inkscape-preferences.cpp:1845 +#: ../src/ui/dialog/inkscape-preferences.cpp:1856 msgid "Ignore words in ALL CAPITALS" msgstr "Woorden in HOOFDLETTERS overslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1847 +#: ../src/ui/dialog/inkscape-preferences.cpp:1858 msgid "Ignore words in all capitals, such as \"IUPAC\"" msgstr "Woorden in hoofdletters overslaan, bijvoorbeeld \"IUPAC\"" -#: ../src/ui/dialog/inkscape-preferences.cpp:1849 +#: ../src/ui/dialog/inkscape-preferences.cpp:1860 msgid "Spellcheck" msgstr "Spellingscontrole" -#: ../src/ui/dialog/inkscape-preferences.cpp:1869 +#: ../src/ui/dialog/inkscape-preferences.cpp:1880 msgid "Latency _skew:" msgstr "_Aanpassing vertraging:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1870 +#: ../src/ui/dialog/inkscape-preferences.cpp:1881 msgid "Factor by which the event clock is skewed from the actual time (0.9766 on some systems)" msgstr "Factor waarmee de tijd van een gebeurtenis wordt aangepast ten opzichte van de actuele tijd (0,9766 op sommige systemen)" -#: ../src/ui/dialog/inkscape-preferences.cpp:1872 +#: ../src/ui/dialog/inkscape-preferences.cpp:1883 msgid "Pre-render named icons" msgstr "Pictogram met naam prerenderen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1874 +#: ../src/ui/dialog/inkscape-preferences.cpp:1885 msgid "When on, named icons will be rendered before displaying the ui. This is for working around bugs in GTK+ named icon notification" msgstr "Indien aangevinkt, worden pictogrammen met een naam gerenderd voor het tonen van de interface. Dit wordt gebruikt om bugs op te vangen bij GTK+ benoemde pictogrammeldingen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1882 +#: ../src/ui/dialog/inkscape-preferences.cpp:1893 msgid "System info" msgstr "Systeeminfo" -#: ../src/ui/dialog/inkscape-preferences.cpp:1886 +#: ../src/ui/dialog/inkscape-preferences.cpp:1897 msgid "User config: " msgstr "Gebruikersinstellingen: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1886 +#: ../src/ui/dialog/inkscape-preferences.cpp:1897 msgid "Location of users configuration" msgstr "Locatie van de gebruikersinstellingen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1890 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "User preferences: " msgstr "Gebruikersvoorkeuren: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1890 +#: ../src/ui/dialog/inkscape-preferences.cpp:1901 msgid "Location of the users preferences file" msgstr "Locatie van het bestand met de gebruikersvoorkeuren" -#: ../src/ui/dialog/inkscape-preferences.cpp:1894 +#: ../src/ui/dialog/inkscape-preferences.cpp:1905 msgid "User extensions: " msgstr "Uitbreidingen van de gebruiker: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1894 +#: ../src/ui/dialog/inkscape-preferences.cpp:1905 msgid "Location of the users extensions" msgstr "Locatie van de uitbreidingen van de gebruiker" -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1909 msgid "User cache: " msgstr "Cache gebruiker: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1898 +#: ../src/ui/dialog/inkscape-preferences.cpp:1909 msgid "Location of users cache" msgstr "Locatie van de cache van de gebruiker" -#: ../src/ui/dialog/inkscape-preferences.cpp:1906 +#: ../src/ui/dialog/inkscape-preferences.cpp:1917 msgid "Temporary files: " msgstr "Tijdelijke bestanden: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1906 +#: ../src/ui/dialog/inkscape-preferences.cpp:1917 msgid "Location of the temporary files used for autosave" msgstr "Locatie van de tijdelijke bestanden voor auto-opslaan" -#: ../src/ui/dialog/inkscape-preferences.cpp:1910 +#: ../src/ui/dialog/inkscape-preferences.cpp:1921 msgid "Inkscape data: " msgstr "Inkscape data: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1910 +#: ../src/ui/dialog/inkscape-preferences.cpp:1921 msgid "Location of Inkscape data" msgstr "Locatie van Inkscapedata" -#: ../src/ui/dialog/inkscape-preferences.cpp:1914 +#: ../src/ui/dialog/inkscape-preferences.cpp:1925 msgid "Inkscape extensions: " msgstr "Inkscape-uitbreidingen:" -#: ../src/ui/dialog/inkscape-preferences.cpp:1914 +#: ../src/ui/dialog/inkscape-preferences.cpp:1925 msgid "Location of the Inkscape extensions" msgstr "Locatie van de Inkscape-uitbreidingen" -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1934 msgid "System data: " msgstr "Systeemdata: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1923 +#: ../src/ui/dialog/inkscape-preferences.cpp:1934 msgid "Locations of system data" msgstr "Locaties van de systeemdata" -#: ../src/ui/dialog/inkscape-preferences.cpp:1947 +#: ../src/ui/dialog/inkscape-preferences.cpp:1958 msgid "Icon theme: " msgstr "Pictogramthema: " -#: ../src/ui/dialog/inkscape-preferences.cpp:1947 +#: ../src/ui/dialog/inkscape-preferences.cpp:1958 msgid "Locations of icon themes" msgstr "Locaties van de pictogramthema's" -#: ../src/ui/dialog/inkscape-preferences.cpp:1949 +#: ../src/ui/dialog/inkscape-preferences.cpp:1960 msgid "System" msgstr "Systeem" @@ -18529,7 +18444,7 @@ msgid "_Use pressure-sensitive tablet (requires restart)" msgstr "Drukgevoelig _tekentablet gebruiken (vereist herstart)" #: ../src/ui/dialog/input.cpp:1082 -#: ../src/verbs.cpp:2297 +#: ../src/verbs.cpp:2354 msgid "_Save" msgstr "Op_slaan" @@ -18546,9 +18461,9 @@ msgid "A device can be 'Disabled', its co-ordinates mapped to the whole 'Screen' msgstr "Een invoerapparaat kan 'Inactief' zijn, zijn coördinaten naar het volledige 'Scherm' gemapt worden of naar een enkel 'Venster' (dat normaal in focus is)" #: ../src/ui/dialog/input.cpp:1616 -#: ../src/widgets/calligraphy-toolbar.cpp:599 -#: ../src/widgets/spray-toolbar.cpp:240 -#: ../src/widgets/tweak-toolbar.cpp:390 +#: ../src/widgets/calligraphy-toolbar.cpp:595 +#: ../src/widgets/spray-toolbar.cpp:236 +#: ../src/widgets/tweak-toolbar.cpp:386 msgid "Pressure" msgstr "Druk" @@ -18592,8 +18507,8 @@ msgstr "Laag hernoemen" #. TODO: find an unused layer number, forming name from _("Layer ") + "%d" #: ../src/ui/dialog/layer-properties.cpp:354 #: ../src/ui/dialog/layer-properties.cpp:410 -#: ../src/verbs.cpp:188 -#: ../src/verbs.cpp:2228 +#: ../src/verbs.cpp:194 +#: ../src/verbs.cpp:2285 msgid "Layer" msgstr "Laag" @@ -18602,7 +18517,7 @@ msgid "_Rename" msgstr "_Hernoemen" #: ../src/ui/dialog/layer-properties.cpp:368 -#: ../src/ui/dialog/layers.cpp:749 +#: ../src/ui/dialog/layers.cpp:750 msgid "Rename layer" msgstr "Laag hernoemen" @@ -18628,65 +18543,65 @@ msgid "Move to Layer" msgstr "" #: ../src/ui/dialog/layer-properties.cpp:411 -#: ../src/ui/dialog/transformation.cpp:109 +#: ../src/ui/dialog/transformation.cpp:114 msgid "_Move" msgstr "_Verplaatsen" -#: ../src/ui/dialog/layers.cpp:524 +#: ../src/ui/dialog/layers.cpp:525 #: ../src/ui/widget/layer-selector.cpp:613 msgid "Unhide layer" msgstr "Laag weergeven" -#: ../src/ui/dialog/layers.cpp:524 +#: ../src/ui/dialog/layers.cpp:525 #: ../src/ui/widget/layer-selector.cpp:613 msgid "Hide layer" msgstr "Laag verbergen" -#: ../src/ui/dialog/layers.cpp:535 +#: ../src/ui/dialog/layers.cpp:536 #: ../src/ui/widget/layer-selector.cpp:605 msgid "Lock layer" msgstr "Laag vergrendelen" -#: ../src/ui/dialog/layers.cpp:535 +#: ../src/ui/dialog/layers.cpp:536 #: ../src/ui/widget/layer-selector.cpp:605 msgid "Unlock layer" msgstr "Laag ontgrendelen" -#: ../src/ui/dialog/layers.cpp:623 -#: ../src/verbs.cpp:1343 +#: ../src/ui/dialog/layers.cpp:624 +#: ../src/verbs.cpp:1397 msgid "Toggle layer solo" msgstr "Laag als enige (on)zichtbaar maken" -#: ../src/ui/dialog/layers.cpp:626 -#: ../src/verbs.cpp:1367 +#: ../src/ui/dialog/layers.cpp:627 +#: ../src/verbs.cpp:1421 msgid "Lock other layers" msgstr "Andere lagen vergrendelen" -#: ../src/ui/dialog/layers.cpp:720 +#: ../src/ui/dialog/layers.cpp:721 msgid "Moved layer" msgstr "Laag verplaatst" -#: ../src/ui/dialog/layers.cpp:882 +#: ../src/ui/dialog/layers.cpp:883 msgctxt "Layers" msgid "New" msgstr "Nieuw" -#: ../src/ui/dialog/layers.cpp:887 +#: ../src/ui/dialog/layers.cpp:888 msgctxt "Layers" msgid "Bot" msgstr "Ond" -#: ../src/ui/dialog/layers.cpp:893 +#: ../src/ui/dialog/layers.cpp:894 msgctxt "Layers" msgid "Dn" msgstr "La" -#: ../src/ui/dialog/layers.cpp:899 +#: ../src/ui/dialog/layers.cpp:900 msgctxt "Layers" msgid "Up" msgstr "Ho" -#: ../src/ui/dialog/layers.cpp:905 +#: ../src/ui/dialog/layers.cpp:906 msgctxt "Layers" msgid "Top" msgstr "Bov" @@ -18814,6 +18729,49 @@ msgstr "Loggen begonnen." msgid "Log capture stopped." msgstr "Log aanleggen gestopt." +#: ../src/ui/dialog/new-from-template.cpp:24 +#, fuzzy +msgid "Create from template" +msgstr "Spiraal maken" + +#: ../src/ui/dialog/new-from-template.cpp:26 +msgid "New From Template" +msgstr "" + +#: ../src/ui/dialog/template-widget.cpp:29 +#, fuzzy +msgid "More info" +msgstr "Knooppunten verplaatsen" + +#: ../src/ui/dialog/template-widget.cpp:30 +#: ../src/ui/dialog/template-widget.cpp:31 +msgid " " +msgstr "" + +#: ../src/ui/dialog/template-widget.cpp:32 +#, fuzzy +msgid "no template selected" +msgstr "Geen items geselecteerd." + +#: ../src/ui/dialog/template-widget.cpp:98 +#, fuzzy +msgid "Path: " +msgstr "Pad" + +#: ../src/ui/dialog/template-widget.cpp:101 +#, fuzzy +msgid "Description: " +msgstr "Beschrijving:" + +#: ../src/ui/dialog/template-widget.cpp:103 +#, fuzzy +msgid "Keywords: " +msgstr "Sleutelwoorden:" + +#: ../src/ui/dialog/template-widget.cpp:110 +msgid "By: " +msgstr "" + #: ../src/ui/dialog/object-attributes.cpp:47 msgid "Href:" msgstr "Href:" @@ -18847,16 +18805,16 @@ msgstr "URL:" #: ../src/ui/dialog/object-attributes.cpp:66 #: ../src/ui/dialog/object-attributes.cpp:74 #: ../src/ui/dialog/tile.cpp:618 -#: ../src/widgets/desktop-widget.cpp:674 -#: ../src/widgets/node-toolbar.cpp:590 +#: ../src/widgets/desktop-widget.cpp:670 +#: ../src/widgets/node-toolbar.cpp:593 msgid "X:" msgstr "X:" #: ../src/ui/dialog/object-attributes.cpp:67 #: ../src/ui/dialog/object-attributes.cpp:75 #: ../src/ui/dialog/tile.cpp:619 -#: ../src/widgets/desktop-widget.cpp:684 -#: ../src/widgets/node-toolbar.cpp:608 +#: ../src/widgets/desktop-widget.cpp:680 +#: ../src/widgets/node-toolbar.cpp:611 msgid "Y:" msgstr "Y:" @@ -18884,8 +18842,8 @@ msgid "L_ock" msgstr "Ver_grendelen" #: ../src/ui/dialog/object-properties.cpp:74 -#: ../src/verbs.cpp:2568 -#: ../src/verbs.cpp:2574 +#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2633 msgid "_Set" msgstr "In_stellen" @@ -19033,36 +18991,6 @@ msgstr "SVG-document" msgid "Print" msgstr "Afdrukken" -#. ## Add a menu for clear() -#: ../src/ui/dialog/scriptdialog.cpp:178 -#: ../src/verbs.cpp:131 -msgid "File" -msgstr "Bestand" - -#: ../src/ui/dialog/scriptdialog.cpp:186 -msgid "_Execute Javascript" -msgstr "_Javascript uitvoeren" - -#: ../src/ui/dialog/scriptdialog.cpp:190 -msgid "_Execute Python" -msgstr "_Python uitvoeren" - -#: ../src/ui/dialog/scriptdialog.cpp:194 -msgid "_Execute Ruby" -msgstr "_Ruby uitvoeren" - -#: ../src/ui/dialog/scriptdialog.cpp:205 -msgid "Script" -msgstr "Script" - -#: ../src/ui/dialog/scriptdialog.cpp:215 -msgid "Output" -msgstr "Uitvoer" - -#: ../src/ui/dialog/scriptdialog.cpp:225 -msgid "Errors" -msgstr "Fouten" - #: ../src/ui/dialog/svg-fonts-dialog.cpp:138 msgid "Set SVG Font attribute" msgstr "SVG-lettertypekenmerk instellen" @@ -19223,57 +19151,63 @@ msgid "Preview Text:" msgstr "Voorbeeldtekst:" #. ******************* Symbol Sets ************************ -#: ../src/ui/dialog/symbols.cpp:120 +#: ../src/ui/dialog/symbols.cpp:128 msgid "Symbol set: " msgstr "Symbolenset:" #. Fill in later -#: ../src/ui/dialog/symbols.cpp:129 -#: ../src/ui/dialog/symbols.cpp:130 +#: ../src/ui/dialog/symbols.cpp:137 +#: ../src/ui/dialog/symbols.cpp:138 msgid "Current Document" msgstr "Huidig document" -#. ******************* Preview Scale ********************** -#: ../src/ui/dialog/symbols.cpp:182 -msgid "Preview scale: " -msgstr "Schaal voorvertoning: " +#: ../src/ui/dialog/symbols.cpp:205 +#, fuzzy +msgid "Add Symbol from the current document." +msgstr "Alleen huidige laag tonen" -#: ../src/ui/dialog/symbols.cpp:192 -msgid "Fit" -msgstr "Aanpassen" +#: ../src/ui/dialog/symbols.cpp:214 +#, fuzzy +msgid "Remove Symbol from the current document." +msgstr "Selecteer een overgang voor het huidige kleurverloop" -#: ../src/ui/dialog/symbols.cpp:192 -msgid "Fit to width" -msgstr "Aanpassen aan breedte" +#: ../src/ui/dialog/symbols.cpp:227 +msgid "Make Icons bigger by zooming in." +msgstr "" + +#: ../src/ui/dialog/symbols.cpp:236 +#, fuzzy +msgid "Make Icons smaller by zooming out." +msgstr "Lijnkleur bij uitzoomen" -#: ../src/ui/dialog/symbols.cpp:192 -msgid "Fit to height" -msgstr "Aanpassen aan hoogte" +#: ../src/ui/dialog/symbols.cpp:245 +msgid "Toggle 'fit' symbols in icon space." +msgstr "" -#. ******************* Preview Size *********************** -#: ../src/ui/dialog/symbols.cpp:212 -msgid "Preview size: " -msgstr "Grootte voorvertoning: " +#: ../src/ui/dialog/symbols.cpp:558 +#, fuzzy +msgid "Unnamed Symbols" +msgstr "Khmer symbolen" #. TRANSLATORS: An item in context menu on a colour in the swatches -#: ../src/ui/dialog/swatches.cpp:258 +#: ../src/ui/dialog/swatches.cpp:259 msgid "Set fill" msgstr "Vulling instellen" #. TRANSLATORS: An item in context menu on a colour in the swatches -#: ../src/ui/dialog/swatches.cpp:266 +#: ../src/ui/dialog/swatches.cpp:267 msgid "Set stroke" msgstr "Lijnkleur instellen" -#: ../src/ui/dialog/swatches.cpp:287 +#: ../src/ui/dialog/swatches.cpp:288 msgid "Edit..." msgstr "Bewerken..." -#: ../src/ui/dialog/swatches.cpp:299 +#: ../src/ui/dialog/swatches.cpp:300 msgid "Convert" msgstr "Converteren" -#: ../src/ui/dialog/swatches.cpp:543 +#: ../src/ui/dialog/swatches.cpp:544 #, c-format msgid "Palettes directory (%s) is unavailable." msgstr "De palettenmap (%s) is niet beschikbaar." @@ -19597,142 +19531,152 @@ msgstr "Het overtrekken afbreken" msgid "Execute the trace" msgstr "Het overtrekken starten" -#: ../src/ui/dialog/transformation.cpp:71 -#: ../src/ui/dialog/transformation.cpp:81 +#: ../src/ui/dialog/transformation.cpp:76 +#: ../src/ui/dialog/transformation.cpp:86 msgid "_Horizontal:" msgstr "_Horizontaal:" -#: ../src/ui/dialog/transformation.cpp:71 +#: ../src/ui/dialog/transformation.cpp:76 msgid "Horizontal displacement (relative) or position (absolute)" msgstr "Horizontale verplaatsing (relatief) of positie (absoluut)" -#: ../src/ui/dialog/transformation.cpp:73 -#: ../src/ui/dialog/transformation.cpp:83 +#: ../src/ui/dialog/transformation.cpp:78 +#: ../src/ui/dialog/transformation.cpp:88 msgid "_Vertical:" msgstr "_Verticaal:" -#: ../src/ui/dialog/transformation.cpp:73 +#: ../src/ui/dialog/transformation.cpp:78 msgid "Vertical displacement (relative) or position (absolute)" msgstr "Verticale verplaatsing (relatief) of positie (absoluut)" -#: ../src/ui/dialog/transformation.cpp:75 +#: ../src/ui/dialog/transformation.cpp:80 msgid "Horizontal size (absolute or percentage of current)" msgstr "Horizontale grootte (absoluut of procentueel van huidige)" -#: ../src/ui/dialog/transformation.cpp:77 +#: ../src/ui/dialog/transformation.cpp:82 msgid "Vertical size (absolute or percentage of current)" msgstr "Verticale grootte (absoluut of procentueel van huidige)" -#: ../src/ui/dialog/transformation.cpp:79 +#: ../src/ui/dialog/transformation.cpp:84 msgid "A_ngle:" msgstr "Hoe_k:" -#: ../src/ui/dialog/transformation.cpp:79 -#: ../src/ui/dialog/transformation.cpp:1064 +#: ../src/ui/dialog/transformation.cpp:84 +#: ../src/ui/dialog/transformation.cpp:1103 msgid "Rotation angle (positive = counterclockwise)" msgstr "Rotatiehoek (positief is met de klok mee)" -#: ../src/ui/dialog/transformation.cpp:81 +#: ../src/ui/dialog/transformation.cpp:86 msgid "Horizontal skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" msgstr "Horizontale rotatiehoek (positief is met de klok mee), absolute verplaatsing of percentage verplaatsing" -#: ../src/ui/dialog/transformation.cpp:83 +#: ../src/ui/dialog/transformation.cpp:88 msgid "Vertical skew angle (positive = counterclockwise), or absolute displacement, or percentage displacement" msgstr "Verticale rotatiehoek (positief is met de klok mee), absolute verplaatsing of percentage verplaatsing" -#: ../src/ui/dialog/transformation.cpp:86 +#: ../src/ui/dialog/transformation.cpp:91 msgid "Transformation matrix element A" msgstr "Transformatiematrix-element A" -#: ../src/ui/dialog/transformation.cpp:87 +#: ../src/ui/dialog/transformation.cpp:92 msgid "Transformation matrix element B" msgstr "Transformatiematrix-element B" -#: ../src/ui/dialog/transformation.cpp:88 +#: ../src/ui/dialog/transformation.cpp:93 msgid "Transformation matrix element C" msgstr "Transformatiematrix-element C" -#: ../src/ui/dialog/transformation.cpp:89 +#: ../src/ui/dialog/transformation.cpp:94 msgid "Transformation matrix element D" msgstr "Transformatiematrix-element D" -#: ../src/ui/dialog/transformation.cpp:90 +#: ../src/ui/dialog/transformation.cpp:95 msgid "Transformation matrix element E" msgstr "Transformatiematrix-element E" -#: ../src/ui/dialog/transformation.cpp:91 +#: ../src/ui/dialog/transformation.cpp:96 msgid "Transformation matrix element F" msgstr "Transformatiematrix-element F" -#: ../src/ui/dialog/transformation.cpp:96 +#: ../src/ui/dialog/transformation.cpp:101 msgid "Rela_tive move" msgstr "Rela_tieve verplaatsing" -#: ../src/ui/dialog/transformation.cpp:96 +#: ../src/ui/dialog/transformation.cpp:101 msgid "Add the specified relative displacement to the current position; otherwise, edit the current absolute position directly" msgstr "Tel de opgegeven relatieve verplaatsing op bij de huidige positie; anders, bewerk de huidige absolute positie direct" -#: ../src/ui/dialog/transformation.cpp:97 +#: ../src/ui/dialog/transformation.cpp:102 msgid "_Scale proportionally" msgstr "Proportioneel s_chalen" -#: ../src/ui/dialog/transformation.cpp:97 +#: ../src/ui/dialog/transformation.cpp:102 msgid "Preserve the width/height ratio of the scaled objects" msgstr "De breedte/hoogteverhouding van de geschaalde objecten behouden" -#: ../src/ui/dialog/transformation.cpp:98 +#: ../src/ui/dialog/transformation.cpp:103 msgid "Apply to each _object separately" msgstr "_Op ieder object apart toepassen" -#: ../src/ui/dialog/transformation.cpp:98 +#: ../src/ui/dialog/transformation.cpp:103 msgid "Apply the scale/rotate/skew to each selected object separately; otherwise, transform the selection as a whole" msgstr "De acties schalen/roteren/scheeftrekken op ieder geselecteerd object onafhankelijk toepassen; anders de hele selectie als een geheel transformeren" -#: ../src/ui/dialog/transformation.cpp:99 +#: ../src/ui/dialog/transformation.cpp:104 msgid "Edit c_urrent matrix" msgstr "_Huidige matrix bewerken" -#: ../src/ui/dialog/transformation.cpp:99 +#: ../src/ui/dialog/transformation.cpp:104 msgid "Edit the current transform= matrix; otherwise, post-multiply transform= by this matrix" msgstr "De huidige transformatiematrix bewerken; zoniet, navermenigvuldigen transformatiematrix met deze matrix" -#: ../src/ui/dialog/transformation.cpp:112 +#: ../src/ui/dialog/transformation.cpp:117 msgid "_Scale" msgstr "_Schalen" -#: ../src/ui/dialog/transformation.cpp:115 +#: ../src/ui/dialog/transformation.cpp:120 msgid "_Rotate" msgstr "_Roteren" -#: ../src/ui/dialog/transformation.cpp:118 +#: ../src/ui/dialog/transformation.cpp:123 msgid "Ske_w" msgstr "Scheef_trekken" -#: ../src/ui/dialog/transformation.cpp:121 +#: ../src/ui/dialog/transformation.cpp:126 msgid "Matri_x" msgstr "Matri_x" -#: ../src/ui/dialog/transformation.cpp:145 +#: ../src/ui/dialog/transformation.cpp:150 msgid "Reset the values on the current tab to defaults" msgstr "Op het huidige tabblad de standaarwaarden terugzetten" -#: ../src/ui/dialog/transformation.cpp:152 +#: ../src/ui/dialog/transformation.cpp:157 msgid "Apply transformation to selection" msgstr "Transformatie toepassen op selectie" -#: ../src/ui/dialog/transformation.cpp:327 +#: ../src/ui/dialog/transformation.cpp:332 msgid "Rotate in a counterclockwise direction" msgstr "Tegen de klok in draaien" -#: ../src/ui/dialog/transformation.cpp:333 +#: ../src/ui/dialog/transformation.cpp:338 msgid "Rotate in a clockwise direction" msgstr "Rotatie met de klok mee" +#: ../src/ui/dialog/transformation.cpp:907 +#: ../src/ui/dialog/transformation.cpp:918 +#: ../src/ui/dialog/transformation.cpp:932 +#: ../src/ui/dialog/transformation.cpp:951 +#: ../src/ui/dialog/transformation.cpp:962 #: ../src/ui/dialog/transformation.cpp:972 +#: ../src/ui/dialog/transformation.cpp:996 +msgid "Transform matrix is singular, <b>not used</b>." +msgstr "" + +#: ../src/ui/dialog/transformation.cpp:1011 msgid "Edit transformation matrix" msgstr "Transformatiematrix bewerken" -#: ../src/ui/dialog/transformation.cpp:1071 +#: ../src/ui/dialog/transformation.cpp:1110 msgid "Rotation angle (positive = clockwise)" msgstr "Rotatiehoek (positief is met de klok mee)" @@ -19764,96 +19708,96 @@ msgctxt "Path segment tip" msgid "<b>Bezier segment</b>: drag to shape the segment, doubleclick to insert node, click to select (more: Shift, Ctrl+Alt)" msgstr "<b>Beziersegment</b>: sleep om het segment te vervormen, dubbelklik om een knooppunt in te voegen, klik om te selecteren (toetscombinaties: Shift, Ctrl+Alt)" -#: ../src/ui/tool/multi-path-manipulator.cpp:322 +#: ../src/ui/tool/multi-path-manipulator.cpp:326 msgid "Retract handles" msgstr "Handvaten intrekken" -#: ../src/ui/tool/multi-path-manipulator.cpp:322 -#: ../src/ui/tool/node.cpp:271 +#: ../src/ui/tool/multi-path-manipulator.cpp:326 +#: ../src/ui/tool/node.cpp:270 msgid "Change node type" msgstr "Knooppunttype veranderen" -#: ../src/ui/tool/multi-path-manipulator.cpp:330 +#: ../src/ui/tool/multi-path-manipulator.cpp:334 msgid "Straighten segments" msgstr "Segmenten effenen" -#: ../src/ui/tool/multi-path-manipulator.cpp:332 +#: ../src/ui/tool/multi-path-manipulator.cpp:336 msgid "Make segments curves" msgstr "Van segmenten curven maken" -#: ../src/ui/tool/multi-path-manipulator.cpp:339 +#: ../src/ui/tool/multi-path-manipulator.cpp:343 msgid "Add nodes" msgstr "Knooppunten toevoegen" -#: ../src/ui/tool/multi-path-manipulator.cpp:344 +#: ../src/ui/tool/multi-path-manipulator.cpp:348 msgid "Add extremum nodes" msgstr "Knooppunten aan uiteinden toevoegen" -#: ../src/ui/tool/multi-path-manipulator.cpp:350 +#: ../src/ui/tool/multi-path-manipulator.cpp:354 msgid "Duplicate nodes" msgstr "Knooppunten dupliceren" -#: ../src/ui/tool/multi-path-manipulator.cpp:412 -#: ../src/widgets/node-toolbar.cpp:417 +#: ../src/ui/tool/multi-path-manipulator.cpp:416 +#: ../src/widgets/node-toolbar.cpp:420 msgid "Join nodes" msgstr "Knooppunten samenvoegen" -#: ../src/ui/tool/multi-path-manipulator.cpp:419 -#: ../src/widgets/node-toolbar.cpp:428 +#: ../src/ui/tool/multi-path-manipulator.cpp:423 +#: ../src/widgets/node-toolbar.cpp:431 msgid "Break nodes" msgstr "Knooppunten verbreken" -#: ../src/ui/tool/multi-path-manipulator.cpp:426 +#: ../src/ui/tool/multi-path-manipulator.cpp:430 msgid "Delete nodes" msgstr "Knooppunten verwijderen" -#: ../src/ui/tool/multi-path-manipulator.cpp:756 +#: ../src/ui/tool/multi-path-manipulator.cpp:760 msgid "Move nodes" msgstr "Knooppunten verplaatsen" -#: ../src/ui/tool/multi-path-manipulator.cpp:759 +#: ../src/ui/tool/multi-path-manipulator.cpp:763 msgid "Move nodes horizontally" msgstr "Knooppunten horizontaal verplaatsen" -#: ../src/ui/tool/multi-path-manipulator.cpp:763 +#: ../src/ui/tool/multi-path-manipulator.cpp:767 msgid "Move nodes vertically" msgstr "Knooppunten verticaal verplaatsen" -#: ../src/ui/tool/multi-path-manipulator.cpp:767 -#: ../src/ui/tool/multi-path-manipulator.cpp:770 +#: ../src/ui/tool/multi-path-manipulator.cpp:771 +#: ../src/ui/tool/multi-path-manipulator.cpp:774 msgid "Rotate nodes" msgstr "Knooppunten roteren" -#: ../src/ui/tool/multi-path-manipulator.cpp:774 -#: ../src/ui/tool/multi-path-manipulator.cpp:780 +#: ../src/ui/tool/multi-path-manipulator.cpp:778 +#: ../src/ui/tool/multi-path-manipulator.cpp:784 msgid "Scale nodes uniformly" msgstr "Knooppunten uniform schalen" -#: ../src/ui/tool/multi-path-manipulator.cpp:777 +#: ../src/ui/tool/multi-path-manipulator.cpp:781 msgid "Scale nodes" msgstr "Knooppunten schalen" -#: ../src/ui/tool/multi-path-manipulator.cpp:784 +#: ../src/ui/tool/multi-path-manipulator.cpp:788 msgid "Scale nodes horizontally" msgstr "Knooppunten horizontaal schalen" -#: ../src/ui/tool/multi-path-manipulator.cpp:788 +#: ../src/ui/tool/multi-path-manipulator.cpp:792 msgid "Scale nodes vertically" msgstr "Knooppunten verticaal schalen" -#: ../src/ui/tool/multi-path-manipulator.cpp:792 +#: ../src/ui/tool/multi-path-manipulator.cpp:796 msgid "Skew nodes horizontally" msgstr "Knooppunten horizontaal scheeftrekken" -#: ../src/ui/tool/multi-path-manipulator.cpp:796 +#: ../src/ui/tool/multi-path-manipulator.cpp:800 msgid "Skew nodes vertically" msgstr "Knooppunten verticaal scheeftrekken" -#: ../src/ui/tool/multi-path-manipulator.cpp:800 +#: ../src/ui/tool/multi-path-manipulator.cpp:804 msgid "Flip nodes horizontally" msgstr "Knooppunten horizontaal spiegelen" -#: ../src/ui/tool/multi-path-manipulator.cpp:803 +#: ../src/ui/tool/multi-path-manipulator.cpp:807 msgid "Flip nodes vertically" msgstr "Knooppunten verticaal spiegelen" @@ -19906,143 +19850,143 @@ msgctxt "Node tool tip" msgid "Drag to select objects to edit" msgstr "Sleep om te bewerken objecten te selecteren" -#: ../src/ui/tool/node.cpp:246 +#: ../src/ui/tool/node.cpp:245 msgid "Cusp node handle" msgstr "Handvat hoekig knooppunt" -#: ../src/ui/tool/node.cpp:247 +#: ../src/ui/tool/node.cpp:246 msgid "Smooth node handle" msgstr "Handvat glad knooppunt" -#: ../src/ui/tool/node.cpp:248 +#: ../src/ui/tool/node.cpp:247 msgid "Symmetric node handle" msgstr "Handvat symmetrisch knooppunt" -#: ../src/ui/tool/node.cpp:249 +#: ../src/ui/tool/node.cpp:248 msgid "Auto-smooth node handle" msgstr "Handvat automatisch glad knooppunt" -#: ../src/ui/tool/node.cpp:433 +#: ../src/ui/tool/node.cpp:432 msgctxt "Path handle tip" msgid "more: Shift, Ctrl, Alt" msgstr "meer: Shift, Ctrl, Alt" -#: ../src/ui/tool/node.cpp:435 +#: ../src/ui/tool/node.cpp:434 msgctxt "Path handle tip" msgid "more: Ctrl, Alt" msgstr "meer: Ctrl, Alt" -#: ../src/ui/tool/node.cpp:441 +#: ../src/ui/tool/node.cpp:440 #, c-format msgctxt "Path handle tip" msgid "<b>Shift+Ctrl+Alt</b>: preserve length and snap rotation angle to %g° increments while rotating both handles" msgstr "<b>Shift+Ctrl+Alt</b>: lengte behouden en draaihoek beperken tot stappen van %g° tijdens roteren van beide handvatten" -#: ../src/ui/tool/node.cpp:446 +#: ../src/ui/tool/node.cpp:445 #, c-format msgctxt "Path handle tip" msgid "<b>Ctrl+Alt</b>: preserve length and snap rotation angle to %g° increments" msgstr "<b>Ctrl+Alt</b>: lengte behouden en draaihoek beperken tot stappen van %g°" -#: ../src/ui/tool/node.cpp:452 +#: ../src/ui/tool/node.cpp:451 msgctxt "Path handle tip" msgid "<b>Shift+Alt</b>: preserve handle length and rotate both handles" msgstr "<b>Shift+Alt</b>: handvatlengte behouden en beide handvatten roteren" -#: ../src/ui/tool/node.cpp:455 +#: ../src/ui/tool/node.cpp:454 msgctxt "Path handle tip" msgid "<b>Alt</b>: preserve handle length while dragging" msgstr "<b>Alt</b>: handvatlengte behouden tijdens slepen" -#: ../src/ui/tool/node.cpp:462 +#: ../src/ui/tool/node.cpp:461 #, c-format msgctxt "Path handle tip" msgid "<b>Shift+Ctrl</b>: snap rotation angle to %g° increments and rotate both handles" msgstr "<b>Shift+Ctrl</b>: draaihoek beperken tot stappen van %g° en handvatten roteren" -#: ../src/ui/tool/node.cpp:466 +#: ../src/ui/tool/node.cpp:465 #, c-format msgctxt "Path handle tip" msgid "<b>Ctrl</b>: snap rotation angle to %g° increments, click to retract" msgstr "<b>Ctrl</b>: draaihoek beperken tot stappen van %g°, klik voor intrekken" -#: ../src/ui/tool/node.cpp:471 +#: ../src/ui/tool/node.cpp:470 msgctxt "Path hande tip" msgid "<b>Shift</b>: rotate both handles by the same angle" msgstr "<b>Shift</b>: beide handvatten met dezelfde hoek roteren" -#: ../src/ui/tool/node.cpp:478 +#: ../src/ui/tool/node.cpp:477 #, c-format msgctxt "Path handle tip" msgid "<b>Auto node handle</b>: drag to convert to smooth node (%s)" msgstr "<b>Automatischknooppunthandvat</b>: sleep om om te zetten naar een glad knooppunt (%s)" -#: ../src/ui/tool/node.cpp:481 +#: ../src/ui/tool/node.cpp:480 #, c-format msgctxt "Path handle tip" msgid "<b>%s</b>: drag to shape the segment (%s)" msgstr "<b>%s</b>: sleep om het segment te vervormen (%s)" -#: ../src/ui/tool/node.cpp:497 +#: ../src/ui/tool/node.cpp:500 #, c-format msgctxt "Path handle tip" msgid "Move handle by %s, %s; angle %.2f°, length %s" msgstr "Handvat verplaatsen met %s, %s; hoek %.2f°, lengte %s" -#: ../src/ui/tool/node.cpp:1263 +#: ../src/ui/tool/node.cpp:1266 msgctxt "Path node tip" msgid "<b>Shift</b>: drag out a handle, click to toggle selection" msgstr "<b>Shift</b>: sleep een handvat, klik voor verandering selectie" -#: ../src/ui/tool/node.cpp:1265 +#: ../src/ui/tool/node.cpp:1268 msgctxt "Path node tip" msgid "<b>Shift</b>: click to toggle selection" msgstr "<b>Shift</b>: klik voor verandering selectie" -#: ../src/ui/tool/node.cpp:1270 +#: ../src/ui/tool/node.cpp:1273 msgctxt "Path node tip" msgid "<b>Ctrl+Alt</b>: move along handle lines, click to delete node" msgstr "<b>Ctrl+Alt:</b> verplaatsen langs handvatlijnen, klik om knooppunt te verwijderen" -#: ../src/ui/tool/node.cpp:1273 +#: ../src/ui/tool/node.cpp:1276 msgctxt "Path node tip" msgid "<b>Ctrl</b>: move along axes, click to change node type" msgstr "<b>Ctrl</b>: verplaatsen langs assen, klik om knooppunttype te veranderen" -#: ../src/ui/tool/node.cpp:1277 +#: ../src/ui/tool/node.cpp:1280 msgctxt "Path node tip" msgid "<b>Alt</b>: sculpt nodes" msgstr "<b>Alt</b>: knooppunten boetseren" -#: ../src/ui/tool/node.cpp:1285 +#: ../src/ui/tool/node.cpp:1288 #, c-format msgctxt "Path node tip" msgid "<b>%s</b>: drag to shape the path (more: Shift, Ctrl, Alt)" msgstr "<b>%s</b>: sleep om het pad te vervormen (toetscombinatie: Shift, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1288 +#: ../src/ui/tool/node.cpp:1291 #, c-format msgctxt "Path node tip" msgid "<b>%s</b>: drag to shape the path, click to toggle scale/rotation handles (more: Shift, Ctrl, Alt)" msgstr "<b>%s</b>: sleep om het pad te vervormen, klik om te schakelen tussen schalings- en rotatiehandvatten (toetscombinaties: Shift, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1291 +#: ../src/ui/tool/node.cpp:1294 #, c-format msgctxt "Path node tip" msgid "<b>%s</b>: drag to shape the path, click to select only this node (more: Shift, Ctrl, Alt)" msgstr "<b>%s</b>: sleep om het pad te vervormen, klik om enkel dit knooppunt te selecteren (toetscombinaties: Shift, Ctrl, Alt)" -#: ../src/ui/tool/node.cpp:1299 +#: ../src/ui/tool/node.cpp:1305 #, c-format msgctxt "Path node tip" msgid "Move node by %s, %s" msgstr "Knooppunt verplaatsen met %s, %s" -#: ../src/ui/tool/node.cpp:1311 +#: ../src/ui/tool/node.cpp:1317 msgid "Symmetric node" msgstr "Symmetrisch knooppunt" -#: ../src/ui/tool/node.cpp:1312 +#: ../src/ui/tool/node.cpp:1318 msgid "Auto-smooth node" msgstr "Automatisch glad knooppunt" @@ -20056,7 +20000,7 @@ msgstr "Roteerhandvat" #. We need to call MPM's method because it could have been our last node #: ../src/ui/tool/path-manipulator.cpp:1374 -#: ../src/widgets/node-toolbar.cpp:406 +#: ../src/widgets/node-toolbar.cpp:409 msgid "Delete node" msgstr "Item verwijderen" @@ -20205,8 +20149,8 @@ msgid "MetadataLicence|Other" msgstr "Ander" #: ../src/ui/widget/object-composite-settings.cpp:67 -#: ../src/ui/widget/selected-style.cpp:1090 -#: ../src/ui/widget/selected-style.cpp:1091 +#: ../src/ui/widget/selected-style.cpp:1095 +#: ../src/ui/widget/selected-style.cpp:1096 msgid "Opacity (%)" msgstr "Ondoorzichtigheid (%)" @@ -20215,185 +20159,187 @@ msgid "Change blur" msgstr "Vervaging wijzigen" #: ../src/ui/widget/object-composite-settings.cpp:220 -#: ../src/ui/widget/selected-style.cpp:922 -#: ../src/ui/widget/selected-style.cpp:1216 +#: ../src/ui/widget/selected-style.cpp:927 +#: ../src/ui/widget/selected-style.cpp:1221 msgid "Change opacity" msgstr "Ondoorzichtigheid wijzigen" -#: ../src/ui/widget/page-sizer.cpp:237 +#: ../src/ui/widget/page-sizer.cpp:235 msgid "U_nits:" msgstr "Ee_nheden:" -#: ../src/ui/widget/page-sizer.cpp:238 +#: ../src/ui/widget/page-sizer.cpp:236 msgid "Width of paper" msgstr "Breedte van het papier" -#: ../src/ui/widget/page-sizer.cpp:239 +#: ../src/ui/widget/page-sizer.cpp:237 msgid "Height of paper" msgstr "Hoogte van het papier" -#: ../src/ui/widget/page-sizer.cpp:240 +#: ../src/ui/widget/page-sizer.cpp:238 msgid "T_op margin:" msgstr "_Bovenmarge" -#: ../src/ui/widget/page-sizer.cpp:240 +#: ../src/ui/widget/page-sizer.cpp:238 msgid "Top margin" msgstr "Bovenmarge" -#: ../src/ui/widget/page-sizer.cpp:241 +#: ../src/ui/widget/page-sizer.cpp:239 msgid "L_eft:" msgstr "_Links:" -#: ../src/ui/widget/page-sizer.cpp:241 +#: ../src/ui/widget/page-sizer.cpp:239 +#: ../share/extensions/guides_creator.inx.h:17 msgid "Left margin" msgstr "Linkermarge" -#: ../src/ui/widget/page-sizer.cpp:242 +#: ../src/ui/widget/page-sizer.cpp:240 msgid "Ri_ght:" msgstr "_Rechts:" -#: ../src/ui/widget/page-sizer.cpp:242 +#: ../src/ui/widget/page-sizer.cpp:240 +#: ../share/extensions/guides_creator.inx.h:18 msgid "Right margin" msgstr "Rechtermarge" -#: ../src/ui/widget/page-sizer.cpp:243 +#: ../src/ui/widget/page-sizer.cpp:241 msgid "Botto_m:" msgstr "_Onder:" -#: ../src/ui/widget/page-sizer.cpp:243 +#: ../src/ui/widget/page-sizer.cpp:241 msgid "Bottom margin" msgstr "Ondermarge" -#: ../src/ui/widget/page-sizer.cpp:303 +#: ../src/ui/widget/page-sizer.cpp:296 #: ../share/extensions/hpgl_output.inx.h:7 msgid "Orientation:" msgstr "Oriëntatie:" -#: ../src/ui/widget/page-sizer.cpp:306 +#: ../src/ui/widget/page-sizer.cpp:299 msgid "_Landscape" msgstr "_Liggend" -#: ../src/ui/widget/page-sizer.cpp:311 +#: ../src/ui/widget/page-sizer.cpp:304 msgid "_Portrait" msgstr "_Staand" #. ## Set up custom size frame -#: ../src/ui/widget/page-sizer.cpp:329 +#: ../src/ui/widget/page-sizer.cpp:322 msgid "Custom size" msgstr "Aangepaste grootte" -#: ../src/ui/widget/page-sizer.cpp:374 +#: ../src/ui/widget/page-sizer.cpp:367 msgid "Resi_ze page to content..." msgstr "_Pagina schalen naar inhoud..." -#: ../src/ui/widget/page-sizer.cpp:426 +#: ../src/ui/widget/page-sizer.cpp:419 msgid "_Resize page to drawing or selection" msgstr "Pagina _schalen naar tekening of selectie" -#: ../src/ui/widget/page-sizer.cpp:427 +#: ../src/ui/widget/page-sizer.cpp:420 msgid "Resize the page to fit the current selection, or the entire drawing if there is no selection" msgstr "De afmetingen van de pagina zodanig aanpassen dat de huidige selectie er precies op past, of de volledige tekening als er niets geselecteerd is" # XXX Waar wordt dit gebruikt? -#: ../src/ui/widget/page-sizer.cpp:492 +#: ../src/ui/widget/page-sizer.cpp:485 msgid "Set page size" msgstr "Paginagrootte instellen" -#: ../src/ui/widget/panel.cpp:112 +#: ../src/ui/widget/panel.cpp:116 msgid "List" msgstr "Lijst" -#: ../src/ui/widget/panel.cpp:135 +#: ../src/ui/widget/panel.cpp:139 msgctxt "Swatches" msgid "Size" msgstr "Grootte" -#: ../src/ui/widget/panel.cpp:139 +#: ../src/ui/widget/panel.cpp:143 msgctxt "Swatches height" msgid "Tiny" msgstr "Klein" -#: ../src/ui/widget/panel.cpp:140 +#: ../src/ui/widget/panel.cpp:144 msgctxt "Swatches height" msgid "Small" msgstr "Klein" -#: ../src/ui/widget/panel.cpp:141 +#: ../src/ui/widget/panel.cpp:145 msgctxt "Swatches height" msgid "Medium" msgstr "Middel" -#: ../src/ui/widget/panel.cpp:142 +#: ../src/ui/widget/panel.cpp:146 msgctxt "Swatches height" msgid "Large" msgstr "Groot" -#: ../src/ui/widget/panel.cpp:143 +#: ../src/ui/widget/panel.cpp:147 msgctxt "Swatches height" msgid "Huge" msgstr "Groot" -#: ../src/ui/widget/panel.cpp:165 +#: ../src/ui/widget/panel.cpp:169 msgctxt "Swatches" msgid "Width" msgstr "Breedte" -#: ../src/ui/widget/panel.cpp:169 +#: ../src/ui/widget/panel.cpp:173 msgctxt "Swatches width" msgid "Narrower" msgstr "Smaller" -#: ../src/ui/widget/panel.cpp:170 +#: ../src/ui/widget/panel.cpp:174 msgctxt "Swatches width" msgid "Narrow" msgstr "Smal" -#: ../src/ui/widget/panel.cpp:171 +#: ../src/ui/widget/panel.cpp:175 msgctxt "Swatches width" msgid "Medium" msgstr "Middel" -#: ../src/ui/widget/panel.cpp:172 +#: ../src/ui/widget/panel.cpp:176 msgctxt "Swatches width" msgid "Wide" msgstr "Breed" -#: ../src/ui/widget/panel.cpp:173 +#: ../src/ui/widget/panel.cpp:177 msgctxt "Swatches width" msgid "Wider" msgstr "Breed" -#: ../src/ui/widget/panel.cpp:203 +#: ../src/ui/widget/panel.cpp:207 msgctxt "Swatches" msgid "Border" msgstr "Rand" -#: ../src/ui/widget/panel.cpp:207 +#: ../src/ui/widget/panel.cpp:211 msgctxt "Swatches border" msgid "None" msgstr "Geen" -#: ../src/ui/widget/panel.cpp:208 +#: ../src/ui/widget/panel.cpp:212 msgctxt "Swatches border" msgid "Solid" msgstr "Massief" -#: ../src/ui/widget/panel.cpp:209 +#: ../src/ui/widget/panel.cpp:213 msgctxt "Swatches border" msgid "Wide" msgstr "Breed" #. TRANSLATORS: "Wrap" indicates how colour swatches are displayed -#: ../src/ui/widget/panel.cpp:240 +#: ../src/ui/widget/panel.cpp:244 msgctxt "Swatches" msgid "Wrap" msgstr "Terugloop" -#: ../src/ui/widget/preferences-widget.cpp:798 +#: ../src/ui/widget/preferences-widget.cpp:802 msgid "_Browse..." msgstr "_Bladeren..." -#: ../src/ui/widget/preferences-widget.cpp:884 +#: ../src/ui/widget/preferences-widget.cpp:888 msgid "Select a bitmap editor" msgstr "Selecteer een bitmapeditor" @@ -20431,362 +20377,362 @@ msgstr "Renderen d.m.v. Cairo-vectorbewerkingen. Het bestand is meestal kleiner msgid "Render everything as bitmap. The resulting image is usually larger in file size and cannot be arbitrarily scaled without quality loss, but all objects will be rendered exactly as displayed." msgstr "Alles als bitmap renderen. Het bestand is meestal groter en kan niet geschaald worden zonder kwaliteitsverlies, maar alle objecten worden precies gerenderd zoals ze weergegeven worden." -#: ../src/ui/widget/selected-style.cpp:127 -#: ../src/ui/widget/style-swatch.cpp:126 +#: ../src/ui/widget/selected-style.cpp:130 +#: ../src/ui/widget/style-swatch.cpp:127 msgid "Fill:" msgstr "Vulling:" -#: ../src/ui/widget/selected-style.cpp:129 +#: ../src/ui/widget/selected-style.cpp:132 msgid "O:" msgstr "O:" -#: ../src/ui/widget/selected-style.cpp:174 +#: ../src/ui/widget/selected-style.cpp:177 msgid "N/A" msgstr "---" -#: ../src/ui/widget/selected-style.cpp:177 -#: ../src/ui/widget/selected-style.cpp:1083 -#: ../src/ui/widget/selected-style.cpp:1084 +#: ../src/ui/widget/selected-style.cpp:180 +#: ../src/ui/widget/selected-style.cpp:1088 +#: ../src/ui/widget/selected-style.cpp:1089 #: ../src/widgets/gradient-toolbar.cpp:176 msgid "Nothing selected" msgstr "Niets geselecteerd" -#: ../src/ui/widget/selected-style.cpp:179 -#: ../src/ui/widget/style-swatch.cpp:319 +#: ../src/ui/widget/selected-style.cpp:182 +#: ../src/ui/widget/style-swatch.cpp:320 msgctxt "Fill and stroke" msgid "<i>None</i>" msgstr "<i>Geen</i>" -#: ../src/ui/widget/selected-style.cpp:182 -#: ../src/ui/widget/style-swatch.cpp:321 +#: ../src/ui/widget/selected-style.cpp:185 +#: ../src/ui/widget/style-swatch.cpp:322 msgctxt "Fill and stroke" msgid "No fill" msgstr "Geen vulling" -#: ../src/ui/widget/selected-style.cpp:182 -#: ../src/ui/widget/style-swatch.cpp:321 +#: ../src/ui/widget/selected-style.cpp:185 +#: ../src/ui/widget/style-swatch.cpp:322 msgctxt "Fill and stroke" msgid "No stroke" msgstr "Geen lijn" -#: ../src/ui/widget/selected-style.cpp:184 -#: ../src/ui/widget/style-swatch.cpp:300 -#: ../src/widgets/paint-selector.cpp:239 +#: ../src/ui/widget/selected-style.cpp:187 +#: ../src/ui/widget/style-swatch.cpp:301 +#: ../src/widgets/paint-selector.cpp:242 msgid "Pattern" msgstr "Patroon" -#: ../src/ui/widget/selected-style.cpp:187 -#: ../src/ui/widget/style-swatch.cpp:302 +#: ../src/ui/widget/selected-style.cpp:190 +#: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern fill" msgstr "Patroonvulling" -#: ../src/ui/widget/selected-style.cpp:187 -#: ../src/ui/widget/style-swatch.cpp:302 +#: ../src/ui/widget/selected-style.cpp:190 +#: ../src/ui/widget/style-swatch.cpp:303 msgid "Pattern stroke" msgstr "Patroonlijn" -#: ../src/ui/widget/selected-style.cpp:189 +#: ../src/ui/widget/selected-style.cpp:192 msgid "<b>L</b>" msgstr "<b>L</b>" -#: ../src/ui/widget/selected-style.cpp:192 -#: ../src/ui/widget/style-swatch.cpp:294 +#: ../src/ui/widget/selected-style.cpp:195 +#: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient fill" msgstr "Lineair vulkleurverloop" -#: ../src/ui/widget/selected-style.cpp:192 -#: ../src/ui/widget/style-swatch.cpp:294 +#: ../src/ui/widget/selected-style.cpp:195 +#: ../src/ui/widget/style-swatch.cpp:295 msgid "Linear gradient stroke" msgstr "Lineair lijnkleurverloop" -#: ../src/ui/widget/selected-style.cpp:199 +#: ../src/ui/widget/selected-style.cpp:202 msgid "<b>R</b>" msgstr "<b>R</b>" -#: ../src/ui/widget/selected-style.cpp:202 -#: ../src/ui/widget/style-swatch.cpp:298 +#: ../src/ui/widget/selected-style.cpp:205 +#: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient fill" msgstr "Radiaal vulkleurverloop" -#: ../src/ui/widget/selected-style.cpp:202 -#: ../src/ui/widget/style-swatch.cpp:298 +#: ../src/ui/widget/selected-style.cpp:205 +#: ../src/ui/widget/style-swatch.cpp:299 msgid "Radial gradient stroke" msgstr "Radiaal lijnkleurverloop" -#: ../src/ui/widget/selected-style.cpp:209 +#: ../src/ui/widget/selected-style.cpp:212 msgid "Different" msgstr "Verschillend" -#: ../src/ui/widget/selected-style.cpp:212 +#: ../src/ui/widget/selected-style.cpp:215 msgid "Different fills" msgstr "Verschillende vullingen" -#: ../src/ui/widget/selected-style.cpp:212 +#: ../src/ui/widget/selected-style.cpp:215 msgid "Different strokes" msgstr "Verschillende lijnen" -#: ../src/ui/widget/selected-style.cpp:214 -#: ../src/ui/widget/style-swatch.cpp:324 +#: ../src/ui/widget/selected-style.cpp:217 +#: ../src/ui/widget/style-swatch.cpp:325 msgid "<b>Unset</b>" msgstr "<b>Uitgezet</b>" #. TRANSLATORS COMMENT: unset is a verb here -#: ../src/ui/widget/selected-style.cpp:217 -#: ../src/ui/widget/selected-style.cpp:275 -#: ../src/ui/widget/selected-style.cpp:554 -#: ../src/ui/widget/style-swatch.cpp:326 -#: ../src/widgets/fill-style.cpp:708 +#: ../src/ui/widget/selected-style.cpp:220 +#: ../src/ui/widget/selected-style.cpp:278 +#: ../src/ui/widget/selected-style.cpp:559 +#: ../src/ui/widget/style-swatch.cpp:327 +#: ../src/widgets/fill-style.cpp:712 msgid "Unset fill" msgstr "Vulling uitzetten" -#: ../src/ui/widget/selected-style.cpp:217 -#: ../src/ui/widget/selected-style.cpp:275 -#: ../src/ui/widget/selected-style.cpp:570 -#: ../src/ui/widget/style-swatch.cpp:326 -#: ../src/widgets/fill-style.cpp:708 +#: ../src/ui/widget/selected-style.cpp:220 +#: ../src/ui/widget/selected-style.cpp:278 +#: ../src/ui/widget/selected-style.cpp:575 +#: ../src/ui/widget/style-swatch.cpp:327 +#: ../src/widgets/fill-style.cpp:712 msgid "Unset stroke" msgstr "Omlijning uitzetten" -#: ../src/ui/widget/selected-style.cpp:220 +#: ../src/ui/widget/selected-style.cpp:223 msgid "Flat color fill" msgstr "Egale vulkleur" -#: ../src/ui/widget/selected-style.cpp:220 +#: ../src/ui/widget/selected-style.cpp:223 msgid "Flat color stroke" msgstr "Egale lijnkleur" #. TRANSLATOR COMMENT: A means "Averaged" -#: ../src/ui/widget/selected-style.cpp:223 +#: ../src/ui/widget/selected-style.cpp:226 msgid "<b>a</b>" msgstr "<b>g</b>" -#: ../src/ui/widget/selected-style.cpp:226 +#: ../src/ui/widget/selected-style.cpp:229 msgid "Fill is averaged over selected objects" msgstr "Vulling is het gemiddelde van de geselecteerde objecten" -#: ../src/ui/widget/selected-style.cpp:226 +#: ../src/ui/widget/selected-style.cpp:229 msgid "Stroke is averaged over selected objects" msgstr "Lijn is het gemiddelde van de geselecteerde objecten" #. TRANSLATOR COMMENT: M means "Multiple" -#: ../src/ui/widget/selected-style.cpp:229 +#: ../src/ui/widget/selected-style.cpp:232 msgid "<b>m</b>" msgstr "<b>m</b>" -#: ../src/ui/widget/selected-style.cpp:232 +#: ../src/ui/widget/selected-style.cpp:235 msgid "Multiple selected objects have the same fill" msgstr "Meerdere geselecteerde objecten hebben dezelfde vulling" -#: ../src/ui/widget/selected-style.cpp:232 +#: ../src/ui/widget/selected-style.cpp:235 msgid "Multiple selected objects have the same stroke" msgstr "Meerdere geselecteerde objecten hebben dezelfde lijn" -#: ../src/ui/widget/selected-style.cpp:234 +#: ../src/ui/widget/selected-style.cpp:237 msgid "Edit fill..." msgstr "Vulling bewerken..." -#: ../src/ui/widget/selected-style.cpp:234 +#: ../src/ui/widget/selected-style.cpp:237 msgid "Edit stroke..." msgstr "Lijn bewerken..." -#: ../src/ui/widget/selected-style.cpp:238 +#: ../src/ui/widget/selected-style.cpp:241 msgid "Last set color" msgstr "Laatst gebruikte kleur" -#: ../src/ui/widget/selected-style.cpp:242 +#: ../src/ui/widget/selected-style.cpp:245 msgid "Last selected color" msgstr "Laatst geselecteerde kleur" -#: ../src/ui/widget/selected-style.cpp:258 +#: ../src/ui/widget/selected-style.cpp:261 msgid "Copy color" msgstr "Kleur kopiëren" -#: ../src/ui/widget/selected-style.cpp:262 +#: ../src/ui/widget/selected-style.cpp:265 msgid "Paste color" msgstr "Kleur plakken" -#: ../src/ui/widget/selected-style.cpp:266 -#: ../src/ui/widget/selected-style.cpp:847 +#: ../src/ui/widget/selected-style.cpp:269 +#: ../src/ui/widget/selected-style.cpp:852 msgid "Swap fill and stroke" msgstr "Kleur vulling en lijn verwisselen" -#: ../src/ui/widget/selected-style.cpp:270 -#: ../src/ui/widget/selected-style.cpp:579 -#: ../src/ui/widget/selected-style.cpp:588 +#: ../src/ui/widget/selected-style.cpp:273 +#: ../src/ui/widget/selected-style.cpp:584 +#: ../src/ui/widget/selected-style.cpp:593 msgid "Make fill opaque" msgstr "Vulling ondoorzichtig maken" -#: ../src/ui/widget/selected-style.cpp:270 +#: ../src/ui/widget/selected-style.cpp:273 msgid "Make stroke opaque" msgstr "Lijn ondoorzichtig maken" -#: ../src/ui/widget/selected-style.cpp:279 -#: ../src/ui/widget/selected-style.cpp:536 -#: ../src/widgets/fill-style.cpp:506 +#: ../src/ui/widget/selected-style.cpp:282 +#: ../src/ui/widget/selected-style.cpp:541 +#: ../src/widgets/fill-style.cpp:510 msgid "Remove fill" msgstr "Vulling verwijderen" -#: ../src/ui/widget/selected-style.cpp:279 -#: ../src/ui/widget/selected-style.cpp:545 -#: ../src/widgets/fill-style.cpp:506 +#: ../src/ui/widget/selected-style.cpp:282 +#: ../src/ui/widget/selected-style.cpp:550 +#: ../src/widgets/fill-style.cpp:510 msgid "Remove stroke" msgstr "Lijn verwijderen" -#: ../src/ui/widget/selected-style.cpp:600 +#: ../src/ui/widget/selected-style.cpp:605 msgid "Apply last set color to fill" msgstr "De laatst gebruikte kleur voor de vulling gebruiken" -#: ../src/ui/widget/selected-style.cpp:612 +#: ../src/ui/widget/selected-style.cpp:617 msgid "Apply last set color to stroke" msgstr "De laatst gebruikte kleur voor de lijn gebruiken" -#: ../src/ui/widget/selected-style.cpp:623 +#: ../src/ui/widget/selected-style.cpp:628 msgid "Apply last selected color to fill" msgstr "De laatst gekozen kleur voor de vulling gebruiken" -#: ../src/ui/widget/selected-style.cpp:634 +#: ../src/ui/widget/selected-style.cpp:639 msgid "Apply last selected color to stroke" msgstr "De laatst gekozen kleur voor de lijn gebruiken" -#: ../src/ui/widget/selected-style.cpp:660 +#: ../src/ui/widget/selected-style.cpp:665 msgid "Invert fill" msgstr "Vulling inverteren" -#: ../src/ui/widget/selected-style.cpp:684 +#: ../src/ui/widget/selected-style.cpp:689 msgid "Invert stroke" msgstr "Lijn inverteren" -#: ../src/ui/widget/selected-style.cpp:696 +#: ../src/ui/widget/selected-style.cpp:701 msgid "White fill" msgstr "Witte vulling" -#: ../src/ui/widget/selected-style.cpp:708 +#: ../src/ui/widget/selected-style.cpp:713 msgid "White stroke" msgstr "Witte lijn" -#: ../src/ui/widget/selected-style.cpp:720 +#: ../src/ui/widget/selected-style.cpp:725 msgid "Black fill" msgstr "Zwarte vulling" -#: ../src/ui/widget/selected-style.cpp:732 +#: ../src/ui/widget/selected-style.cpp:737 msgid "Black stroke" msgstr "Zwarte lijn" -#: ../src/ui/widget/selected-style.cpp:775 +#: ../src/ui/widget/selected-style.cpp:780 msgid "Paste fill" msgstr "Vulling plakken" -#: ../src/ui/widget/selected-style.cpp:793 +#: ../src/ui/widget/selected-style.cpp:798 msgid "Paste stroke" msgstr "Lijn plakken" -#: ../src/ui/widget/selected-style.cpp:949 +#: ../src/ui/widget/selected-style.cpp:954 msgid "Change stroke width" msgstr "Lijndikte aanpassen" -#: ../src/ui/widget/selected-style.cpp:1044 +#: ../src/ui/widget/selected-style.cpp:1049 msgid ", drag to adjust" msgstr ", sleep om aan te passen" -#: ../src/ui/widget/selected-style.cpp:1129 +#: ../src/ui/widget/selected-style.cpp:1134 #, c-format msgid "Stroke width: %.5g%s%s" msgstr "Lijndikte: %.5g%s%s" -#: ../src/ui/widget/selected-style.cpp:1133 +#: ../src/ui/widget/selected-style.cpp:1138 msgid " (averaged)" msgstr " (gemiddeld)" -#: ../src/ui/widget/selected-style.cpp:1161 +#: ../src/ui/widget/selected-style.cpp:1166 msgid "0 (transparent)" msgstr "0 (transparant)" -#: ../src/ui/widget/selected-style.cpp:1185 +#: ../src/ui/widget/selected-style.cpp:1190 msgid "100% (opaque)" msgstr "100% (ondoorzichtig)" -#: ../src/ui/widget/selected-style.cpp:1352 +#: ../src/ui/widget/selected-style.cpp:1357 msgid "Adjust alpha" msgstr "Alfa aanpassen" -#: ../src/ui/widget/selected-style.cpp:1354 +#: ../src/ui/widget/selected-style.cpp:1359 #, c-format msgid "Adjusting <b>alpha</b>: was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Ctrl</b> to adjust lightness, with <b>Shift</b> to adjust saturation, without modifiers to adjust hue" msgstr "<b>Alfa</b> is aangepast: was %.3g, is nu <b>%.3g</b> (verschil %.3g); gebruik <b>Shift</b> om lichtheid, <b>Shift</b> om verzadiging en geen toets om tint aan te passen" -#: ../src/ui/widget/selected-style.cpp:1358 +#: ../src/ui/widget/selected-style.cpp:1363 msgid "Adjust saturation" msgstr "Verzadiging aanpassen" -#: ../src/ui/widget/selected-style.cpp:1360 +#: ../src/ui/widget/selected-style.cpp:1365 #, c-format msgid "Adjusting <b>saturation</b>: was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Ctrl</b> to adjust lightness, with <b>Alt</b> to adjust alpha, without modifiers to adjust hue" msgstr "<b>Verzadiging</b> is aangepast: was %.3g, is nu <b>%.3g</b> (verschil %.3g); gebruik <b>Ctrl</b> om lichtheid, <b>Alt</b> om alfa en geen toets om tint aan te passen" -#: ../src/ui/widget/selected-style.cpp:1364 +#: ../src/ui/widget/selected-style.cpp:1369 msgid "Adjust lightness" msgstr "Lichtheid aanpassen" -#: ../src/ui/widget/selected-style.cpp:1366 +#: ../src/ui/widget/selected-style.cpp:1371 #, c-format msgid "Adjusting <b>lightness</b>: was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Shift</b> to adjust saturation, with <b>Alt</b> to adjust alpha, without modifiers to adjust hue" msgstr "<b>Lichtheid</b> is aangepast: was %.3g, is nu <b>%.3g</b> (verschil %.3g); gebruik <b>Shift</b> om verzadiging, <b>Alt</b> om alfa en geen toets om tint aan te passen" -#: ../src/ui/widget/selected-style.cpp:1370 +#: ../src/ui/widget/selected-style.cpp:1375 msgid "Adjust hue" msgstr "Tint aanpassen" -#: ../src/ui/widget/selected-style.cpp:1372 +#: ../src/ui/widget/selected-style.cpp:1377 #, c-format msgid "Adjusting <b>hue</b>: was %.3g, now <b>%.3g</b> (diff %.3g); with <b>Shift</b> to adjust saturation, with <b>Alt</b> to adjust alpha, with <b>Ctrl</b> to adjust lightness" msgstr "<b>Tint</b> is aangepast: was %.3g, is nu <b>%.3g</b> (verschil %.3g); gebruik <b>Shift</b> om verzadiging, <b>Alt</b> om alfa en <b>Ctrl</b> om lichtheid aan te passen" -#: ../src/ui/widget/selected-style.cpp:1492 -#: ../src/ui/widget/selected-style.cpp:1506 +#: ../src/ui/widget/selected-style.cpp:1497 +#: ../src/ui/widget/selected-style.cpp:1511 msgid "Adjust stroke width" msgstr "Lijndikte aanpassen" -#: ../src/ui/widget/selected-style.cpp:1493 +#: ../src/ui/widget/selected-style.cpp:1498 #, c-format msgid "Adjusting <b>stroke width</b>: was %.3g, now <b>%.3g</b> (diff %.3g)" msgstr "<b>Lijndikte aangepast</b>: was %.3g, nu <b>%.3g</b> (verschil %.3g)" #. TRANSLATORS: "Link" means to _link_ two sliders together -#: ../src/ui/widget/spin-scale.cpp:137 +#: ../src/ui/widget/spin-scale.cpp:138 #: ../src/ui/widget/spin-slider.cpp:156 msgctxt "Sliders" msgid "Link" msgstr "Link" -#: ../src/ui/widget/style-swatch.cpp:292 +#: ../src/ui/widget/style-swatch.cpp:293 msgid "L Gradient" msgstr "L-verloop" -#: ../src/ui/widget/style-swatch.cpp:296 +#: ../src/ui/widget/style-swatch.cpp:297 msgid "R Gradient" msgstr "R-verloop" -#: ../src/ui/widget/style-swatch.cpp:312 +#: ../src/ui/widget/style-swatch.cpp:313 #, c-format msgid "Fill: %06x/%.3g" msgstr "Vulkleur: %06x/%.3g" -#: ../src/ui/widget/style-swatch.cpp:314 +#: ../src/ui/widget/style-swatch.cpp:315 #, c-format msgid "Stroke: %06x/%.3g" msgstr "Lijnkleur: %06x/%.3g" -#: ../src/ui/widget/style-swatch.cpp:346 +#: ../src/ui/widget/style-swatch.cpp:347 #, c-format msgid "Stroke width: %.5g%s" msgstr "Lijndikte: %.5g%s" -#: ../src/ui/widget/style-swatch.cpp:362 +#: ../src/ui/widget/style-swatch.cpp:363 #, c-format msgid "O: %2.0f" msgstr "O: %2.0f" -#: ../src/ui/widget/style-swatch.cpp:367 +#: ../src/ui/widget/style-swatch.cpp:368 #, c-format msgid "Opacity: %2.1f %%" msgstr "Ondoorzichtigheid: %2.1f %%" @@ -20826,27 +20772,31 @@ msgid_plural "shared by <b>%d</b> boxes; drag with <b>Shift</b> to separate sele msgstr[0] "gedeeld met <b>%d</b> kubus; sleep met <b>Shift</b> om de geselecteerde kubus(sen) te scheiden" msgstr[1] "gedeeld met <b>%d</b> kubussen; sleep met <b>Shift</b> om de geselecteerde kubus(sen) te scheiden" -#: ../src/verbs.cpp:150 -#: ../src/widgets/calligraphy-toolbar.cpp:647 +#: ../src/verbs.cpp:137 +msgid "File" +msgstr "Bestand" + +#: ../src/verbs.cpp:156 +#: ../src/widgets/calligraphy-toolbar.cpp:643 msgid "Edit" msgstr "Bewerken" -#: ../src/verbs.cpp:226 +#: ../src/verbs.cpp:232 msgid "Context" msgstr "" -#: ../src/verbs.cpp:245 -#: ../src/verbs.cpp:2162 +#: ../src/verbs.cpp:251 +#: ../src/verbs.cpp:2219 #: ../share/extensions/jessyInk_view.inx.h:1 #: ../share/extensions/polyhedron_3d.inx.h:26 msgid "View" msgstr "Zicht" -#: ../src/verbs.cpp:265 +#: ../src/verbs.cpp:271 msgid "Dialog" msgstr "Dialoog" -#: ../src/verbs.cpp:322 +#: ../src/verbs.cpp:328 #: ../share/extensions/lorem_ipsum.inx.h:8 #: ../share/extensions/replace_font.inx.h:11 #: ../share/extensions/split.inx.h:10 @@ -20854,6 +20804,7 @@ msgstr "Dialoog" #: ../share/extensions/text_extract.inx.h:14 #: ../share/extensions/text_flipcase.inx.h:2 #: ../share/extensions/text_lowercase.inx.h:2 +#: ../share/extensions/text_merge.inx.h:16 #: ../share/extensions/text_randomcase.inx.h:2 #: ../share/extensions/text_sentencecase.inx.h:2 #: ../share/extensions/text_titlecase.inx.h:2 @@ -20861,2674 +20812,2726 @@ msgstr "Dialoog" msgid "Text" msgstr "Tekst" -#: ../src/verbs.cpp:1169 +#: ../src/verbs.cpp:1223 msgid "Switch to next layer" msgstr "Verplaats naar de volgende laag" -#: ../src/verbs.cpp:1170 +#: ../src/verbs.cpp:1224 msgid "Switched to next layer." msgstr "Verplaatst naar de volgende laag." -#: ../src/verbs.cpp:1172 +#: ../src/verbs.cpp:1226 msgid "Cannot go past last layer." msgstr "Kan niet verder dan de laatste laag gaan." -#: ../src/verbs.cpp:1181 +#: ../src/verbs.cpp:1235 msgid "Switch to previous layer" msgstr "Verplaats naar de vorige laag" -#: ../src/verbs.cpp:1182 +#: ../src/verbs.cpp:1236 msgid "Switched to previous layer." msgstr "Verplaatst naar de vorige laag." -#: ../src/verbs.cpp:1184 +#: ../src/verbs.cpp:1238 msgid "Cannot go before first layer." msgstr "Kan niet verder dan de eerste laag gaan." -#: ../src/verbs.cpp:1205 -#: ../src/verbs.cpp:1302 -#: ../src/verbs.cpp:1334 -#: ../src/verbs.cpp:1340 -#: ../src/verbs.cpp:1364 -#: ../src/verbs.cpp:1379 +#: ../src/verbs.cpp:1259 +#: ../src/verbs.cpp:1356 +#: ../src/verbs.cpp:1388 +#: ../src/verbs.cpp:1394 +#: ../src/verbs.cpp:1418 +#: ../src/verbs.cpp:1433 msgid "No current layer." msgstr "Geen huidige laag." -#: ../src/verbs.cpp:1234 -#: ../src/verbs.cpp:1238 +#: ../src/verbs.cpp:1288 +#: ../src/verbs.cpp:1292 #, c-format msgid "Raised layer <b>%s</b>." msgstr "Laag <b>%s</b> is naar boven gebracht." -#: ../src/verbs.cpp:1235 +#: ../src/verbs.cpp:1289 msgid "Layer to top" msgstr "Laag bovenaan" -#: ../src/verbs.cpp:1239 +#: ../src/verbs.cpp:1293 msgid "Raise layer" msgstr "Laag omhoog" -#: ../src/verbs.cpp:1242 -#: ../src/verbs.cpp:1246 +#: ../src/verbs.cpp:1296 +#: ../src/verbs.cpp:1300 #, c-format msgid "Lowered layer <b>%s</b>." msgstr "Laag <b>%s</b> is omlaag gebracht." -#: ../src/verbs.cpp:1243 +#: ../src/verbs.cpp:1297 msgid "Layer to bottom" msgstr "Laag onderaan" -#: ../src/verbs.cpp:1247 +#: ../src/verbs.cpp:1301 msgid "Lower layer" msgstr "Laag omlaag" -#: ../src/verbs.cpp:1256 +#: ../src/verbs.cpp:1310 msgid "Cannot move layer any further." msgstr "Laag kan niet verder worden verplaatst." -#: ../src/verbs.cpp:1270 -#: ../src/verbs.cpp:1289 +#: ../src/verbs.cpp:1324 +#: ../src/verbs.cpp:1343 #, c-format msgid "%s copy" msgstr "%s kopiëren" -#: ../src/verbs.cpp:1297 +#: ../src/verbs.cpp:1351 msgid "Duplicate layer" msgstr "Laag dupliceren" #. TRANSLATORS: this means "The layer has been duplicated." -#: ../src/verbs.cpp:1300 +#: ../src/verbs.cpp:1354 msgid "Duplicated layer." msgstr "De laag is gedupliceerd." -#: ../src/verbs.cpp:1329 +#: ../src/verbs.cpp:1383 msgid "Delete layer" msgstr "Laag verwijderen" #. TRANSLATORS: this means "The layer has been deleted." -#: ../src/verbs.cpp:1332 +#: ../src/verbs.cpp:1386 msgid "Deleted layer." msgstr "De laag is verwijderd." -#: ../src/verbs.cpp:1349 +#: ../src/verbs.cpp:1403 msgid "Show all layers" msgstr "Alle lagen tonen" -#: ../src/verbs.cpp:1354 +#: ../src/verbs.cpp:1408 msgid "Hide all layers" msgstr "Alle lagen verbergen" -#: ../src/verbs.cpp:1359 +#: ../src/verbs.cpp:1413 msgid "Lock all layers" msgstr "Alle lagen vergrendelen" -#: ../src/verbs.cpp:1373 +#: ../src/verbs.cpp:1427 msgid "Unlock all layers" msgstr "Alle lagen ontgrendelen" -#: ../src/verbs.cpp:1447 +#: ../src/verbs.cpp:1511 msgid "Flip horizontally" msgstr "Horizontaal spiegelen" -#: ../src/verbs.cpp:1452 +#: ../src/verbs.cpp:1516 msgid "Flip vertically" msgstr "Verticaal spiegelen" #. TRANSLATORS: If you have translated the tutorial-basic.en.svgz file to your language, #. then translate this string as "tutorial-basic.LANG.svgz" (where LANG is your language #. code); otherwise leave as "tutorial-basic.svg". -#: ../src/verbs.cpp:2045 +#: ../src/verbs.cpp:2104 msgid "tutorial-basic.svg" msgstr "tutorial-basic.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2049 +#: ../src/verbs.cpp:2108 msgid "tutorial-shapes.svg" msgstr "tutorial-shapes.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2053 +#: ../src/verbs.cpp:2112 msgid "tutorial-advanced.svg" msgstr "tutorial-advanced.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2057 +#: ../src/verbs.cpp:2116 msgid "tutorial-tracing.svg" msgstr "tutorial-tracing.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2061 +#: ../src/verbs.cpp:2120 msgid "tutorial-calligraphy.svg" msgstr "tutorial-calligraphy.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2065 +#: ../src/verbs.cpp:2124 msgid "tutorial-interpolate.svg" msgstr "tutorial-interpolate.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2069 +#: ../src/verbs.cpp:2128 msgid "tutorial-elements.svg" msgstr "tutorial-elements.nl.svg" #. TRANSLATORS: See "tutorial-basic.svg" comment. -#: ../src/verbs.cpp:2073 +#: ../src/verbs.cpp:2132 msgid "tutorial-tips.svg" msgstr "tutorial-tips.nl.svg" -#: ../src/verbs.cpp:2261 -#: ../src/verbs.cpp:2847 +#: ../src/verbs.cpp:2318 +#: ../src/verbs.cpp:2904 msgid "Unlock all objects in the current layer" msgstr "Alle objecten in de huidige laag ontgrendelen" -#: ../src/verbs.cpp:2265 -#: ../src/verbs.cpp:2849 +#: ../src/verbs.cpp:2322 +#: ../src/verbs.cpp:2906 msgid "Unlock all objects in all layers" msgstr "Alle objecten in alle lagen ontgrendelen" -#: ../src/verbs.cpp:2269 -#: ../src/verbs.cpp:2851 +#: ../src/verbs.cpp:2326 +#: ../src/verbs.cpp:2908 msgid "Unhide all objects in the current layer" msgstr "Alle objecten in de huidige laag weergeven" -#: ../src/verbs.cpp:2273 -#: ../src/verbs.cpp:2853 +#: ../src/verbs.cpp:2330 +#: ../src/verbs.cpp:2910 msgid "Unhide all objects in all layers" msgstr "Alle objecten in alle lagen weergeven" -#: ../src/verbs.cpp:2288 +#: ../src/verbs.cpp:2345 msgid "Does nothing" msgstr "Doet niets" -#: ../src/verbs.cpp:2291 +#: ../src/verbs.cpp:2348 msgid "Create new document from the default template" msgstr "Een nieuw document aanmaken volgens het standaardsjabloon" -#: ../src/verbs.cpp:2293 +#: ../src/verbs.cpp:2350 msgid "_Open..." msgstr "_Openen..." -#: ../src/verbs.cpp:2294 +#: ../src/verbs.cpp:2351 msgid "Open an existing document" msgstr "Een bestaand document openen" -#: ../src/verbs.cpp:2295 +#: ../src/verbs.cpp:2352 msgid "Re_vert" msgstr "_Terugdraaien" -#: ../src/verbs.cpp:2296 +#: ../src/verbs.cpp:2353 msgid "Revert to the last saved version of document (changes will be lost)" msgstr "Terugkeren naar de laatst opgeslagen versie van het document (huidige veranderingen gaan verloren)" -#: ../src/verbs.cpp:2297 +#: ../src/verbs.cpp:2354 msgid "Save document" msgstr "Het document opslaan" -#: ../src/verbs.cpp:2299 +#: ../src/verbs.cpp:2356 msgid "Save _As..." msgstr "Opslaan _als..." -#: ../src/verbs.cpp:2300 +#: ../src/verbs.cpp:2357 msgid "Save document under a new name" msgstr "Het document opslaan onder een nieuwe naam" -#: ../src/verbs.cpp:2301 +#: ../src/verbs.cpp:2358 msgid "Save a Cop_y..." msgstr "Kopie opslaan _als..." -#: ../src/verbs.cpp:2302 +#: ../src/verbs.cpp:2359 msgid "Save a copy of the document under a new name" msgstr "Een kopie van het document opslaan onder een nieuwe naam" -#: ../src/verbs.cpp:2303 +#: ../src/verbs.cpp:2360 msgid "_Print..." msgstr "Af_drukken..." -#: ../src/verbs.cpp:2303 +#: ../src/verbs.cpp:2360 msgid "Print document" msgstr "Het document afdrukken" #. TRANSLATORS: "Vacuum Defs" means "Clean up defs" (so as to remove unused definitions) -#: ../src/verbs.cpp:2306 +#: ../src/verbs.cpp:2363 msgid "Clean _up document" msgstr "Document o_pschonen" -#: ../src/verbs.cpp:2306 +#: ../src/verbs.cpp:2363 msgid "Remove unused definitions (such as gradients or clipping paths) from the <defs> of the document" msgstr "Ongebruikte definities (zoals kleurverlopen of hulplijnen) uit het <defs>-onderdeel van het bestand verwijderen" -#: ../src/verbs.cpp:2308 +#: ../src/verbs.cpp:2365 msgid "_Import..." msgstr "_Importeren..." -#: ../src/verbs.cpp:2309 +#: ../src/verbs.cpp:2366 msgid "Import a bitmap or SVG image into this document" msgstr "Bitmap of SVG-afbeelding in het document importeren" -#: ../src/verbs.cpp:2310 +#: ../src/verbs.cpp:2367 msgid "_Export Bitmap..." msgstr "_Bitmap exporteren..." -#: ../src/verbs.cpp:2311 +#: ../src/verbs.cpp:2368 msgid "Export this document or a selection as a bitmap image" msgstr "Document of selectie als bitmapafbeelding exporteren" -#: ../src/verbs.cpp:2312 +#: ../src/verbs.cpp:2369 msgid "Import Clip Art..." msgstr "Clipart importeren..." -#: ../src/verbs.cpp:2313 +#: ../src/verbs.cpp:2370 msgid "Import clipart from Open Clip Art Library" msgstr "Clipart uit Open Clip Art bibliotheek importeren" #. new FileVerb(SP_VERB_FILE_EXPORT_TO_OCAL, "FileExportToOCAL", N_("Export To Open Clip Art Library"), N_("Export this document to Open Clip Art Library"), INKSCAPE_ICON_DOCUMENT_EXPORT_OCAL), -#: ../src/verbs.cpp:2315 +#: ../src/verbs.cpp:2372 msgid "N_ext Window" msgstr "V_olgende venster" -#: ../src/verbs.cpp:2316 +#: ../src/verbs.cpp:2373 msgid "Switch to the next document window" msgstr "Naar het volgende documentvenster gaan" -#: ../src/verbs.cpp:2317 +#: ../src/verbs.cpp:2374 msgid "P_revious Window" msgstr "Vor_ige venster" -#: ../src/verbs.cpp:2318 +#: ../src/verbs.cpp:2375 msgid "Switch to the previous document window" msgstr "Naar het vorige documentvenster gaan" -#: ../src/verbs.cpp:2319 +#: ../src/verbs.cpp:2376 msgid "_Close" msgstr "Sl_uiten" -#: ../src/verbs.cpp:2320 +#: ../src/verbs.cpp:2377 msgid "Close this document window" msgstr "Dit documentvenster sluiten" -#: ../src/verbs.cpp:2321 +#: ../src/verbs.cpp:2378 msgid "_Quit" msgstr "A_fsluiten" -#: ../src/verbs.cpp:2321 +#: ../src/verbs.cpp:2378 msgid "Quit Inkscape" msgstr "Inkscape afsluiten" -#: ../src/verbs.cpp:2324 +#: ../src/verbs.cpp:2379 +#, fuzzy +msgid "_Templates..." +msgstr "_Paletten..." + +#: ../src/verbs.cpp:2380 +#, fuzzy +msgid "Create new project from template" +msgstr "Een nieuw document aanmaken volgens het standaardsjabloon" + +#: ../src/verbs.cpp:2383 msgid "Undo last action" msgstr "De laatste bewerking ongedaan maken" -#: ../src/verbs.cpp:2327 +#: ../src/verbs.cpp:2386 msgid "Do again the last undone action" msgstr "De laatst ongedaan gemaakte bewerking opnieuw doen" -#: ../src/verbs.cpp:2328 +#: ../src/verbs.cpp:2387 msgid "Cu_t" msgstr "K_nippen" -#: ../src/verbs.cpp:2329 +#: ../src/verbs.cpp:2388 msgid "Cut selection to clipboard" msgstr "Selectie knippen en op het klembord plaatsen" -#: ../src/verbs.cpp:2330 +#: ../src/verbs.cpp:2389 msgid "_Copy" msgstr "_Kopiëren" -#: ../src/verbs.cpp:2331 +#: ../src/verbs.cpp:2390 msgid "Copy selection to clipboard" msgstr "Selectie naar het klembord kopiëren" -#: ../src/verbs.cpp:2332 +#: ../src/verbs.cpp:2391 msgid "_Paste" msgstr "_Plakken" -#: ../src/verbs.cpp:2333 +#: ../src/verbs.cpp:2392 msgid "Paste objects from clipboard to mouse point, or paste text" msgstr "Objecten vanaf het klembord naar de cursor plakken, of tekst plakken" -#: ../src/verbs.cpp:2334 +#: ../src/verbs.cpp:2393 msgid "Paste _Style" msgstr "_Stijl plakken" -#: ../src/verbs.cpp:2335 +#: ../src/verbs.cpp:2394 msgid "Apply the style of the copied object to selection" msgstr "De stijl van het gekopieerde object op de huidige selectie toepassen" -#: ../src/verbs.cpp:2337 +#: ../src/verbs.cpp:2396 msgid "Scale selection to match the size of the copied object" msgstr "De huidige selectie aan de grootte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2338 +#: ../src/verbs.cpp:2397 msgid "Paste _Width" msgstr "_Breedte plakken" -#: ../src/verbs.cpp:2339 +#: ../src/verbs.cpp:2398 msgid "Scale selection horizontally to match the width of the copied object" msgstr "De huidige selectie aan de breedte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2340 +#: ../src/verbs.cpp:2399 msgid "Paste _Height" msgstr "_Hoogte plakken" -#: ../src/verbs.cpp:2341 +#: ../src/verbs.cpp:2400 msgid "Scale selection vertically to match the height of the copied object" msgstr "De huidige selectie aan de hoogte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2342 +#: ../src/verbs.cpp:2401 msgid "Paste Size Separately" msgstr "Grootte apart plakken" -#: ../src/verbs.cpp:2343 +#: ../src/verbs.cpp:2402 msgid "Scale each selected object to match the size of the copied object" msgstr "Elk geselecteerd object aan de grootte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2344 +#: ../src/verbs.cpp:2403 msgid "Paste Width Separately" msgstr "Breedte apart plakken" -#: ../src/verbs.cpp:2345 +#: ../src/verbs.cpp:2404 msgid "Scale each selected object horizontally to match the width of the copied object" msgstr "Elk geselecteerd object aan de breedte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2346 +#: ../src/verbs.cpp:2405 msgid "Paste Height Separately" msgstr "Hoogte apart plakken" -#: ../src/verbs.cpp:2347 +#: ../src/verbs.cpp:2406 msgid "Scale each selected object vertically to match the height of the copied object" msgstr "Elk geselecteerd object aan de hoogte van het gekopieerde object aanpassen" -#: ../src/verbs.cpp:2348 +#: ../src/verbs.cpp:2407 msgid "Paste _In Place" msgstr "_Op positie plakken" -#: ../src/verbs.cpp:2349 +#: ../src/verbs.cpp:2408 msgid "Paste objects from clipboard to the original location" msgstr "Objecten van het klembord naar hun originele locatie plakken" -#: ../src/verbs.cpp:2350 +#: ../src/verbs.cpp:2409 msgid "Paste Path _Effect" msgstr "Pad_effect plakken" -#: ../src/verbs.cpp:2351 +#: ../src/verbs.cpp:2410 msgid "Apply the path effect of the copied object to selection" msgstr "Het padeffect van het gekopieerde object op de huidige selectie toepassen" -#: ../src/verbs.cpp:2352 +#: ../src/verbs.cpp:2411 msgid "Remove Path _Effect" msgstr "Padeffect _verwijderen" -#: ../src/verbs.cpp:2353 +#: ../src/verbs.cpp:2412 msgid "Remove any path effects from selected objects" msgstr "Alle padeffecten van geselecteerde objecten verwijderen" -#: ../src/verbs.cpp:2354 +#: ../src/verbs.cpp:2413 msgid "_Remove Filters" msgstr "_Filters verwijderen" -#: ../src/verbs.cpp:2355 +#: ../src/verbs.cpp:2414 msgid "Remove any filters from selected objects" msgstr "Alle filters van geselecteerde objecten verwijderen" -#: ../src/verbs.cpp:2356 +#: ../src/verbs.cpp:2415 msgid "_Delete" msgstr "_Verwijderen" -#: ../src/verbs.cpp:2357 +#: ../src/verbs.cpp:2416 msgid "Delete selection" msgstr "Selectie verwijderen" -#: ../src/verbs.cpp:2358 +#: ../src/verbs.cpp:2417 msgid "Duplic_ate" msgstr "_Dupliceren" -#: ../src/verbs.cpp:2359 +#: ../src/verbs.cpp:2418 msgid "Duplicate selected objects" msgstr "Geselecteerde objecten verdubbelen" -#: ../src/verbs.cpp:2360 +#: ../src/verbs.cpp:2419 msgid "Create Clo_ne" msgstr "_Klonen" -#: ../src/verbs.cpp:2361 +#: ../src/verbs.cpp:2420 msgid "Create a clone (a copy linked to the original) of selected object" msgstr "Een kloon (een aan het origineel gekoppelde kopie) maken van het geselecteerde object" -#: ../src/verbs.cpp:2362 +#: ../src/verbs.cpp:2421 msgid "Unlin_k Clone" msgstr "Kloon o_ntkoppelen" -#: ../src/verbs.cpp:2363 +#: ../src/verbs.cpp:2422 msgid "Cut the selected clones' links to the originals, turning them into standalone objects" msgstr "De koppeling tussen de geselecteerde klonen en de originelen verwijderen, zodat ze op zichzelf staande objecten worden" -#: ../src/verbs.cpp:2364 +#: ../src/verbs.cpp:2423 msgid "Relink to Copied" msgstr "Herlinken aan kopie" -#: ../src/verbs.cpp:2365 +#: ../src/verbs.cpp:2424 msgid "Relink the selected clones to the object currently on the clipboard" msgstr "De geselecteerde klonen herlinken naar het object op het klembord" -#: ../src/verbs.cpp:2366 +#: ../src/verbs.cpp:2425 msgid "Select _Original" msgstr "_Origineel selecteren" -#: ../src/verbs.cpp:2367 +#: ../src/verbs.cpp:2426 msgid "Select the object to which the selected clone is linked" msgstr "Het object waaraan de kloon gekoppeld is selecteren" -#: ../src/verbs.cpp:2368 +#: ../src/verbs.cpp:2427 msgid "Clone original path (LPE)" msgstr "Origineel pad klonen (LPE)" -#: ../src/verbs.cpp:2369 +#: ../src/verbs.cpp:2428 msgid "Creates a new path, applies the Clone original LPE, and refers it to the selected path" msgstr "Maakt een nieuw pad, past de Origineel pad klonen LPE toe en linkt het aan het geselecteerde pad" -#: ../src/verbs.cpp:2370 +#: ../src/verbs.cpp:2429 msgid "Objects to _Marker" msgstr "Objecten naar _markering" -#: ../src/verbs.cpp:2371 +#: ../src/verbs.cpp:2430 msgid "Convert selection to a line marker" msgstr "Selectie converteren naar een lijnmarkering" -#: ../src/verbs.cpp:2372 +#: ../src/verbs.cpp:2431 msgid "Objects to Gu_ides" msgstr "Objecten naar hulpl_ijnen" -#: ../src/verbs.cpp:2373 +#: ../src/verbs.cpp:2432 msgid "Convert selected objects to a collection of guidelines aligned with their edges" msgstr "De geselecteerde objecten converteren naar een set hulplijnen die hun randen aangeven" -#: ../src/verbs.cpp:2374 +#: ../src/verbs.cpp:2433 msgid "Objects to Patter_n" msgstr "Objecten naar patroo_n" -#: ../src/verbs.cpp:2375 +#: ../src/verbs.cpp:2434 msgid "Convert selection to a rectangle with tiled pattern fill" msgstr "Selectie converteren naar een rechthoek gevuld met een getegeld patroon" -#: ../src/verbs.cpp:2376 +#: ../src/verbs.cpp:2435 msgid "Pattern to _Objects" msgstr "Patroon naar _objecten" -#: ../src/verbs.cpp:2377 +#: ../src/verbs.cpp:2436 msgid "Extract objects from a tiled pattern fill" msgstr "Objecten uit een getegeld patroon extraheren" -#: ../src/verbs.cpp:2378 +#: ../src/verbs.cpp:2437 msgid "Group to Symbol" msgstr "Groep naar symbool" -#: ../src/verbs.cpp:2379 +#: ../src/verbs.cpp:2438 msgid "Convert group to a symbol" msgstr "Groep naar symbool omzetten" -#: ../src/verbs.cpp:2380 +#: ../src/verbs.cpp:2439 msgid "Symbol to Group" msgstr "Symbool naar groep" -#: ../src/verbs.cpp:2381 +#: ../src/verbs.cpp:2440 msgid "Extract group from a symbol" msgstr "Groep extraheren uit symbool" -#: ../src/verbs.cpp:2382 +#: ../src/verbs.cpp:2441 msgid "Clea_r All" msgstr "Alles verwijderen" -#: ../src/verbs.cpp:2383 +#: ../src/verbs.cpp:2442 msgid "Delete all objects from document" msgstr "Alle objecten uit het document verwijderen" -#: ../src/verbs.cpp:2384 +#: ../src/verbs.cpp:2443 msgid "Select Al_l" msgstr "_Alles selecteren" -#: ../src/verbs.cpp:2385 +#: ../src/verbs.cpp:2444 msgid "Select all objects or all nodes" msgstr "Alle objecten of alle knooppunten selecteren" -#: ../src/verbs.cpp:2386 +#: ../src/verbs.cpp:2445 msgid "Select All in All La_yers" msgstr "Alles selecteren in alle _lagen" -#: ../src/verbs.cpp:2387 +#: ../src/verbs.cpp:2446 msgid "Select all objects in all visible and unlocked layers" msgstr "Alle objecten in alle zichtbare en niet vergrendelde lagen selecteren" -#: ../src/verbs.cpp:2388 +#: ../src/verbs.cpp:2447 msgid "Fill _and Stroke" msgstr "_Vulling en lijn" -#: ../src/verbs.cpp:2389 +#: ../src/verbs.cpp:2448 msgid "Select all objects with the same fill and stroke as the selected objects" msgstr "Alle objecten met identieke vulling en lijn als de selectie selecteren" -#: ../src/verbs.cpp:2390 +#: ../src/verbs.cpp:2449 msgid "_Fill Color" msgstr "V_ulkleur" -#: ../src/verbs.cpp:2391 +#: ../src/verbs.cpp:2450 msgid "Select all objects with the same fill as the selected objects" msgstr "Alle objecten met identieke vulling als de selectie selecteren" -#: ../src/verbs.cpp:2392 +#: ../src/verbs.cpp:2451 msgid "_Stroke Color" msgstr "Lijn_kleur" -#: ../src/verbs.cpp:2393 +#: ../src/verbs.cpp:2452 msgid "Select all objects with the same stroke as the selected objects" msgstr "Alle objecten met identieke lijn als de selectie selecteren" -#: ../src/verbs.cpp:2394 +#: ../src/verbs.cpp:2453 msgid "Stroke St_yle" msgstr "Lijn_stijl" -#: ../src/verbs.cpp:2395 +#: ../src/verbs.cpp:2454 msgid "Select all objects with the same stroke style (width, dash, markers) as the selected objects" msgstr "Alle objecten met dezelfde lijnstijl (breedte, streepjes, markering) als de selectie selecteren" -#: ../src/verbs.cpp:2396 +#: ../src/verbs.cpp:2455 msgid "_Object Type" msgstr "_Objecttype" -#: ../src/verbs.cpp:2397 +#: ../src/verbs.cpp:2456 msgid "Select all objects with the same object type (rect, arc, text, path, bitmap etc) as the selected objects" msgstr "Alle objecten met hetzelfde objecttype (rechthoef, boog, tekst, pad, bitmap, etc.) als de selectie selecteren" -#: ../src/verbs.cpp:2398 +#: ../src/verbs.cpp:2457 msgid "In_vert Selection" msgstr "Selectie _omkeren" -#: ../src/verbs.cpp:2399 +#: ../src/verbs.cpp:2458 msgid "Invert selection (unselect what is selected and select everything else)" msgstr "Selectie omkeren (alleen dat selecteren wat nu niet geselecteerd is)" -#: ../src/verbs.cpp:2400 +#: ../src/verbs.cpp:2459 msgid "Invert in All Layers" msgstr "Omkeren in alle lagen" -#: ../src/verbs.cpp:2401 +#: ../src/verbs.cpp:2460 msgid "Invert selection in all visible and unlocked layers" msgstr "Selectie omkeren in alle zichtbare en niet vergrendelde lagen" -#: ../src/verbs.cpp:2402 +#: ../src/verbs.cpp:2461 msgid "Select Next" msgstr "Volgende selecteren" -#: ../src/verbs.cpp:2403 +#: ../src/verbs.cpp:2462 msgid "Select next object or node" msgstr "Volgend object of knooppunt selecteren" -#: ../src/verbs.cpp:2404 +#: ../src/verbs.cpp:2463 msgid "Select Previous" msgstr "Vorige selecteren" -#: ../src/verbs.cpp:2405 +#: ../src/verbs.cpp:2464 msgid "Select previous object or node" msgstr "Vorig object of knoopppunt selecteren" -#: ../src/verbs.cpp:2406 +#: ../src/verbs.cpp:2465 msgid "D_eselect" msgstr "S_electie opheffen" -#: ../src/verbs.cpp:2407 +#: ../src/verbs.cpp:2466 msgid "Deselect any selected objects or nodes" msgstr "Alles deselecteren" -#: ../src/verbs.cpp:2408 -msgid "Create _Guides Around the Page" -msgstr "_Hulplijnen rond pagina" - -#: ../src/verbs.cpp:2409 -#: ../src/verbs.cpp:2411 +#: ../src/verbs.cpp:2468 +#: ../src/verbs.cpp:2470 msgid "Create four guides aligned with the page borders" msgstr "Vier hulplijnen maken op de paginaranden" -#: ../src/verbs.cpp:2412 +#: ../src/verbs.cpp:2469 +msgid "Create _Guides Around the Page" +msgstr "_Hulplijnen rond pagina" + +#: ../src/verbs.cpp:2471 msgid "Next path effect parameter" msgstr "Volgende padeffectparameter" -#: ../src/verbs.cpp:2413 +#: ../src/verbs.cpp:2472 msgid "Show next editable path effect parameter" msgstr "Volgende bewerkbare padeffectparameter tonen" #. Selection -#: ../src/verbs.cpp:2416 +#: ../src/verbs.cpp:2475 msgid "Raise to _Top" msgstr "_Bovenaan" -#: ../src/verbs.cpp:2417 +#: ../src/verbs.cpp:2476 msgid "Raise selection to top" msgstr "Selectie boven alle andere objecten plaatsen" -#: ../src/verbs.cpp:2418 +#: ../src/verbs.cpp:2477 msgid "Lower to _Bottom" msgstr "_Onderaan" -#: ../src/verbs.cpp:2419 +#: ../src/verbs.cpp:2478 msgid "Lower selection to bottom" msgstr "Selectie onder alle andere objecten plaatsen" -#: ../src/verbs.cpp:2420 +#: ../src/verbs.cpp:2479 msgid "_Raise" msgstr "Om_hoog" -#: ../src/verbs.cpp:2421 +#: ../src/verbs.cpp:2480 msgid "Raise selection one step" msgstr "Selectie één niveau omhoog halen" -#: ../src/verbs.cpp:2422 +#: ../src/verbs.cpp:2481 msgid "_Lower" msgstr "Om_laag" -#: ../src/verbs.cpp:2423 +#: ../src/verbs.cpp:2482 msgid "Lower selection one step" msgstr "Selectie één niveau omlaag brengen" -#: ../src/verbs.cpp:2425 +#: ../src/verbs.cpp:2484 msgid "Group selected objects" msgstr "Geselecteerde objecten groeperen" -#: ../src/verbs.cpp:2427 +#: ../src/verbs.cpp:2486 msgid "Ungroup selected groups" msgstr "Geselecteerde groepen opheffen" -#: ../src/verbs.cpp:2429 +#: ../src/verbs.cpp:2488 msgid "_Put on Path" msgstr "Op pad _plaatsen" -#: ../src/verbs.cpp:2431 +#: ../src/verbs.cpp:2490 msgid "_Remove from Path" msgstr "Van pad _verwijderen" -#: ../src/verbs.cpp:2433 +#: ../src/verbs.cpp:2492 msgid "Remove Manual _Kerns" msgstr "Teken_spatiëring herstellen" #. TRANSLATORS: "glyph": An image used in the visual representation of characters; #. roughly speaking, how a character looks. A font is a set of glyphs. -#: ../src/verbs.cpp:2436 +#: ../src/verbs.cpp:2495 msgid "Remove all manual kerns and glyph rotations from a text object" msgstr "Tekenspatiëring en karakterrotaties van het tekstobject herstellen" -#: ../src/verbs.cpp:2438 +#: ../src/verbs.cpp:2497 msgid "_Union" msgstr "_Vereniging" -#: ../src/verbs.cpp:2439 +#: ../src/verbs.cpp:2498 msgid "Create union of selected paths" msgstr "Geselecteerde paden verenigen" -#: ../src/verbs.cpp:2440 +#: ../src/verbs.cpp:2499 msgid "_Intersection" msgstr "_Overlap" -#: ../src/verbs.cpp:2441 +#: ../src/verbs.cpp:2500 msgid "Create intersection of selected paths" msgstr "Intersectie van geselecteerde paden maken" -#: ../src/verbs.cpp:2442 +#: ../src/verbs.cpp:2501 msgid "_Difference" msgstr "_Verschil" -#: ../src/verbs.cpp:2443 +#: ../src/verbs.cpp:2502 msgid "Create difference of selected paths (bottom minus top)" msgstr "Verschil van geselecteerde maken (onderste min bovenste)" -#: ../src/verbs.cpp:2444 +#: ../src/verbs.cpp:2503 msgid "E_xclusion" msgstr "_Uitsluiting" -#: ../src/verbs.cpp:2445 +#: ../src/verbs.cpp:2504 msgid "Create exclusive OR of selected paths (those parts that belong to only one path)" msgstr "Geselecteerde paden reduceren tot de niet-overlappende gebieden" -#: ../src/verbs.cpp:2446 +#: ../src/verbs.cpp:2505 msgid "Di_vision" msgstr "_Splitsing" -#: ../src/verbs.cpp:2447 +#: ../src/verbs.cpp:2506 msgid "Cut the bottom path into pieces" msgstr "Het onderste pad in stukken snijden" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2450 +#: ../src/verbs.cpp:2509 msgid "Cut _Path" msgstr "_Pad versnijden" -#: ../src/verbs.cpp:2451 +#: ../src/verbs.cpp:2510 msgid "Cut the bottom path's stroke into pieces, removing fill" msgstr "De lijn van het onderste pad in stukken snijden en vulling verwijderen" #. TRANSLATORS: "outset": expand a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2455 +#: ../src/verbs.cpp:2514 msgid "Outs_et" msgstr "Ver_wijden" -#: ../src/verbs.cpp:2456 +#: ../src/verbs.cpp:2515 msgid "Outset selected paths" msgstr "Geselecteerde paden verwijden" -#: ../src/verbs.cpp:2458 +#: ../src/verbs.cpp:2517 msgid "O_utset Path by 1 px" msgstr "Pad met 1 pixel ver_wijden" -#: ../src/verbs.cpp:2459 +#: ../src/verbs.cpp:2518 msgid "Outset selected paths by 1 px" msgstr "Geselecteerde paden met 1 pixel verwijden" -#: ../src/verbs.cpp:2461 +#: ../src/verbs.cpp:2520 msgid "O_utset Path by 10 px" msgstr "Pad met 10 pixels ver_wijden" -#: ../src/verbs.cpp:2462 +#: ../src/verbs.cpp:2521 msgid "Outset selected paths by 10 px" msgstr "Geselecteerde paden met 10 pixels verwijden" #. TRANSLATORS: "inset": contract a shape by offsetting the object's path, #. i.e. by displacing it perpendicular to the path in each point. #. See also the Advanced Tutorial for explanation. -#: ../src/verbs.cpp:2466 +#: ../src/verbs.cpp:2525 msgid "I_nset" msgstr "Ver_nauwen" -#: ../src/verbs.cpp:2467 +#: ../src/verbs.cpp:2526 msgid "Inset selected paths" msgstr "Geselecteerde paden vernauwen" -#: ../src/verbs.cpp:2469 +#: ../src/verbs.cpp:2528 msgid "I_nset Path by 1 px" msgstr "Pad met 1 pixel ver_nauwen" -#: ../src/verbs.cpp:2470 +#: ../src/verbs.cpp:2529 msgid "Inset selected paths by 1 px" msgstr "Geselecteerde paden met 1 pixel vernauwen" -#: ../src/verbs.cpp:2472 +#: ../src/verbs.cpp:2531 msgid "I_nset Path by 10 px" msgstr "Pad met 10 pixels ver_nauwen" -#: ../src/verbs.cpp:2473 +#: ../src/verbs.cpp:2532 msgid "Inset selected paths by 10 px" msgstr "Geselecteerde paden met 10 pixels vernauwen" -#: ../src/verbs.cpp:2475 +#: ../src/verbs.cpp:2534 msgid "D_ynamic Offset" msgstr "D_ynamische offset" -#: ../src/verbs.cpp:2475 +#: ../src/verbs.cpp:2534 msgid "Create a dynamic offset object" msgstr "Een 'dynamische offset'-object aanmaken" -#: ../src/verbs.cpp:2477 +#: ../src/verbs.cpp:2536 msgid "_Linked Offset" msgstr "_Gekoppelde offset" -#: ../src/verbs.cpp:2478 +#: ../src/verbs.cpp:2537 msgid "Create a dynamic offset object linked to the original path" msgstr "Een 'dynamische offset'-object aanmaken, gekoppeld aan het originele pad" -#: ../src/verbs.cpp:2480 +#: ../src/verbs.cpp:2539 msgid "_Stroke to Path" msgstr "_Lijn naar pad" # Werkt ook voor meerdere objecten, vandaar meervoud. -#: ../src/verbs.cpp:2481 +#: ../src/verbs.cpp:2540 msgid "Convert selected object's stroke to paths" msgstr "Lijn van geselecteerde objecten omzetten naar paden" -#: ../src/verbs.cpp:2482 +#: ../src/verbs.cpp:2541 msgid "Si_mplify" msgstr "_Vereenvoudigen" -#: ../src/verbs.cpp:2483 +#: ../src/verbs.cpp:2542 msgid "Simplify selected paths (remove extra nodes)" msgstr "Geselecteerde paden vereenvoudigen (overbodige knooppunten verwijderen)" -#: ../src/verbs.cpp:2484 +#: ../src/verbs.cpp:2543 msgid "_Reverse" msgstr "_Omdraaien" -#: ../src/verbs.cpp:2485 +#: ../src/verbs.cpp:2544 msgid "Reverse the direction of selected paths (useful for flipping markers)" msgstr "De richting van geselecteerde paden omkeren (handig voor het omdraaien van markeringen)" -#: ../src/verbs.cpp:2488 +#: ../src/verbs.cpp:2547 msgid "Create one or more paths from a bitmap by tracing it" msgstr "Door overtrekken één of meer paden aanmaken uit een bitmap" -#: ../src/verbs.cpp:2489 +#: ../src/verbs.cpp:2548 msgid "Make a _Bitmap Copy" msgstr "Als _bitmap kopiëren" -#: ../src/verbs.cpp:2490 +#: ../src/verbs.cpp:2549 msgid "Export selection to a bitmap and insert it into document" msgstr "Selectie omzetten naar een bitmap en in het document plaatsen" -#: ../src/verbs.cpp:2491 +#: ../src/verbs.cpp:2550 msgid "_Combine" msgstr "_Combineren" -#: ../src/verbs.cpp:2492 +#: ../src/verbs.cpp:2551 msgid "Combine several paths into one" msgstr "Verschillende paden combineren tot één pad" #. TRANSLATORS: "to cut a path" is not the same as "to break a path apart" - see the #. Advanced tutorial for more info -#: ../src/verbs.cpp:2495 +#: ../src/verbs.cpp:2554 msgid "Break _Apart" msgstr "Op_delen" -#: ../src/verbs.cpp:2496 +#: ../src/verbs.cpp:2555 msgid "Break selected paths into subpaths" msgstr "Geselecteerde paden in subpaden opdelen" -#: ../src/verbs.cpp:2497 +#: ../src/verbs.cpp:2556 msgid "Ro_ws and Columns..." msgstr "_Rijen en kolommen..." -#: ../src/verbs.cpp:2498 +#: ../src/verbs.cpp:2557 msgid "Arrange selected objects in a table" msgstr "Geselecteerde objecten in een tabel rangschikken" #. Layer -#: ../src/verbs.cpp:2500 +#: ../src/verbs.cpp:2559 msgid "_Add Layer..." msgstr "_Nieuwe laag..." -#: ../src/verbs.cpp:2501 +#: ../src/verbs.cpp:2560 msgid "Create a new layer" msgstr "Een nieuwe laag maken" -#: ../src/verbs.cpp:2502 +#: ../src/verbs.cpp:2561 msgid "Re_name Layer..." msgstr "Laag hernoe_men..." -#: ../src/verbs.cpp:2503 +#: ../src/verbs.cpp:2562 msgid "Rename the current layer" msgstr "Huidige laag hernoemen" -#: ../src/verbs.cpp:2504 +#: ../src/verbs.cpp:2563 msgid "Switch to Layer Abov_e" msgstr "_Wisselen naar de laag erboven" -#: ../src/verbs.cpp:2505 +#: ../src/verbs.cpp:2564 msgid "Switch to the layer above the current" msgstr "Wisselen naar de laag in het document die boven de huidige ligt" -#: ../src/verbs.cpp:2506 +#: ../src/verbs.cpp:2565 msgid "Switch to Layer Belo_w" msgstr "W_isselen naar de laag eronder" -#: ../src/verbs.cpp:2507 +#: ../src/verbs.cpp:2566 msgid "Switch to the layer below the current" msgstr "Wisselen naar de laag in het document die onder de huidige ligt" -#: ../src/verbs.cpp:2508 +#: ../src/verbs.cpp:2567 msgid "Move Selection to Layer Abo_ve" msgstr "_Selectie omhoog verplaatsen" -#: ../src/verbs.cpp:2509 +#: ../src/verbs.cpp:2568 msgid "Move selection to the layer above the current" msgstr "De geselecteerde objecten naar de laag boven de huidige verplaatsen" -#: ../src/verbs.cpp:2510 +#: ../src/verbs.cpp:2569 msgid "Move Selection to Layer Bel_ow" msgstr "S_electie omlaag verplaatsen" -#: ../src/verbs.cpp:2511 +#: ../src/verbs.cpp:2570 msgid "Move selection to the layer below the current" msgstr "De geselecteerde objecten naar de laag onder de huidige verplaatsen" -#: ../src/verbs.cpp:2512 +#: ../src/verbs.cpp:2571 msgid "Move Selection to Layer..." msgstr "Selectie naar laag verplaatsen..." -#: ../src/verbs.cpp:2514 +#: ../src/verbs.cpp:2573 msgid "Layer to _Top" msgstr "Laag _bovenaan" -#: ../src/verbs.cpp:2515 +#: ../src/verbs.cpp:2574 msgid "Raise the current layer to the top" msgstr "Huidige laag boven alle andere plaatsen" -#: ../src/verbs.cpp:2516 +#: ../src/verbs.cpp:2575 msgid "Layer to _Bottom" msgstr "Laag _onderaan" -#: ../src/verbs.cpp:2517 +#: ../src/verbs.cpp:2576 msgid "Lower the current layer to the bottom" msgstr "Huidige laag onder alle andere plaatsen" -#: ../src/verbs.cpp:2518 +#: ../src/verbs.cpp:2577 msgid "_Raise Layer" msgstr "Laag om_hoog" -#: ../src/verbs.cpp:2519 +#: ../src/verbs.cpp:2578 msgid "Raise the current layer" msgstr "Huidige laag één niveau omhoog brengen" -#: ../src/verbs.cpp:2520 +#: ../src/verbs.cpp:2579 msgid "_Lower Layer" msgstr "Laag om_laag" -#: ../src/verbs.cpp:2521 +#: ../src/verbs.cpp:2580 msgid "Lower the current layer" msgstr "Huidige laag één niveau omlaag brengen" -#: ../src/verbs.cpp:2522 +#: ../src/verbs.cpp:2581 msgid "D_uplicate Current Layer" msgstr "Huidige laag _dupliceren" -#: ../src/verbs.cpp:2523 +#: ../src/verbs.cpp:2582 msgid "Duplicate an existing layer" msgstr "Een bestaande laag dupliceren" -#: ../src/verbs.cpp:2524 +#: ../src/verbs.cpp:2583 msgid "_Delete Current Layer" msgstr "Laag _verwijderen" -#: ../src/verbs.cpp:2525 +#: ../src/verbs.cpp:2584 msgid "Delete the current layer" msgstr "Huidige laag verwijderen" -#: ../src/verbs.cpp:2526 +#: ../src/verbs.cpp:2585 msgid "_Show/hide other layers" msgstr "Andere lagen _tonen/verbergen" -#: ../src/verbs.cpp:2527 +#: ../src/verbs.cpp:2586 msgid "Solo the current layer" msgstr "Alleen huidige laag tonen" -#: ../src/verbs.cpp:2528 +#: ../src/verbs.cpp:2587 msgid "_Show all layers" msgstr "Alle lagen t_onen" -#: ../src/verbs.cpp:2529 +#: ../src/verbs.cpp:2588 msgid "Show all the layers" msgstr "Alle lagen tonen" -#: ../src/verbs.cpp:2530 +#: ../src/verbs.cpp:2589 msgid "_Hide all layers" msgstr "Alle lagen ver_bergen" -#: ../src/verbs.cpp:2531 +#: ../src/verbs.cpp:2590 msgid "Hide all the layers" msgstr "Alle lagen verbergen" -#: ../src/verbs.cpp:2532 +#: ../src/verbs.cpp:2591 msgid "_Lock all layers" msgstr "Alle lagen ver_grendelen" -#: ../src/verbs.cpp:2533 +#: ../src/verbs.cpp:2592 msgid "Lock all the layers" msgstr "Alle lagen vergrendelen" -#: ../src/verbs.cpp:2534 +#: ../src/verbs.cpp:2593 msgid "Lock/Unlock _other layers" msgstr "_Andere lagen vergrendelen/ontgrendelen" -#: ../src/verbs.cpp:2535 +#: ../src/verbs.cpp:2594 msgid "Lock all the other layers" msgstr "Andere lagen vergrendelen" -#: ../src/verbs.cpp:2536 +#: ../src/verbs.cpp:2595 msgid "_Unlock all layers" msgstr "Alle lagen _ontgrendelen" -#: ../src/verbs.cpp:2537 +#: ../src/verbs.cpp:2596 msgid "Unlock all the layers" msgstr "Alle lagen ontgrendelen" -#: ../src/verbs.cpp:2538 +#: ../src/verbs.cpp:2597 msgid "_Lock/Unlock Current Layer" msgstr "_Vergrendelen/ontgrendel huidige laag" -#: ../src/verbs.cpp:2539 +#: ../src/verbs.cpp:2598 msgid "Toggle lock on current layer" msgstr "Vergrendeling huidige laag aanpassen" -#: ../src/verbs.cpp:2540 +#: ../src/verbs.cpp:2599 msgid "_Show/hide Current Layer" msgstr "_Huidige laag tonen/verbergen" -#: ../src/verbs.cpp:2541 +#: ../src/verbs.cpp:2600 msgid "Toggle visibility of current layer" msgstr "Zichtbaarheid huidige laag aanpassen" #. Object -#: ../src/verbs.cpp:2544 +#: ../src/verbs.cpp:2603 msgid "Rotate _90° CW" msgstr "_90° rechtsom draaien" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2547 +#: ../src/verbs.cpp:2606 msgid "Rotate selection 90° clockwise" msgstr "Geselecteerde objecten 90° rechtsom draaien" -#: ../src/verbs.cpp:2548 +#: ../src/verbs.cpp:2607 msgid "Rotate 9_0° CCW" msgstr "9_0° linksom draaien" #. This is shared between tooltips and statusbar, so they #. must use UTF-8, not HTML entities for special characters. -#: ../src/verbs.cpp:2551 +#: ../src/verbs.cpp:2610 msgid "Rotate selection 90° counter-clockwise" msgstr "Geselecteerde objecten 90° linksom draaien" -#: ../src/verbs.cpp:2552 +#: ../src/verbs.cpp:2611 msgid "Remove _Transformations" msgstr "_Transformaties verwijderen" -#: ../src/verbs.cpp:2553 +#: ../src/verbs.cpp:2612 msgid "Remove transformations from object" msgstr "Transformaties verwijderen van het object" -#: ../src/verbs.cpp:2554 +#: ../src/verbs.cpp:2613 msgid "_Object to Path" msgstr "_Object naar pad" -#: ../src/verbs.cpp:2555 +#: ../src/verbs.cpp:2614 msgid "Convert selected object to path" msgstr "Geselecteerd object omzetten naar pad" -#: ../src/verbs.cpp:2556 +#: ../src/verbs.cpp:2615 msgid "_Flow into Frame" msgstr "_Inkaderen" -#: ../src/verbs.cpp:2557 +#: ../src/verbs.cpp:2616 msgid "Put text into a frame (path or shape), creating a flowed text linked to the frame object" msgstr "Tekst in een kader plaatsen (pad of vorm), zodat een ingekaderde tekst ontstaat die gekoppeld is aan het kader" -#: ../src/verbs.cpp:2558 +#: ../src/verbs.cpp:2617 msgid "_Unflow" msgstr "_Uit kader halen" -#: ../src/verbs.cpp:2559 +#: ../src/verbs.cpp:2618 msgid "Remove text from frame (creates a single-line text object)" msgstr "Tekst niet langer in het kader plaatsen (resulteert in een tekstobject met één regel)" -#: ../src/verbs.cpp:2560 +#: ../src/verbs.cpp:2619 msgid "_Convert to Text" msgstr "_Omzetten naar tekst" -#: ../src/verbs.cpp:2561 +#: ../src/verbs.cpp:2620 msgid "Convert flowed text to regular text object (preserves appearance)" msgstr "Ingekaderde tekst omzetten naar een gewoon tekstobject (met behoud van uiterlijk)" -#: ../src/verbs.cpp:2563 +#: ../src/verbs.cpp:2622 msgid "Flip _Horizontal" msgstr "_Horizontaal spiegelen" -#: ../src/verbs.cpp:2563 +#: ../src/verbs.cpp:2622 msgid "Flip selected objects horizontally" msgstr "Geselecteerde objecten horizontaal spiegelen" -#: ../src/verbs.cpp:2566 +#: ../src/verbs.cpp:2625 msgid "Flip _Vertical" msgstr "_Verticaal spiegelen" -#: ../src/verbs.cpp:2566 +#: ../src/verbs.cpp:2625 msgid "Flip selected objects vertically" msgstr "Geselecteerde objecten verticaal spiegelen" -#: ../src/verbs.cpp:2569 +#: ../src/verbs.cpp:2628 msgid "Apply mask to selection (using the topmost object as mask)" msgstr "Masker toepassen op selectie (met bovenste object als masker)" -#: ../src/verbs.cpp:2571 +#: ../src/verbs.cpp:2630 msgid "Edit mask" msgstr "Masker bewerken" -#: ../src/verbs.cpp:2572 -#: ../src/verbs.cpp:2578 +#: ../src/verbs.cpp:2631 +#: ../src/verbs.cpp:2637 msgid "_Release" msgstr "_Uitschakelen" -#: ../src/verbs.cpp:2573 +#: ../src/verbs.cpp:2632 msgid "Remove mask from selection" msgstr "Masker uitschakelen" -#: ../src/verbs.cpp:2575 +#: ../src/verbs.cpp:2634 msgid "Apply clipping path to selection (using the topmost object as clipping path)" msgstr "Maskerpad toepassen op selectie (met bovenste object als maskerpad)" -#: ../src/verbs.cpp:2577 +#: ../src/verbs.cpp:2636 msgid "Edit clipping path" msgstr "Maskerpad bewerken" -#: ../src/verbs.cpp:2579 +#: ../src/verbs.cpp:2638 msgid "Remove clipping path from selection" msgstr "Maskerpad uitschakelen" #. Tools -#: ../src/verbs.cpp:2582 +#: ../src/verbs.cpp:2641 msgctxt "ContextVerb" msgid "Select" msgstr "Selecteren" -#: ../src/verbs.cpp:2583 +#: ../src/verbs.cpp:2642 msgid "Select and transform objects" msgstr "Objecten selecteren of vervormen" -#: ../src/verbs.cpp:2584 +#: ../src/verbs.cpp:2643 msgctxt "ContextVerb" msgid "Node Edit" msgstr "Knooppunt wijzigen" -#: ../src/verbs.cpp:2585 +#: ../src/verbs.cpp:2644 msgid "Edit paths by nodes" msgstr "Paden aanpassen via hun knooppunten" -#: ../src/verbs.cpp:2586 +#: ../src/verbs.cpp:2645 msgctxt "ContextVerb" msgid "Tweak" msgstr "Boetseren" -#: ../src/verbs.cpp:2587 +#: ../src/verbs.cpp:2646 msgid "Tweak objects by sculpting or painting" msgstr "Objecten aanpassen door boetseren of verven" -#: ../src/verbs.cpp:2588 +#: ../src/verbs.cpp:2647 msgctxt "ContextVerb" msgid "Spray" msgstr "Verstuiven" -#: ../src/verbs.cpp:2589 +#: ../src/verbs.cpp:2648 msgid "Spray objects by sculpting or painting" msgstr "Object verstuiven door boetseren of verven" -#: ../src/verbs.cpp:2590 +#: ../src/verbs.cpp:2649 msgctxt "ContextVerb" msgid "Rectangle" msgstr "Rechthoek" -#: ../src/verbs.cpp:2591 +#: ../src/verbs.cpp:2650 msgid "Create rectangles and squares" msgstr "Rechthoeken of vierkanten maken" -#: ../src/verbs.cpp:2592 +#: ../src/verbs.cpp:2651 msgctxt "ContextVerb" msgid "3D Box" msgstr "3D-kubus" -#: ../src/verbs.cpp:2593 +#: ../src/verbs.cpp:2652 msgid "Create 3D boxes" msgstr "3D-kubussen maken" -#: ../src/verbs.cpp:2594 +#: ../src/verbs.cpp:2653 msgctxt "ContextVerb" msgid "Ellipse" msgstr "Ellips" -#: ../src/verbs.cpp:2595 +#: ../src/verbs.cpp:2654 msgid "Create circles, ellipses, and arcs" msgstr "Cirkels, ellipsen of bogen maken" -#: ../src/verbs.cpp:2596 +#: ../src/verbs.cpp:2655 msgctxt "ContextVerb" msgid "Star" msgstr "Ster" -#: ../src/verbs.cpp:2597 +#: ../src/verbs.cpp:2656 msgid "Create stars and polygons" msgstr "Sterren of veelhoeken maken" -#: ../src/verbs.cpp:2598 +#: ../src/verbs.cpp:2657 msgctxt "ContextVerb" msgid "Spiral" msgstr "Spiraal" -#: ../src/verbs.cpp:2599 +#: ../src/verbs.cpp:2658 msgid "Create spirals" msgstr "Spiralen maken" -#: ../src/verbs.cpp:2600 +#: ../src/verbs.cpp:2659 msgctxt "ContextVerb" msgid "Pencil" msgstr "Potlood" -#: ../src/verbs.cpp:2601 +#: ../src/verbs.cpp:2660 msgid "Draw freehand lines" msgstr "Lijnen tekenen uit de losse hand" -#: ../src/verbs.cpp:2602 +#: ../src/verbs.cpp:2661 msgctxt "ContextVerb" msgid "Pen" msgstr "Pen" -#: ../src/verbs.cpp:2603 +#: ../src/verbs.cpp:2662 msgid "Draw Bezier curves and straight lines" msgstr "Rechten of Bezierkrommes trekken" -#: ../src/verbs.cpp:2604 +#: ../src/verbs.cpp:2663 msgctxt "ContextVerb" msgid "Calligraphy" msgstr "Kalligrafie" -#: ../src/verbs.cpp:2605 +#: ../src/verbs.cpp:2664 msgid "Draw calligraphic or brush strokes" msgstr "Kalligrafische lijnen of penseelstreken tekenen" -#: ../src/verbs.cpp:2607 +#: ../src/verbs.cpp:2666 msgid "Create and edit text objects" msgstr "Tekstobjecten maken en aanpassen" -#: ../src/verbs.cpp:2608 +#: ../src/verbs.cpp:2667 msgctxt "ContextVerb" msgid "Gradient" msgstr "Kleurverloop" -#: ../src/verbs.cpp:2609 +#: ../src/verbs.cpp:2668 msgid "Create and edit gradients" msgstr "Kleurverlopen maken en aanpassen" -#: ../src/verbs.cpp:2610 +#: ../src/verbs.cpp:2669 msgctxt "ContextVerb" msgid "Mesh" msgstr "Mesh" -#: ../src/verbs.cpp:2611 +#: ../src/verbs.cpp:2670 msgid "Create and edit meshes" msgstr "Meshes maken en bewerken" -#: ../src/verbs.cpp:2612 +#: ../src/verbs.cpp:2671 msgctxt "ContextVerb" msgid "Zoom" msgstr "Zoomen" -#: ../src/verbs.cpp:2613 +#: ../src/verbs.cpp:2672 msgid "Zoom in or out" msgstr "In- of uitzoomen" -#: ../src/verbs.cpp:2615 +#: ../src/verbs.cpp:2674 msgid "Measurement tool" msgstr "Meetlat" -#: ../src/verbs.cpp:2616 +#: ../src/verbs.cpp:2675 msgctxt "ContextVerb" msgid "Dropper" msgstr "Pipet" -#: ../src/verbs.cpp:2617 +#: ../src/verbs.cpp:2676 #: ../src/widgets/sp-color-notebook.cpp:411 msgid "Pick colors from image" msgstr "Kleur uitkiezen in de afbeelding" -#: ../src/verbs.cpp:2618 +#: ../src/verbs.cpp:2677 msgctxt "ContextVerb" msgid "Connector" msgstr "Verbinding" -#: ../src/verbs.cpp:2619 +#: ../src/verbs.cpp:2678 msgid "Create diagram connectors" msgstr "Diagramverbindingen maken" -#: ../src/verbs.cpp:2620 +#: ../src/verbs.cpp:2679 msgctxt "ContextVerb" msgid "Paint Bucket" msgstr "Verfemmer" -#: ../src/verbs.cpp:2621 +#: ../src/verbs.cpp:2680 msgid "Fill bounded areas" msgstr "Afgebakende gebieden vullen" -#: ../src/verbs.cpp:2622 +#: ../src/verbs.cpp:2681 msgctxt "ContextVerb" msgid "LPE Edit" msgstr "Padeffect wijzigen" -#: ../src/verbs.cpp:2623 +#: ../src/verbs.cpp:2682 msgid "Edit Path Effect parameters" msgstr "Wijzig padeffectparameters" -#: ../src/verbs.cpp:2624 +#: ../src/verbs.cpp:2683 msgctxt "ContextVerb" msgid "Eraser" msgstr "Gom" -#: ../src/verbs.cpp:2625 +#: ../src/verbs.cpp:2684 msgid "Erase existing paths" msgstr "Bestaande pagen verwijderen" -#: ../src/verbs.cpp:2626 +#: ../src/verbs.cpp:2685 msgctxt "ContextVerb" msgid "LPE Tool" msgstr "Padeffecten" -#: ../src/verbs.cpp:2627 +#: ../src/verbs.cpp:2686 msgid "Do geometric constructions" msgstr "Geometrische constructies maken" #. Tool prefs -#: ../src/verbs.cpp:2629 +#: ../src/verbs.cpp:2688 msgid "Selector Preferences" msgstr "Selectievoorkeuren" -#: ../src/verbs.cpp:2630 +#: ../src/verbs.cpp:2689 msgid "Open Preferences for the Selector tool" msgstr "Voorkeuren voor het selectiegereedschap openen" -#: ../src/verbs.cpp:2631 +#: ../src/verbs.cpp:2690 msgid "Node Tool Preferences" msgstr "Knooppuntvoorkeuren" -#: ../src/verbs.cpp:2632 +#: ../src/verbs.cpp:2691 msgid "Open Preferences for the Node tool" msgstr "Voorkeuren voor het knooppuntengereedschap openen" -#: ../src/verbs.cpp:2633 +#: ../src/verbs.cpp:2692 msgid "Tweak Tool Preferences" msgstr "Boetseervoorkeuren" -#: ../src/verbs.cpp:2634 +#: ../src/verbs.cpp:2693 msgid "Open Preferences for the Tweak tool" msgstr "Voorkeuren voor het boetseergereedschap openen" -#: ../src/verbs.cpp:2635 +#: ../src/verbs.cpp:2694 msgid "Spray Tool Preferences" msgstr "Verstuifvoorkeuren" -#: ../src/verbs.cpp:2636 +#: ../src/verbs.cpp:2695 msgid "Open Preferences for the Spray tool" msgstr "Voorkeuren voor het verstuifgereedschap openen" -#: ../src/verbs.cpp:2637 +#: ../src/verbs.cpp:2696 msgid "Rectangle Preferences" msgstr "Voorkeuren voor rechthoeken" -#: ../src/verbs.cpp:2638 +#: ../src/verbs.cpp:2697 msgid "Open Preferences for the Rectangle tool" msgstr "Voorkeuren voor het rechthoekgereedschap openen" -#: ../src/verbs.cpp:2639 +#: ../src/verbs.cpp:2698 msgid "3D Box Preferences" msgstr "Voorkeuren voor 3D-kubus" -#: ../src/verbs.cpp:2640 +#: ../src/verbs.cpp:2699 msgid "Open Preferences for the 3D Box tool" msgstr "Voorkeuren voor het 3D-kubusgereedschap openen" -#: ../src/verbs.cpp:2641 +#: ../src/verbs.cpp:2700 msgid "Ellipse Preferences" msgstr "Voorkeuren voor ellipsen" -#: ../src/verbs.cpp:2642 +#: ../src/verbs.cpp:2701 msgid "Open Preferences for the Ellipse tool" msgstr "Voorkeuren voor het ellipsgereedschap openen" -#: ../src/verbs.cpp:2643 +#: ../src/verbs.cpp:2702 msgid "Star Preferences" msgstr "Voorkeuren voor sterren" -#: ../src/verbs.cpp:2644 +#: ../src/verbs.cpp:2703 msgid "Open Preferences for the Star tool" msgstr "Voorkeuren voor het stergereedschap openen" -#: ../src/verbs.cpp:2645 +#: ../src/verbs.cpp:2704 msgid "Spiral Preferences" msgstr "Voorkeuren voor spiralen" -#: ../src/verbs.cpp:2646 +#: ../src/verbs.cpp:2705 msgid "Open Preferences for the Spiral tool" msgstr "Voorkeuren voor het spiraalgereedschap openen" -#: ../src/verbs.cpp:2647 +#: ../src/verbs.cpp:2706 msgid "Pencil Preferences" msgstr "Potloodvoorkeuren" -#: ../src/verbs.cpp:2648 +#: ../src/verbs.cpp:2707 msgid "Open Preferences for the Pencil tool" msgstr "Voorkeuren voor het potloodgereedschap openen" -#: ../src/verbs.cpp:2649 +#: ../src/verbs.cpp:2708 msgid "Pen Preferences" msgstr "Penvoorkeuren" -#: ../src/verbs.cpp:2650 +#: ../src/verbs.cpp:2709 msgid "Open Preferences for the Pen tool" msgstr "Voorkeuren voor het pengereedschap openen" -#: ../src/verbs.cpp:2651 +#: ../src/verbs.cpp:2710 msgid "Calligraphic Preferences" msgstr "Kalligrafievoorkeuren" -#: ../src/verbs.cpp:2652 +#: ../src/verbs.cpp:2711 msgid "Open Preferences for the Calligraphy tool" msgstr "Voorkeuren voor het kalligrafiegereedschap openen" -#: ../src/verbs.cpp:2653 +#: ../src/verbs.cpp:2712 msgid "Text Preferences" msgstr "Tekstvoorkeuren" -#: ../src/verbs.cpp:2654 +#: ../src/verbs.cpp:2713 msgid "Open Preferences for the Text tool" msgstr "Voorkeuren voor het tekstgereedschap openen" -#: ../src/verbs.cpp:2655 +#: ../src/verbs.cpp:2714 msgid "Gradient Preferences" msgstr "Kleurverloopvoorkeuren" -#: ../src/verbs.cpp:2656 +#: ../src/verbs.cpp:2715 msgid "Open Preferences for the Gradient tool" msgstr "Voorkeuren voor het kleurverloopgereedschap openen" -#: ../src/verbs.cpp:2657 +#: ../src/verbs.cpp:2716 msgid "Mesh Preferences" msgstr "Meshvoorkeuren" -#: ../src/verbs.cpp:2658 +#: ../src/verbs.cpp:2717 msgid "Open Preferences for the Mesh tool" msgstr "Voorkeuren voor het meshgereedschap openen" -#: ../src/verbs.cpp:2659 +#: ../src/verbs.cpp:2718 msgid "Zoom Preferences" msgstr "Zoomvoorkeuren" -#: ../src/verbs.cpp:2660 +#: ../src/verbs.cpp:2719 msgid "Open Preferences for the Zoom tool" msgstr "Voorkeuren voor het zoomgereedschap openen" -#: ../src/verbs.cpp:2661 +#: ../src/verbs.cpp:2720 msgid "Measure Preferences" msgstr "Meetlatvoorkeuren" -#: ../src/verbs.cpp:2662 +#: ../src/verbs.cpp:2721 msgid "Open Preferences for the Measure tool" msgstr "Voorkeuren voor de meetlat openen" -#: ../src/verbs.cpp:2663 +#: ../src/verbs.cpp:2722 msgid "Dropper Preferences" msgstr "Pipetvoorkeuren" -#: ../src/verbs.cpp:2664 +#: ../src/verbs.cpp:2723 msgid "Open Preferences for the Dropper tool" msgstr "Voorkeuren voor het pipetgereedschap openen" -#: ../src/verbs.cpp:2665 +#: ../src/verbs.cpp:2724 msgid "Connector Preferences" msgstr "Voorkeuren voor verbindingen" -#: ../src/verbs.cpp:2666 +#: ../src/verbs.cpp:2725 msgid "Open Preferences for the Connector tool" msgstr "Voorkeuren voor het verbindingsgereedschap openen" -#: ../src/verbs.cpp:2667 +#: ../src/verbs.cpp:2726 msgid "Paint Bucket Preferences" msgstr "Verfemmervoorkeuren" -#: ../src/verbs.cpp:2668 +#: ../src/verbs.cpp:2727 msgid "Open Preferences for the Paint Bucket tool" msgstr "Voorkeuren voor het verfemmergereedschap openen" -#: ../src/verbs.cpp:2669 +#: ../src/verbs.cpp:2728 msgid "Eraser Preferences" msgstr "Gomvoorkeuren" -#: ../src/verbs.cpp:2670 +#: ../src/verbs.cpp:2729 msgid "Open Preferences for the Eraser tool" msgstr "Voorkeuren voor de gom openen" -#: ../src/verbs.cpp:2671 +#: ../src/verbs.cpp:2730 msgid "LPE Tool Preferences" msgstr "Padeffectvoorkeuren" -#: ../src/verbs.cpp:2672 +#: ../src/verbs.cpp:2731 msgid "Open Preferences for the LPETool tool" msgstr "Voorkeuren voor het padeffectengereedschap openen" #. Zoom/View -#: ../src/verbs.cpp:2674 +#: ../src/verbs.cpp:2733 msgid "Zoom In" msgstr "_Inzoomen" -#: ../src/verbs.cpp:2674 +#: ../src/verbs.cpp:2733 msgid "Zoom in" msgstr "Inzoomen" -#: ../src/verbs.cpp:2675 +#: ../src/verbs.cpp:2734 msgid "Zoom Out" msgstr "_Uitzoomen" -#: ../src/verbs.cpp:2675 +#: ../src/verbs.cpp:2734 msgid "Zoom out" msgstr "Uitzoomen" -#: ../src/verbs.cpp:2676 +#: ../src/verbs.cpp:2735 msgid "_Rulers" msgstr "_Linialen" -#: ../src/verbs.cpp:2676 +#: ../src/verbs.cpp:2735 msgid "Show or hide the canvas rulers" msgstr "Linialen van het canvas weergeven of verbergen" -#: ../src/verbs.cpp:2677 +#: ../src/verbs.cpp:2736 msgid "Scroll_bars" msgstr "Schuif_balken" -#: ../src/verbs.cpp:2677 +#: ../src/verbs.cpp:2736 msgid "Show or hide the canvas scrollbars" msgstr "Schuifbalken weergeven of verbergen" -#: ../src/verbs.cpp:2678 +#: ../src/verbs.cpp:2737 msgid "_Grid" msgstr "_Raster" -#: ../src/verbs.cpp:2678 +#: ../src/verbs.cpp:2737 msgid "Show or hide the grid" msgstr "Raster weergeven of verbergen" -#: ../src/verbs.cpp:2679 +#: ../src/verbs.cpp:2738 msgid "G_uides" msgstr "_Hulplijnen" -#: ../src/verbs.cpp:2679 +#: ../src/verbs.cpp:2738 msgid "Show or hide guides (drag from a ruler to create a guide)" msgstr "Hulplijnen weergeven of verbergen (sleep vanaf een liniaal om een hulplijn te maken" -#: ../src/verbs.cpp:2680 +#: ../src/verbs.cpp:2739 msgid "Enable snapping" msgstr "Kleven activeren" -#: ../src/verbs.cpp:2681 +#: ../src/verbs.cpp:2740 msgid "_Commands Bar" msgstr "_Opdrachtenbalk" -#: ../src/verbs.cpp:2681 +#: ../src/verbs.cpp:2740 msgid "Show or hide the Commands bar (under the menu)" msgstr "Opdrachtenbalk weergeven of verbergen (onder de menubalk)" -#: ../src/verbs.cpp:2682 +#: ../src/verbs.cpp:2741 msgid "Sn_ap Controls Bar" msgstr "Klee_findicatoren" -#: ../src/verbs.cpp:2682 +#: ../src/verbs.cpp:2741 msgid "Show or hide the snapping controls" msgstr "Balk met kleefinstellingen weergeven of verbergen" -#: ../src/verbs.cpp:2683 +#: ../src/verbs.cpp:2742 msgid "T_ool Controls Bar" msgstr "G_ereedschapsdetails" -#: ../src/verbs.cpp:2683 +#: ../src/verbs.cpp:2742 msgid "Show or hide the Tool Controls bar" msgstr "Gereedschapsdetailsbalk weergeven of verbergen" -#: ../src/verbs.cpp:2684 +#: ../src/verbs.cpp:2743 msgid "_Toolbox" msgstr "_Gereedschappen" -#: ../src/verbs.cpp:2684 +#: ../src/verbs.cpp:2743 msgid "Show or hide the main toolbox (on the left)" msgstr "Gereedschappenbalk weergeven of verbergen (aan de linkerzijde)" -#: ../src/verbs.cpp:2685 +#: ../src/verbs.cpp:2744 msgid "_Palette" msgstr "_Palet" -#: ../src/verbs.cpp:2685 +#: ../src/verbs.cpp:2744 msgid "Show or hide the color palette" msgstr "Paletbalk weergeven of verbergen (onderaan)" -#: ../src/verbs.cpp:2686 +#: ../src/verbs.cpp:2745 msgid "_Statusbar" msgstr "_Statusbalk" -#: ../src/verbs.cpp:2686 +#: ../src/verbs.cpp:2745 msgid "Show or hide the statusbar (at the bottom of the window)" msgstr "Statusbalk weergeven of verbergen (onderaan)" -#: ../src/verbs.cpp:2687 +#: ../src/verbs.cpp:2746 msgid "Nex_t Zoom" msgstr "V_olgende zoomniveau" -#: ../src/verbs.cpp:2687 +#: ../src/verbs.cpp:2746 msgid "Next zoom (from the history of zooms)" msgstr "Volgende zoomniveau (uit de zoomgeschiedenis)" -#: ../src/verbs.cpp:2689 +#: ../src/verbs.cpp:2748 msgid "Pre_vious Zoom" msgstr "Vo_rige zoomniveau" -#: ../src/verbs.cpp:2689 +#: ../src/verbs.cpp:2748 msgid "Previous zoom (from the history of zooms)" msgstr "Vorige zoomniveau (uit de zoomgeschiedenis)" -#: ../src/verbs.cpp:2691 +#: ../src/verbs.cpp:2750 msgid "Zoom 1:_1" msgstr "Zoom 1:_1" -#: ../src/verbs.cpp:2691 +#: ../src/verbs.cpp:2750 msgid "Zoom to 1:1" msgstr "Ware grootte" -#: ../src/verbs.cpp:2693 +#: ../src/verbs.cpp:2752 msgid "Zoom 1:_2" msgstr "Zoom 1:_2" -#: ../src/verbs.cpp:2693 +#: ../src/verbs.cpp:2752 msgid "Zoom to 1:2" msgstr "Halve grootte" -#: ../src/verbs.cpp:2695 +#: ../src/verbs.cpp:2754 msgid "_Zoom 2:1" msgstr "_Zoom 2:1" -#: ../src/verbs.cpp:2695 +#: ../src/verbs.cpp:2754 msgid "Zoom to 2:1" msgstr "Dubbele grootte" -#: ../src/verbs.cpp:2698 +#: ../src/verbs.cpp:2757 msgid "_Fullscreen" msgstr "_Volledig scherm" -#: ../src/verbs.cpp:2698 -#: ../src/verbs.cpp:2700 +#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2759 msgid "Stretch this document window to full screen" msgstr "Dit documentvenster vergroten tot de volledige schermgrootte" -#: ../src/verbs.cpp:2700 +#: ../src/verbs.cpp:2759 msgid "Fullscreen & Focus Mode" msgstr "Volledig scherm en focus modus" -#: ../src/verbs.cpp:2703 +#: ../src/verbs.cpp:2762 msgid "Toggle _Focus Mode" msgstr "_Focus modus aan/uitzetten" -#: ../src/verbs.cpp:2703 +#: ../src/verbs.cpp:2762 msgid "Remove excess toolbars to focus on drawing" msgstr "Overtollige balken verwijderen om op het tekenen te focussen" -#: ../src/verbs.cpp:2705 +#: ../src/verbs.cpp:2764 msgid "Duplic_ate Window" msgstr "Venster _dupliceren" -#: ../src/verbs.cpp:2705 +#: ../src/verbs.cpp:2764 msgid "Open a new window with the same document" msgstr "Een nieuw venster met hetzelfde document openen" -#: ../src/verbs.cpp:2707 +#: ../src/verbs.cpp:2766 msgid "_New View Preview" msgstr "_Nieuw voorbeeld weergeven" -#: ../src/verbs.cpp:2708 +#: ../src/verbs.cpp:2767 msgid "New View Preview" msgstr "Nieuw voorbeeld weergeven" #. "view_new_preview" -#: ../src/verbs.cpp:2710 -#: ../src/verbs.cpp:2718 +#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2777 msgid "_Normal" msgstr "_Normaal" -#: ../src/verbs.cpp:2711 +#: ../src/verbs.cpp:2770 msgid "Switch to normal display mode" msgstr "Naar normale weergavemodus overschakelen" -#: ../src/verbs.cpp:2712 +#: ../src/verbs.cpp:2771 msgid "No _Filters" msgstr "Geen _filters" -#: ../src/verbs.cpp:2713 +#: ../src/verbs.cpp:2772 msgid "Switch to normal display without filters" msgstr "Naar normale weergavemodus zonder filters overschakelen" -#: ../src/verbs.cpp:2714 +#: ../src/verbs.cpp:2773 msgid "_Outline" msgstr "_Contour" -#: ../src/verbs.cpp:2715 +#: ../src/verbs.cpp:2774 msgid "Switch to outline (wireframe) display mode" msgstr "Naar contourmodus voor weergave (draadmodel) overschakelen" #. new ZoomVerb(SP_VERB_VIEW_COLOR_MODE_PRINT_COLORS_PREVIEW, "ViewColorModePrintColorsPreview", N_("_Print Colors Preview"), #. N_("Switch to print colors preview mode"), NULL), -#: ../src/verbs.cpp:2716 -#: ../src/verbs.cpp:2724 +#: ../src/verbs.cpp:2775 +#: ../src/verbs.cpp:2783 msgid "_Toggle" msgstr "_Schakelen" -#: ../src/verbs.cpp:2717 +#: ../src/verbs.cpp:2776 msgid "Toggle between normal and outline display modes" msgstr "Tussen normale en contourweergavemodus schakelen" -#: ../src/verbs.cpp:2719 +#: ../src/verbs.cpp:2778 msgid "Switch to normal color display mode" msgstr "Naar normale kleurweergavemodus schakelen" -#: ../src/verbs.cpp:2720 +#: ../src/verbs.cpp:2779 msgid "_Grayscale" msgstr "_Grijstinten" -#: ../src/verbs.cpp:2721 +#: ../src/verbs.cpp:2780 msgid "Switch to grayscale display mode" msgstr "Naar weergavemodus grijswaarden schakelen" -#: ../src/verbs.cpp:2725 +#: ../src/verbs.cpp:2784 msgid "Toggle between normal and grayscale color display modes" msgstr "Tussen kleurweergavenmodi normaal en grijswaarden schakelen" -#: ../src/verbs.cpp:2727 +#: ../src/verbs.cpp:2786 msgid "Color-managed view" msgstr "Kleurmanagementmodus" -#: ../src/verbs.cpp:2728 +#: ../src/verbs.cpp:2787 msgid "Toggle color-managed display for this document window" msgstr "Kleurmanagementweergave veranderen voor dit documentvenster" -#: ../src/verbs.cpp:2730 +#: ../src/verbs.cpp:2789 msgid "Ico_n Preview..." msgstr "_Pictogramvoorbeeld..." -#: ../src/verbs.cpp:2731 +#: ../src/verbs.cpp:2790 msgid "Open a window to preview objects at different icon resolutions" msgstr "Van objecten pictogramvoorbeelden tonen in verschillende resoluties" -#: ../src/verbs.cpp:2733 +#: ../src/verbs.cpp:2792 msgid "Zoom to fit page in window" msgstr "De hele pagina in het scherm laten passen" -#: ../src/verbs.cpp:2734 +#: ../src/verbs.cpp:2793 msgid "Page _Width" msgstr "Pagina_breedte" -#: ../src/verbs.cpp:2735 +#: ../src/verbs.cpp:2794 msgid "Zoom to fit page width in window" msgstr "De paginabreedte in het scherm laten passen" -#: ../src/verbs.cpp:2737 +#: ../src/verbs.cpp:2796 msgid "Zoom to fit drawing in window" msgstr "De hele tekening in het scherm laten passen" -#: ../src/verbs.cpp:2739 +#: ../src/verbs.cpp:2798 msgid "Zoom to fit selection in window" msgstr "Selectie in het scherm laten passen" #. Dialogs -#: ../src/verbs.cpp:2742 +#: ../src/verbs.cpp:2801 msgid "P_references..." msgstr "Voo_rkeuren..." -#: ../src/verbs.cpp:2743 +#: ../src/verbs.cpp:2802 msgid "Edit global Inkscape preferences" msgstr "Algemene Inkscapevoorkeuren instellen" -#: ../src/verbs.cpp:2744 +#: ../src/verbs.cpp:2803 msgid "_Document Properties..." msgstr "Document_eigenschappen..." -#: ../src/verbs.cpp:2745 +#: ../src/verbs.cpp:2804 msgid "Edit properties of this document (to be saved with the document)" msgstr "Documenteigenschappen instellen (worden opgeslagen in dit document)" -#: ../src/verbs.cpp:2746 +#: ../src/verbs.cpp:2805 msgid "Document _Metadata..." msgstr "Document_metagegevens..." -#: ../src/verbs.cpp:2747 +#: ../src/verbs.cpp:2806 msgid "Edit document metadata (to be saved with the document)" msgstr "Documentmetagegevens bewerken (worden opgeslagen in dit document)" -#: ../src/verbs.cpp:2749 +#: ../src/verbs.cpp:2808 msgid "Edit objects' colors, gradients, arrowheads, and other fill and stroke properties..." msgstr "Kleuren, kleurverlopen, pijlen en andere lijn- en vullingseigenschappen van objecten bewerken..." -#: ../src/verbs.cpp:2750 +#: ../src/verbs.cpp:2809 msgid "Gl_yphs..." msgstr "T_ekens..." -#: ../src/verbs.cpp:2751 +#: ../src/verbs.cpp:2810 msgid "Select characters from a glyphs palette" msgstr "Karakters van een tekenpalet kiezen" #. TRANSLATORS: "Swatches" means: color samples -#: ../src/verbs.cpp:2753 +#: ../src/verbs.cpp:2812 msgid "S_watches..." msgstr "_Paletten..." -#: ../src/verbs.cpp:2754 +#: ../src/verbs.cpp:2813 msgid "Select colors from a swatches palette" msgstr "Kleuren kiezen van een palet" -#: ../src/verbs.cpp:2755 +#: ../src/verbs.cpp:2814 msgid "S_ymbols..." msgstr "_Symbolen..." -#: ../src/verbs.cpp:2756 +#: ../src/verbs.cpp:2815 msgid "Select symbol from a symbols palette" msgstr "Symbool selecteren van symboolpalet" -#: ../src/verbs.cpp:2757 +#: ../src/verbs.cpp:2816 msgid "Transfor_m..." msgstr "_Transformeren..." -#: ../src/verbs.cpp:2758 +#: ../src/verbs.cpp:2817 msgid "Precisely control objects' transformations" msgstr "Transformaties op een object gedetailleerd instellen" -#: ../src/verbs.cpp:2759 +#: ../src/verbs.cpp:2818 msgid "_Align and Distribute..." msgstr "_Uitlijnen en verdelen..." -#: ../src/verbs.cpp:2760 +#: ../src/verbs.cpp:2819 msgid "Align and distribute objects" msgstr "Objecten uitlijnen en verdelen" -#: ../src/verbs.cpp:2761 +#: ../src/verbs.cpp:2820 msgid "_Spray options..." msgstr "_Verstuifopties..." -#: ../src/verbs.cpp:2762 +#: ../src/verbs.cpp:2821 msgid "Some options for the spray" msgstr "Enkele opties voor de verstuiver" -#: ../src/verbs.cpp:2763 +#: ../src/verbs.cpp:2822 msgid "Undo _History..." msgstr "Gesc_hiedenis..." -#: ../src/verbs.cpp:2764 +#: ../src/verbs.cpp:2823 msgid "Undo History" msgstr "Geschiedenis" -#: ../src/verbs.cpp:2766 +#: ../src/verbs.cpp:2825 msgid "View and select font family, font size and other text properties" msgstr "Lettertype, lettergrootte, letterstijl en andere teksteigenschappen tonen en instellen" -#: ../src/verbs.cpp:2767 +#: ../src/verbs.cpp:2826 msgid "_XML Editor..." msgstr "_XML-editor..." -#: ../src/verbs.cpp:2768 +#: ../src/verbs.cpp:2827 msgid "View and edit the XML tree of the document" msgstr "De XML-boom van het document bekijken en bewerken" -#: ../src/verbs.cpp:2769 +#: ../src/verbs.cpp:2828 msgid "_Find/Replace..." msgstr "_Zoeken/vervangen..." -#: ../src/verbs.cpp:2770 +#: ../src/verbs.cpp:2829 msgid "Find objects in document" msgstr "Objecten in het document zoeken" -#: ../src/verbs.cpp:2771 +#: ../src/verbs.cpp:2830 msgid "Find and _Replace Text..." msgstr "Tekst zoeken en _vervangen..." -#: ../src/verbs.cpp:2772 +#: ../src/verbs.cpp:2831 msgid "Find and replace text in document" msgstr "Tekst zoeken en vervangen in het document" -#: ../src/verbs.cpp:2774 +#: ../src/verbs.cpp:2833 msgid "Check spelling of text in document" msgstr "De spelling van de tekst in het document controleren" -#: ../src/verbs.cpp:2775 +#: ../src/verbs.cpp:2834 msgid "_Messages..." msgstr "_Berichten..." -#: ../src/verbs.cpp:2776 +#: ../src/verbs.cpp:2835 msgid "View debug messages" msgstr "Debug-meldingen bekijken" -#: ../src/verbs.cpp:2777 -msgid "S_cripts..." -msgstr "S_cripts..." - -#: ../src/verbs.cpp:2778 -msgid "Run scripts" -msgstr "Scripts uitvoeren" - -#: ../src/verbs.cpp:2779 +#: ../src/verbs.cpp:2836 msgid "Show/Hide D_ialogs" msgstr "_Dialogen weergeven/verbergen" -#: ../src/verbs.cpp:2780 +#: ../src/verbs.cpp:2837 msgid "Show or hide all open dialogs" msgstr "Alle actieve dialogen verbergen of weergeven" -#: ../src/verbs.cpp:2781 +#: ../src/verbs.cpp:2838 msgid "Create Tiled Clones..." msgstr "_Tegelen met klonen..." -#: ../src/verbs.cpp:2782 +#: ../src/verbs.cpp:2839 msgid "Create multiple clones of selected object, arranging them into a pattern or scattering" msgstr "Van het geselecteerde object meerdere klonen maken en deze rangschikken of verstrooien" -#: ../src/verbs.cpp:2783 +#: ../src/verbs.cpp:2840 msgid "_Object attributes..." msgstr "Object_eigenschappen..." -#: ../src/verbs.cpp:2784 +#: ../src/verbs.cpp:2841 msgid "Edit the object attributes..." msgstr "Objectattributen bewerken..." -#: ../src/verbs.cpp:2786 +#: ../src/verbs.cpp:2843 msgid "Edit the ID, locked and visible status, and other object properties" msgstr "Object-ID, vergrendelings- en zichtbaarheidsstatus, en andere objecteigenschappen bewerken" -#: ../src/verbs.cpp:2787 +#: ../src/verbs.cpp:2844 msgid "_Input Devices..." msgstr "_Invoerapparaten..." -#: ../src/verbs.cpp:2788 +#: ../src/verbs.cpp:2845 msgid "Configure extended input devices, such as a graphics tablet" msgstr "Extra invoerapparaten instellen, zoals een tekentablet" -#: ../src/verbs.cpp:2789 +#: ../src/verbs.cpp:2846 msgid "_Extensions..." msgstr "_Uitbreidingen..." -#: ../src/verbs.cpp:2790 +#: ../src/verbs.cpp:2847 msgid "Query information about extensions" msgstr "Informatie over uitbreidingen opvragen" -#: ../src/verbs.cpp:2791 +#: ../src/verbs.cpp:2848 msgid "Layer_s..." msgstr "L_agen..." -#: ../src/verbs.cpp:2792 +#: ../src/verbs.cpp:2849 msgid "View Layers" msgstr "Informatie over de aanwezige lagen tonen" -#: ../src/verbs.cpp:2793 +#: ../src/verbs.cpp:2850 msgid "Path E_ffects ..." msgstr "P_adeffecten..." -#: ../src/verbs.cpp:2794 +#: ../src/verbs.cpp:2851 msgid "Manage, edit, and apply path effects" msgstr "Padeffecten beheren, wijzigen en toepassen" -#: ../src/verbs.cpp:2795 +#: ../src/verbs.cpp:2852 msgid "Filter _Editor..." msgstr "Filter _editor..." -#: ../src/verbs.cpp:2796 +#: ../src/verbs.cpp:2853 msgid "Manage, edit, and apply SVG filters" msgstr "SVG-filters beheren, wijzigen en toepassen" -#: ../src/verbs.cpp:2797 +#: ../src/verbs.cpp:2854 msgid "SVG Font Editor..." msgstr "SVG-lettertypen editor..." -#: ../src/verbs.cpp:2798 +#: ../src/verbs.cpp:2855 msgid "Edit SVG fonts" msgstr "SVG-lettertypen bewerken" -#: ../src/verbs.cpp:2799 +#: ../src/verbs.cpp:2856 msgid "Print Colors..." msgstr "Afdrukkleuren..." -#: ../src/verbs.cpp:2800 +#: ../src/verbs.cpp:2857 msgid "Select which color separations to render in Print Colors Preview rendermode" msgstr "Selecteer welke kleuren gerenderd worden in de weergavemodus Afdrukvoorbeeld kleuren" -#: ../src/verbs.cpp:2801 +#: ../src/verbs.cpp:2858 msgid "_Export PNG Image..." msgstr "PNG-afbeelding _exporteren..." -#: ../src/verbs.cpp:2802 +#: ../src/verbs.cpp:2859 msgid "Export this document or a selection as a PNG image" msgstr "Document of selectie als PNG-afbeelding exporteren" #. Help -#: ../src/verbs.cpp:2804 +#: ../src/verbs.cpp:2861 msgid "About E_xtensions" msgstr "Over _uitbreidingen" -#: ../src/verbs.cpp:2805 +#: ../src/verbs.cpp:2862 msgid "Information on Inkscape extensions" msgstr "Informatie over Inkscape-uitbreidingen tonen" -#: ../src/verbs.cpp:2806 +#: ../src/verbs.cpp:2863 msgid "About _Memory" msgstr "_Geheugengebruik" -#: ../src/verbs.cpp:2807 +#: ../src/verbs.cpp:2864 msgid "Memory usage information" msgstr "Informatie over geheugengebruik tonen" -#: ../src/verbs.cpp:2808 +#: ../src/verbs.cpp:2865 msgid "_About Inkscape" msgstr "_Over Inkscape" -#: ../src/verbs.cpp:2809 +#: ../src/verbs.cpp:2866 msgid "Inkscape version, authors, license" msgstr "Inkscapeversie, -auteurs, en -licentie tonen" #. new HelpVerb(SP_VERB_SHOW_LICENSE, "ShowLicense", N_("_License"), #. N_("Distribution terms"), /*"show_license"*/"inkscape_options"), #. Tutorials -#: ../src/verbs.cpp:2814 +#: ../src/verbs.cpp:2871 msgid "Inkscape: _Basic" msgstr "Inkscape: _Basis" -#: ../src/verbs.cpp:2815 +#: ../src/verbs.cpp:2872 msgid "Getting started with Inkscape" msgstr "Aan de slag met Inkscape" #. "tutorial_basic" -#: ../src/verbs.cpp:2816 +#: ../src/verbs.cpp:2873 msgid "Inkscape: _Shapes" msgstr "Inkscape: _Vormen" -#: ../src/verbs.cpp:2817 +#: ../src/verbs.cpp:2874 msgid "Using shape tools to create and edit shapes" msgstr "Het gebruik van het vormgereedschap om vormen te maken en te wijzigen" -#: ../src/verbs.cpp:2818 +#: ../src/verbs.cpp:2875 msgid "Inkscape: _Advanced" msgstr "Inkscape: _Geavanceerd" -#: ../src/verbs.cpp:2819 +#: ../src/verbs.cpp:2876 msgid "Advanced Inkscape topics" msgstr "Geavanceerde Inkscape-onderwerpen" #. "tutorial_advanced" #. TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) -#: ../src/verbs.cpp:2821 +#: ../src/verbs.cpp:2878 msgid "Inkscape: T_racing" msgstr "Inkscape: _Overtrekken" -#: ../src/verbs.cpp:2822 +#: ../src/verbs.cpp:2879 msgid "Using bitmap tracing" msgstr "Bitmaps 'overtrekken' om een lijntekening te krijgen" #. "tutorial_tracing" -#: ../src/verbs.cpp:2823 +#: ../src/verbs.cpp:2880 msgid "Inkscape: _Calligraphy" msgstr "Inkscape: _Kalligrafie" -#: ../src/verbs.cpp:2824 +#: ../src/verbs.cpp:2881 msgid "Using the Calligraphy pen tool" msgstr "Het gebruik van het kalligrafiegereedschap" -#: ../src/verbs.cpp:2825 +#: ../src/verbs.cpp:2882 msgid "Inkscape: _Interpolate" msgstr "Inkscape: _Interpoleren" -#: ../src/verbs.cpp:2826 +#: ../src/verbs.cpp:2883 msgid "Using the interpolate extension" msgstr "Het gebruik van de extensie interpoleren" #. "tutorial_interpolate" -#: ../src/verbs.cpp:2827 +#: ../src/verbs.cpp:2884 msgid "_Elements of Design" msgstr "Ont_werpbeginselen" -#: ../src/verbs.cpp:2828 +#: ../src/verbs.cpp:2885 msgid "Principles of design in the tutorial form" msgstr "Beginselen van een ontwerp in de vorm van een handleiding" #. "tutorial_design" -#: ../src/verbs.cpp:2829 +#: ../src/verbs.cpp:2886 msgid "_Tips and Tricks" msgstr "_Tips en trucs" -#: ../src/verbs.cpp:2830 +#: ../src/verbs.cpp:2887 msgid "Miscellaneous tips and tricks" msgstr "Verschillende tips en trucs" #. "tutorial_tips" #. Effect -- renamed Extension -#: ../src/verbs.cpp:2833 +#: ../src/verbs.cpp:2890 msgid "Previous Exte_nsion" msgstr "_Vorige uitbreiding" -#: ../src/verbs.cpp:2834 +#: ../src/verbs.cpp:2891 msgid "Repeat the last extension with the same settings" msgstr "De laatste uitbreiding met dezelfde instellingen herhalen" -#: ../src/verbs.cpp:2835 +#: ../src/verbs.cpp:2892 msgid "_Previous Extension Settings..." msgstr "_Instellingen van de vorige uitbreiding..." -#: ../src/verbs.cpp:2836 +#: ../src/verbs.cpp:2893 msgid "Repeat the last extension with new settings" msgstr "De laatste uitbreiding met nieuwe instellingen herhalen" -#: ../src/verbs.cpp:2840 +#: ../src/verbs.cpp:2897 msgid "Fit the page to the current selection" msgstr "Paginaformaat aan selectie aanpassen" -#: ../src/verbs.cpp:2842 +#: ../src/verbs.cpp:2899 msgid "Fit the page to the drawing" msgstr "Paginaformaat aan tekening aanpassen" -#: ../src/verbs.cpp:2844 +#: ../src/verbs.cpp:2901 msgid "Fit the page to the current selection or the drawing if there is no selection" msgstr "Paginaformaat aanpassen aan huidige selectie of tekening aan als er geen selectie is" #. LockAndHide -#: ../src/verbs.cpp:2846 +#: ../src/verbs.cpp:2903 msgid "Unlock All" msgstr "Alles ontgrendelen" -#: ../src/verbs.cpp:2848 +#: ../src/verbs.cpp:2905 msgid "Unlock All in All Layers" msgstr "Alles ontgrendelen in alle lagen" -#: ../src/verbs.cpp:2850 +#: ../src/verbs.cpp:2907 msgid "Unhide All" msgstr "Alles tonen" -#: ../src/verbs.cpp:2852 +#: ../src/verbs.cpp:2909 msgid "Unhide All in All Layers" msgstr "Alles tonen in alle lagen" -#: ../src/verbs.cpp:2856 +#: ../src/verbs.cpp:2913 msgid "Link an ICC color profile" msgstr "Een ICC-kleurprofiel linken" -#: ../src/verbs.cpp:2857 +#: ../src/verbs.cpp:2914 msgid "Remove Color Profile" msgstr "Kleurprofiel verwijderen" -#: ../src/verbs.cpp:2858 +#: ../src/verbs.cpp:2915 msgid "Remove a linked ICC color profile" msgstr "Een gelinkt ICC-kleurprofiel verwijderen" -#: ../src/verbs.cpp:2881 -#: ../src/verbs.cpp:2882 +#: ../src/verbs.cpp:2918 +#, fuzzy +msgid "Add External Script" +msgstr "Extern script toevoegen..." + +#: ../src/verbs.cpp:2918 +#, fuzzy +msgid "Add an external script" +msgstr "Extern script toevoegen..." + +#: ../src/verbs.cpp:2920 +#, fuzzy +msgid "Add Embedded Script" +msgstr "Ingevoegd script toevoegen..." + +#: ../src/verbs.cpp:2920 +#, fuzzy +msgid "Add an embedded script" +msgstr "Ingevoegd script toevoegen..." + +#: ../src/verbs.cpp:2922 +#, fuzzy +msgid "Edit Embedded Script" +msgstr "Ingevoegd script bewerken" + +#: ../src/verbs.cpp:2922 +#, fuzzy +msgid "Edit an embedded script" +msgstr "Ingevoegd script bewerken" + +#: ../src/verbs.cpp:2924 +#, fuzzy +msgid "Remove External Script" +msgstr "Extern script verwijderen" + +#: ../src/verbs.cpp:2924 +#, fuzzy +msgid "Remove an external script" +msgstr "Extern script verwijderen" + +#: ../src/verbs.cpp:2926 +#, fuzzy +msgid "Remove Embedded Script" +msgstr "Ingevoegd script verwijderen" + +#: ../src/verbs.cpp:2926 +#, fuzzy +msgid "Remove an embedded script" +msgstr "Ingevoegd script verwijderen" + +#: ../src/verbs.cpp:2948 +#: ../src/verbs.cpp:2949 msgid "Center on horizontal and vertical axis" msgstr "Centreren op horizontale en verticale as" -#: ../src/widgets/arc-toolbar.cpp:146 +#: ../src/widgets/arc-toolbar.cpp:142 msgid "Arc: Change start/end" msgstr "Boog: Begin/einde veranderen" -#: ../src/widgets/arc-toolbar.cpp:212 +#: ../src/widgets/arc-toolbar.cpp:208 msgid "Arc: Change open/closed" msgstr "Boog: Open/gesloten veranderen" -#: ../src/widgets/arc-toolbar.cpp:303 -#: ../src/widgets/arc-toolbar.cpp:332 -#: ../src/widgets/rect-toolbar.cpp:259 -#: ../src/widgets/rect-toolbar.cpp:297 -#: ../src/widgets/spiral-toolbar.cpp:229 -#: ../src/widgets/spiral-toolbar.cpp:253 -#: ../src/widgets/star-toolbar.cpp:395 -#: ../src/widgets/star-toolbar.cpp:456 +#: ../src/widgets/arc-toolbar.cpp:299 +#: ../src/widgets/arc-toolbar.cpp:328 +#: ../src/widgets/rect-toolbar.cpp:261 +#: ../src/widgets/rect-toolbar.cpp:299 +#: ../src/widgets/spiral-toolbar.cpp:225 +#: ../src/widgets/spiral-toolbar.cpp:249 +#: ../src/widgets/star-toolbar.cpp:391 +#: ../src/widgets/star-toolbar.cpp:452 msgid "<b>New:</b>" msgstr "<b>Nieuw:</b>" #. FIXME: implement averaging of all parameters for multiple selected #. gtk_label_set_markup(GTK_LABEL(l), _("<b>Average:</b>")); -#: ../src/widgets/arc-toolbar.cpp:306 -#: ../src/widgets/arc-toolbar.cpp:317 -#: ../src/widgets/rect-toolbar.cpp:267 -#: ../src/widgets/rect-toolbar.cpp:285 -#: ../src/widgets/spiral-toolbar.cpp:231 -#: ../src/widgets/spiral-toolbar.cpp:242 -#: ../src/widgets/star-toolbar.cpp:397 +#: ../src/widgets/arc-toolbar.cpp:302 +#: ../src/widgets/arc-toolbar.cpp:313 +#: ../src/widgets/rect-toolbar.cpp:269 +#: ../src/widgets/rect-toolbar.cpp:287 +#: ../src/widgets/spiral-toolbar.cpp:227 +#: ../src/widgets/spiral-toolbar.cpp:238 +#: ../src/widgets/star-toolbar.cpp:393 msgid "<b>Change:</b>" msgstr "<b>Wijzigen:</b>" -#: ../src/widgets/arc-toolbar.cpp:341 +#: ../src/widgets/arc-toolbar.cpp:337 msgid "Start:" msgstr "Begin:" -#: ../src/widgets/arc-toolbar.cpp:342 +#: ../src/widgets/arc-toolbar.cpp:338 msgid "The angle (in degrees) from the horizontal to the arc's start point" msgstr "De hoek (in graden) tussen een horizontale lijn en het begin van de boog" -#: ../src/widgets/arc-toolbar.cpp:354 +#: ../src/widgets/arc-toolbar.cpp:350 msgid "End:" msgstr "Einde:" -#: ../src/widgets/arc-toolbar.cpp:355 +#: ../src/widgets/arc-toolbar.cpp:351 msgid "The angle (in degrees) from the horizontal to the arc's end point" msgstr "De hoek (in graden) tussen een horizontale lijn en het einde van de boog" -#: ../src/widgets/arc-toolbar.cpp:371 +#: ../src/widgets/arc-toolbar.cpp:367 msgid "Closed arc" msgstr "Gesloten boog" -#: ../src/widgets/arc-toolbar.cpp:372 +#: ../src/widgets/arc-toolbar.cpp:368 msgid "Switch to segment (closed shape with two radii)" msgstr "Omschakelen naar segment (gesloten vorm met twee stralen)" -#: ../src/widgets/arc-toolbar.cpp:378 +#: ../src/widgets/arc-toolbar.cpp:374 msgid "Open Arc" msgstr "Open boog" -#: ../src/widgets/arc-toolbar.cpp:379 +#: ../src/widgets/arc-toolbar.cpp:375 msgid "Switch to arc (unclosed shape)" msgstr "Omschakelen naar boog (open vorm)" -#: ../src/widgets/arc-toolbar.cpp:402 +#: ../src/widgets/arc-toolbar.cpp:398 msgid "Make whole" msgstr "Ellips herstellen" -#: ../src/widgets/arc-toolbar.cpp:403 +#: ../src/widgets/arc-toolbar.cpp:399 msgid "Make the shape a whole ellipse, not arc or segment" msgstr "Van de figuur een hele ellips maken, geen boog of segment" #. TODO: use the correct axis here, too -#: ../src/widgets/box3d-toolbar.cpp:253 +#: ../src/widgets/box3d-toolbar.cpp:248 msgid "3D Box: Change perspective (angle of infinite axis)" msgstr "3D-kubus: Perspectief veranderen (hoek van oneindige as)" -#: ../src/widgets/box3d-toolbar.cpp:320 +#: ../src/widgets/box3d-toolbar.cpp:315 msgid "Angle in X direction" msgstr "Hoek in X-richting" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:322 +#: ../src/widgets/box3d-toolbar.cpp:317 msgid "Angle of PLs in X direction" msgstr "Hoek van perspectieflijn in X-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:344 +#: ../src/widgets/box3d-toolbar.cpp:339 msgid "State of VP in X direction" msgstr "Toestand van verdwijnpunt in X-richting" -#: ../src/widgets/box3d-toolbar.cpp:345 +#: ../src/widgets/box3d-toolbar.cpp:340 msgid "Toggle VP in X direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in X-richting omschakelen tussen 'eindig ' en 'oneindig' (=parallel)" -#: ../src/widgets/box3d-toolbar.cpp:360 +#: ../src/widgets/box3d-toolbar.cpp:355 msgid "Angle in Y direction" msgstr "Hoek in Y-richting" -#: ../src/widgets/box3d-toolbar.cpp:360 +#: ../src/widgets/box3d-toolbar.cpp:355 msgid "Angle Y:" msgstr "Y-hoek:" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:362 +#: ../src/widgets/box3d-toolbar.cpp:357 msgid "Angle of PLs in Y direction" msgstr "Hoek van perspectieflijn in Y-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:383 +#: ../src/widgets/box3d-toolbar.cpp:378 msgid "State of VP in Y direction" msgstr "Toestand van verdwijnpunt in Y-richting" -#: ../src/widgets/box3d-toolbar.cpp:384 +#: ../src/widgets/box3d-toolbar.cpp:379 msgid "Toggle VP in Y direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in Y-richting omschakelen tussen 'eindig' en 'oneindig' (=parallel)" -#: ../src/widgets/box3d-toolbar.cpp:399 +#: ../src/widgets/box3d-toolbar.cpp:394 msgid "Angle in Z direction" msgstr "Hoek in Z-richting" #. Translators: PL is short for 'perspective line' -#: ../src/widgets/box3d-toolbar.cpp:401 +#: ../src/widgets/box3d-toolbar.cpp:396 msgid "Angle of PLs in Z direction" msgstr "Hoek van perspectieflijn in Z-richting" #. Translators: VP is short for 'vanishing point' -#: ../src/widgets/box3d-toolbar.cpp:422 +#: ../src/widgets/box3d-toolbar.cpp:417 msgid "State of VP in Z direction" msgstr "Toestand van verdwijnpunt in Z-richting" -#: ../src/widgets/box3d-toolbar.cpp:423 +#: ../src/widgets/box3d-toolbar.cpp:418 msgid "Toggle VP in Z direction between 'finite' and 'infinite' (=parallel)" msgstr "Verdwijnpunt in Z-richting omschakelen tussen 'eindig ' en 'oneindig' (=parallel)" #. gint preset_index = ege_select_one_action_get_active( sel ); -#: ../src/widgets/calligraphy-toolbar.cpp:239 -#: ../src/widgets/calligraphy-toolbar.cpp:283 -#: ../src/widgets/calligraphy-toolbar.cpp:288 +#: ../src/widgets/calligraphy-toolbar.cpp:235 +#: ../src/widgets/calligraphy-toolbar.cpp:279 +#: ../src/widgets/calligraphy-toolbar.cpp:284 msgid "No preset" msgstr "Geen voorkeur" #. Width -#: ../src/widgets/calligraphy-toolbar.cpp:448 -#: ../src/widgets/erasor-toolbar.cpp:146 +#: ../src/widgets/calligraphy-toolbar.cpp:444 +#: ../src/widgets/eraser-toolbar.cpp:142 msgid "(hairline)" msgstr "(haarlijn)" #. Mean #. Rotation #. Scale -#: ../src/widgets/calligraphy-toolbar.cpp:448 -#: ../src/widgets/calligraphy-toolbar.cpp:481 -#: ../src/widgets/erasor-toolbar.cpp:146 -#: ../src/widgets/pencil-toolbar.cpp:303 -#: ../src/widgets/spray-toolbar.cpp:129 -#: ../src/widgets/spray-toolbar.cpp:145 -#: ../src/widgets/spray-toolbar.cpp:161 -#: ../src/widgets/spray-toolbar.cpp:221 -#: ../src/widgets/spray-toolbar.cpp:251 -#: ../src/widgets/spray-toolbar.cpp:269 -#: ../src/widgets/tweak-toolbar.cpp:143 -#: ../src/widgets/tweak-toolbar.cpp:160 -#: ../src/widgets/tweak-toolbar.cpp:368 +#: ../src/widgets/calligraphy-toolbar.cpp:444 +#: ../src/widgets/calligraphy-toolbar.cpp:477 +#: ../src/widgets/eraser-toolbar.cpp:142 +#: ../src/widgets/pencil-toolbar.cpp:298 +#: ../src/widgets/spray-toolbar.cpp:125 +#: ../src/widgets/spray-toolbar.cpp:141 +#: ../src/widgets/spray-toolbar.cpp:157 +#: ../src/widgets/spray-toolbar.cpp:217 +#: ../src/widgets/spray-toolbar.cpp:247 +#: ../src/widgets/spray-toolbar.cpp:265 +#: ../src/widgets/tweak-toolbar.cpp:139 +#: ../src/widgets/tweak-toolbar.cpp:156 +#: ../src/widgets/tweak-toolbar.cpp:364 msgid "(default)" msgstr "(standaard)" -#: ../src/widgets/calligraphy-toolbar.cpp:448 -#: ../src/widgets/erasor-toolbar.cpp:146 +#: ../src/widgets/calligraphy-toolbar.cpp:444 +#: ../src/widgets/eraser-toolbar.cpp:142 msgid "(broad stroke)" msgstr "(dikke lijn)" -#: ../src/widgets/calligraphy-toolbar.cpp:451 -#: ../src/widgets/erasor-toolbar.cpp:149 +#: ../src/widgets/calligraphy-toolbar.cpp:447 +#: ../src/widgets/eraser-toolbar.cpp:145 msgid "Pen Width" msgstr "Penbreedte" -#: ../src/widgets/calligraphy-toolbar.cpp:452 +#: ../src/widgets/calligraphy-toolbar.cpp:448 msgid "The width of the calligraphic pen (relative to the visible canvas area)" msgstr "De breedte van de kalligrafische pen (ten opzichte van het canvas)" #. Thinning -#: ../src/widgets/calligraphy-toolbar.cpp:465 +#: ../src/widgets/calligraphy-toolbar.cpp:461 msgid "(speed blows up stroke)" msgstr "(snelheid verbreedt de lijn)" -#: ../src/widgets/calligraphy-toolbar.cpp:465 +#: ../src/widgets/calligraphy-toolbar.cpp:461 msgid "(slight widening)" msgstr "(lichte verbreding)" -#: ../src/widgets/calligraphy-toolbar.cpp:465 +#: ../src/widgets/calligraphy-toolbar.cpp:461 msgid "(constant width)" msgstr "(constante breedte)" -#: ../src/widgets/calligraphy-toolbar.cpp:465 +#: ../src/widgets/calligraphy-toolbar.cpp:461 msgid "(slight thinning, default)" msgstr "(lichte versmalling, standaard)" -#: ../src/widgets/calligraphy-toolbar.cpp:465 +#: ../src/widgets/calligraphy-toolbar.cpp:461 msgid "(speed deflates stroke)" msgstr "(snelheid versmalt de lijn)" -#: ../src/widgets/calligraphy-toolbar.cpp:468 +#: ../src/widgets/calligraphy-toolbar.cpp:464 msgid "Stroke Thinning" msgstr "Lijnversmalling" -#: ../src/widgets/calligraphy-toolbar.cpp:468 +#: ../src/widgets/calligraphy-toolbar.cpp:464 msgid "Thinning:" msgstr "Versmalling:" -#: ../src/widgets/calligraphy-toolbar.cpp:469 +#: ../src/widgets/calligraphy-toolbar.cpp:465 msgid "How much velocity thins the stroke (> 0 makes fast strokes thinner, < 0 makes them broader, 0 makes width independent of velocity)" msgstr "De invloed van snelheid op de dikte van de lijn (>0 maakte snelle lijnen dunner, <0 maakt ze dikker, 0 maakt de dikte onafhankelijk van de snelheid)" #. Angle -#: ../src/widgets/calligraphy-toolbar.cpp:481 +#: ../src/widgets/calligraphy-toolbar.cpp:477 msgid "(left edge up)" msgstr "(rand links omhoog)" -#: ../src/widgets/calligraphy-toolbar.cpp:481 +#: ../src/widgets/calligraphy-toolbar.cpp:477 msgid "(horizontal)" msgstr "(horizontaal)" -#: ../src/widgets/calligraphy-toolbar.cpp:481 +#: ../src/widgets/calligraphy-toolbar.cpp:477 msgid "(right edge up)" msgstr "(rand rechts omhoog)" -#: ../src/widgets/calligraphy-toolbar.cpp:484 +#: ../src/widgets/calligraphy-toolbar.cpp:480 msgid "Pen Angle" msgstr "Hoek pen" -#: ../src/widgets/calligraphy-toolbar.cpp:484 +#: ../src/widgets/calligraphy-toolbar.cpp:480 #: ../share/extensions/motion.inx.h:3 #: ../share/extensions/restack.inx.h:10 msgid "Angle:" msgstr "Hoek:" -#: ../src/widgets/calligraphy-toolbar.cpp:485 +#: ../src/widgets/calligraphy-toolbar.cpp:481 msgid "The angle of the pen's nib (in degrees; 0 = horizontal; has no effect if fixation = 0)" msgstr "De hoek van de punt van de pen (in graden; 0 = horizontaal. Heeft geen invloed als de fixatie 0 is)." #. Fixation -#: ../src/widgets/calligraphy-toolbar.cpp:499 +#: ../src/widgets/calligraphy-toolbar.cpp:495 msgid "(perpendicular to stroke, \"brush\")" msgstr "(loodrecht op lijn, \"penseel\")" -#: ../src/widgets/calligraphy-toolbar.cpp:499 +#: ../src/widgets/calligraphy-toolbar.cpp:495 msgid "(almost fixed, default)" msgstr "(bijna vast, standaard)" -#: ../src/widgets/calligraphy-toolbar.cpp:499 +#: ../src/widgets/calligraphy-toolbar.cpp:495 msgid "(fixed by Angle, \"pen\")" msgstr "(vaste hoek, \"pen\")" -#: ../src/widgets/calligraphy-toolbar.cpp:502 +#: ../src/widgets/calligraphy-toolbar.cpp:498 msgid "Fixation" msgstr "Fixatie" -#: ../src/widgets/calligraphy-toolbar.cpp:502 +#: ../src/widgets/calligraphy-toolbar.cpp:498 msgid "Fixation:" msgstr "Fixatie:" -#: ../src/widgets/calligraphy-toolbar.cpp:503 +#: ../src/widgets/calligraphy-toolbar.cpp:499 msgid "Angle behavior (0 = nib always perpendicular to stroke direction, 100 = fixed angle)" msgstr "Hoekgedrag van de pen (0 = altijd loodrecht op de tekenrichting, 100 = vaste hoek)" #. Cap Rounding -#: ../src/widgets/calligraphy-toolbar.cpp:515 +#: ../src/widgets/calligraphy-toolbar.cpp:511 msgid "(blunt caps, default)" msgstr "(stomp uiteinde, standaard)" -#: ../src/widgets/calligraphy-toolbar.cpp:515 +#: ../src/widgets/calligraphy-toolbar.cpp:511 msgid "(slightly bulging)" msgstr "(licht uitpuilend)" -#: ../src/widgets/calligraphy-toolbar.cpp:515 +#: ../src/widgets/calligraphy-toolbar.cpp:511 msgid "(approximately round)" msgstr "(ongeveer rond)" -#: ../src/widgets/calligraphy-toolbar.cpp:515 +#: ../src/widgets/calligraphy-toolbar.cpp:511 msgid "(long protruding caps)" msgstr "(lang uitstekend uiteinde)" -#: ../src/widgets/calligraphy-toolbar.cpp:519 +#: ../src/widgets/calligraphy-toolbar.cpp:515 msgid "Cap rounding" msgstr "Ronding van uiteinde" -#: ../src/widgets/calligraphy-toolbar.cpp:519 +#: ../src/widgets/calligraphy-toolbar.cpp:515 msgid "Caps:" msgstr "Uiteinden:" -#: ../src/widgets/calligraphy-toolbar.cpp:520 +#: ../src/widgets/calligraphy-toolbar.cpp:516 msgid "Increase to make caps at the ends of strokes protrude more (0 = no caps, 1 = round caps)" msgstr "Verhoog dit om afronding op het einde van lijnen meer uitgesproken te maken (0 = geen afronding, 1 = rond uiteinde)" #. Tremor -#: ../src/widgets/calligraphy-toolbar.cpp:532 +#: ../src/widgets/calligraphy-toolbar.cpp:528 msgid "(smooth line)" msgstr "(afgevlakte lijn)" -#: ../src/widgets/calligraphy-toolbar.cpp:532 +#: ../src/widgets/calligraphy-toolbar.cpp:528 msgid "(slight tremor)" msgstr "(lichte beving)" -#: ../src/widgets/calligraphy-toolbar.cpp:532 +#: ../src/widgets/calligraphy-toolbar.cpp:528 msgid "(noticeable tremor)" msgstr "(zichtbare beving)" -#: ../src/widgets/calligraphy-toolbar.cpp:532 +#: ../src/widgets/calligraphy-toolbar.cpp:528 msgid "(maximum tremor)" msgstr "(maximale beving)" -#: ../src/widgets/calligraphy-toolbar.cpp:535 +#: ../src/widgets/calligraphy-toolbar.cpp:531 msgid "Stroke Tremor" msgstr "Lijnbeving" -#: ../src/widgets/calligraphy-toolbar.cpp:535 +#: ../src/widgets/calligraphy-toolbar.cpp:531 msgid "Tremor:" msgstr "Beving:" -#: ../src/widgets/calligraphy-toolbar.cpp:536 +#: ../src/widgets/calligraphy-toolbar.cpp:532 msgid "Increase to make strokes rugged and trembling" msgstr "Verhoog dit om lijnen ruw en bevend te maken" #. Wiggle -#: ../src/widgets/calligraphy-toolbar.cpp:550 +#: ../src/widgets/calligraphy-toolbar.cpp:546 msgid "(no wiggle)" msgstr "(zonder wegglijden)" -#: ../src/widgets/calligraphy-toolbar.cpp:550 +#: ../src/widgets/calligraphy-toolbar.cpp:546 msgid "(slight deviation)" msgstr "(lichte uitwijkingen)" -#: ../src/widgets/calligraphy-toolbar.cpp:550 +#: ../src/widgets/calligraphy-toolbar.cpp:546 msgid "(wild waves and curls)" msgstr "(wilde golven en krullen)" -#: ../src/widgets/calligraphy-toolbar.cpp:553 +#: ../src/widgets/calligraphy-toolbar.cpp:549 msgid "Pen Wiggle" msgstr "Wegglijden van de pen" -#: ../src/widgets/calligraphy-toolbar.cpp:553 +#: ../src/widgets/calligraphy-toolbar.cpp:549 msgid "Wiggle:" msgstr "Wegglijden:" -#: ../src/widgets/calligraphy-toolbar.cpp:554 +#: ../src/widgets/calligraphy-toolbar.cpp:550 msgid "Increase to make the pen waver and wiggle" msgstr "Verhoog dit om de pen onvast te maken en te laten wegglijden" #. Mass -#: ../src/widgets/calligraphy-toolbar.cpp:567 +#: ../src/widgets/calligraphy-toolbar.cpp:563 msgid "(no inertia)" msgstr "(geen traagheid)" -#: ../src/widgets/calligraphy-toolbar.cpp:567 +#: ../src/widgets/calligraphy-toolbar.cpp:563 msgid "(slight smoothing, default)" msgstr "(lichte vertraging, standaard)" -#: ../src/widgets/calligraphy-toolbar.cpp:567 +#: ../src/widgets/calligraphy-toolbar.cpp:563 msgid "(noticeable lagging)" msgstr "(merkbare vertraging)" -#: ../src/widgets/calligraphy-toolbar.cpp:567 +#: ../src/widgets/calligraphy-toolbar.cpp:563 msgid "(maximum inertia)" msgstr "(maximale traagheid)" -#: ../src/widgets/calligraphy-toolbar.cpp:570 +#: ../src/widgets/calligraphy-toolbar.cpp:566 msgid "Pen Mass" msgstr "Penmassa" -#: ../src/widgets/calligraphy-toolbar.cpp:570 +#: ../src/widgets/calligraphy-toolbar.cpp:566 msgid "Mass:" msgstr "Massa:" -#: ../src/widgets/calligraphy-toolbar.cpp:571 +#: ../src/widgets/calligraphy-toolbar.cpp:567 msgid "Increase to make the pen drag behind, as if slowed by inertia" msgstr "Verhoog dit om de pen langzamer te laten reageren, alsof vertraagd door inertie" -#: ../src/widgets/calligraphy-toolbar.cpp:586 +#: ../src/widgets/calligraphy-toolbar.cpp:582 msgid "Trace Background" msgstr "Achtergrond volgen" -#: ../src/widgets/calligraphy-toolbar.cpp:587 +#: ../src/widgets/calligraphy-toolbar.cpp:583 msgid "Trace the lightness of the background by the width of the pen (white - minimum width, black - maximum width)" msgstr "De lichtheid van de achtergrond bepaalt de breedte van de pen (wit = minimum breedte, zwart = maximum breedte)" -#: ../src/widgets/calligraphy-toolbar.cpp:600 +#: ../src/widgets/calligraphy-toolbar.cpp:596 msgid "Use the pressure of the input device to alter the width of the pen" msgstr "De op het invoerapparaat uitgeoefende druk gebruiken om de penbreedte te variëren" -#: ../src/widgets/calligraphy-toolbar.cpp:612 +#: ../src/widgets/calligraphy-toolbar.cpp:608 msgid "Tilt" msgstr "Helling" -#: ../src/widgets/calligraphy-toolbar.cpp:613 +#: ../src/widgets/calligraphy-toolbar.cpp:609 msgid "Use the tilt of the input device to alter the angle of the pen's nib" msgstr "De helling waaronder het invoerapparaat wordt gehouden, gebruiken om de penhoek te variëren" -#: ../src/widgets/calligraphy-toolbar.cpp:628 +#: ../src/widgets/calligraphy-toolbar.cpp:624 msgid "Choose a preset" msgstr "Kies een voorkeur" -#: ../src/widgets/calligraphy-toolbar.cpp:643 +#: ../src/widgets/calligraphy-toolbar.cpp:639 msgid "Add/Edit Profile" msgstr "Profiel toevoegen/bewerken" -#: ../src/widgets/calligraphy-toolbar.cpp:644 +#: ../src/widgets/calligraphy-toolbar.cpp:640 msgid "Add or edit calligraphic profile" msgstr "Kalligrafisch profiel toevoegen of bewerken" -#: ../src/widgets/connector-toolbar.cpp:136 +#: ../src/widgets/connector-toolbar.cpp:132 msgid "Set connector type: orthogonal" msgstr "Type verbinding instellen: orthogonaal" -#: ../src/widgets/connector-toolbar.cpp:136 +#: ../src/widgets/connector-toolbar.cpp:132 msgid "Set connector type: polyline" msgstr "Type verbinding instellen: veellijn" -#: ../src/widgets/connector-toolbar.cpp:185 +#: ../src/widgets/connector-toolbar.cpp:181 msgid "Change connector curvature" msgstr "Kromming verbinding aanpassen" -#: ../src/widgets/connector-toolbar.cpp:236 +#: ../src/widgets/connector-toolbar.cpp:232 msgid "Change connector spacing" msgstr "Verbindingsafstanden aanpassen" -#: ../src/widgets/connector-toolbar.cpp:329 +#: ../src/widgets/connector-toolbar.cpp:325 msgid "Avoid" msgstr "Vermijden" -#: ../src/widgets/connector-toolbar.cpp:339 +#: ../src/widgets/connector-toolbar.cpp:335 msgid "Ignore" msgstr "Negeren" -#: ../src/widgets/connector-toolbar.cpp:350 +#: ../src/widgets/connector-toolbar.cpp:346 msgid "Orthogonal" msgstr "Orthogonaal" -#: ../src/widgets/connector-toolbar.cpp:351 +#: ../src/widgets/connector-toolbar.cpp:347 msgid "Make connector orthogonal or polyline" msgstr "Verbinding orthogonaal maken" -#: ../src/widgets/connector-toolbar.cpp:365 +#: ../src/widgets/connector-toolbar.cpp:361 msgid "Connector Curvature" msgstr "Kromming verbinding" -#: ../src/widgets/connector-toolbar.cpp:365 +#: ../src/widgets/connector-toolbar.cpp:361 msgid "Curvature:" msgstr "Kromming:" -#: ../src/widgets/connector-toolbar.cpp:366 +#: ../src/widgets/connector-toolbar.cpp:362 msgid "The amount of connectors curvature" msgstr "Mate van kromming van verbindingen" -#: ../src/widgets/connector-toolbar.cpp:376 +#: ../src/widgets/connector-toolbar.cpp:372 msgid "Connector Spacing" msgstr "Verbindingsafstanden" -#: ../src/widgets/connector-toolbar.cpp:376 +#: ../src/widgets/connector-toolbar.cpp:372 msgid "Spacing:" msgstr "Afstand:" -#: ../src/widgets/connector-toolbar.cpp:377 +#: ../src/widgets/connector-toolbar.cpp:373 msgid "The amount of space left around objects by auto-routing connectors" msgstr "Vrij te laten ruimte rond objecten bij het automatisch routeren van verbindingen" -#: ../src/widgets/connector-toolbar.cpp:388 +#: ../src/widgets/connector-toolbar.cpp:384 msgid "Graph" msgstr "Diagram" -#: ../src/widgets/connector-toolbar.cpp:398 +#: ../src/widgets/connector-toolbar.cpp:394 msgid "Connector Length" msgstr "Verbindingslengte" -#: ../src/widgets/connector-toolbar.cpp:398 +#: ../src/widgets/connector-toolbar.cpp:394 msgid "Length:" msgstr "Lengte:" -#: ../src/widgets/connector-toolbar.cpp:399 +#: ../src/widgets/connector-toolbar.cpp:395 msgid "Ideal length for connectors when layout is applied" msgstr "Ideale lengte van verbindingen bij herschikken" -#: ../src/widgets/connector-toolbar.cpp:411 +#: ../src/widgets/connector-toolbar.cpp:407 msgid "Downwards" msgstr "Omlaag" -#: ../src/widgets/connector-toolbar.cpp:412 +#: ../src/widgets/connector-toolbar.cpp:408 msgid "Make connectors with end-markers (arrows) point downwards" msgstr "Eindmarkeringen (pijlen) van verbindingen wijzen omlaag" -#: ../src/widgets/connector-toolbar.cpp:428 +#: ../src/widgets/connector-toolbar.cpp:424 msgid "Do not allow overlapping shapes" msgstr "Geen overlappende vormen toestaan" @@ -23540,84 +23543,88 @@ msgstr "Streepjespatroon" msgid "Pattern offset" msgstr "Patroonverplaatsing" -#: ../src/widgets/desktop-widget.cpp:462 +#: ../src/widgets/desktop-widget.cpp:465 msgid "Zoom drawing if window size changes" msgstr "In- of uitzoomen wanneer venstergrootte verandert" -#: ../src/widgets/desktop-widget.cpp:673 +#: ../src/widgets/desktop-widget.cpp:669 msgid "Cursor coordinates" msgstr "Cursorcoördinaten" +#: ../src/widgets/desktop-widget.cpp:695 +msgid "Z:" +msgstr "Z:" + #. display the initial welcome message in the statusbar -#: ../src/widgets/desktop-widget.cpp:742 +#: ../src/widgets/desktop-widget.cpp:738 msgid "<b>Welcome to Inkscape!</b> Use shape or freehand tools to create objects; use selector (arrow) to move or transform them." msgstr "<b>Welkom bij Inkscape!</b> Gebruik vorm- of tekengereedschappen om objecten te maken, gebruik aanwijsgereedschap om ze te verplaatsen of te vervormen." -#: ../src/widgets/desktop-widget.cpp:836 +#: ../src/widgets/desktop-widget.cpp:832 msgid "grayscale" msgstr "grijstinten" -#: ../src/widgets/desktop-widget.cpp:837 +#: ../src/widgets/desktop-widget.cpp:833 msgid ", grayscale" msgstr ", grijstinten" -#: ../src/widgets/desktop-widget.cpp:838 +#: ../src/widgets/desktop-widget.cpp:834 msgid "print colors preview" msgstr "" -#: ../src/widgets/desktop-widget.cpp:839 +#: ../src/widgets/desktop-widget.cpp:835 msgid ", print colors preview" msgstr "" -#: ../src/widgets/desktop-widget.cpp:840 +#: ../src/widgets/desktop-widget.cpp:836 msgid "outline" msgstr "contour" -#: ../src/widgets/desktop-widget.cpp:841 +#: ../src/widgets/desktop-widget.cpp:837 msgid "no filters" msgstr "geen filters" -#: ../src/widgets/desktop-widget.cpp:868 +#: ../src/widgets/desktop-widget.cpp:864 #, c-format msgid "%s%s: %d (%s%s) - Inkscape" msgstr "%s%s: %d (%s%s) - Inkscape" +#: ../src/widgets/desktop-widget.cpp:866 #: ../src/widgets/desktop-widget.cpp:870 -#: ../src/widgets/desktop-widget.cpp:874 #, c-format msgid "%s%s: %d (%s) - Inkscape" msgstr "%s%s: %d (%s) - Inkscape" -#: ../src/widgets/desktop-widget.cpp:876 +#: ../src/widgets/desktop-widget.cpp:872 #, c-format msgid "%s%s: %d - Inkscape" msgstr "%s%s: %d - Inkscape" -#: ../src/widgets/desktop-widget.cpp:882 +#: ../src/widgets/desktop-widget.cpp:878 #, c-format msgid "%s%s (%s%s) - Inkscape" msgstr "%s%s (%s%s) - Inkscape" +#: ../src/widgets/desktop-widget.cpp:880 #: ../src/widgets/desktop-widget.cpp:884 -#: ../src/widgets/desktop-widget.cpp:888 #, c-format msgid "%s%s (%s) - Inkscape" msgstr "%s%s (%s) - Inkscape" -#: ../src/widgets/desktop-widget.cpp:890 +#: ../src/widgets/desktop-widget.cpp:886 #, c-format msgid "%s%s - Inkscape" msgstr "%s%s - Inkscape" -#: ../src/widgets/desktop-widget.cpp:1059 +#: ../src/widgets/desktop-widget.cpp:1055 msgid "Color-managed display is <b>enabled</b> in this window" msgstr "Kleurmanagementweergave is <b>actief</b>voor dit venster" -#: ../src/widgets/desktop-widget.cpp:1061 +#: ../src/widgets/desktop-widget.cpp:1057 msgid "Color-managed display is <b>disabled</b> in this window" msgstr "Kleurmanagementweergave is <b>inactief</b> voor dit venster" -#: ../src/widgets/desktop-widget.cpp:1116 +#: ../src/widgets/desktop-widget.cpp:1112 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">Save changes to document \"%s\" before closing?</span>\n" @@ -23628,12 +23635,12 @@ msgstr "" "\n" "Als u afsluit zonder opslaan, gaan de wijzigingen verloren." -#: ../src/widgets/desktop-widget.cpp:1126 -#: ../src/widgets/desktop-widget.cpp:1185 +#: ../src/widgets/desktop-widget.cpp:1122 +#: ../src/widgets/desktop-widget.cpp:1181 msgid "Close _without saving" msgstr "Sluiten _zonder opslaan" -#: ../src/widgets/desktop-widget.cpp:1175 +#: ../src/widgets/desktop-widget.cpp:1171 #, c-format msgid "" "<span weight=\"bold\" size=\"larger\">The file \"%s\" was saved with a format that may cause data loss!</span>\n" @@ -23644,129 +23651,124 @@ msgstr "" "\n" "Wilt u dit bestand opslaan in het Inkscape SVG-formaat?" -#: ../src/widgets/desktop-widget.cpp:1187 +#: ../src/widgets/desktop-widget.cpp:1183 msgid "_Save as Inkscape SVG" msgstr "Op_slaan als Inkscape SVG" -#: ../src/widgets/desktop-widget.cpp:1397 +#: ../src/widgets/desktop-widget.cpp:1393 msgid "Note:" msgstr "Nota:" -#: ../src/widgets/dropper-toolbar.cpp:118 +#: ../src/widgets/dropper-toolbar.cpp:114 msgid "Pick opacity" msgstr "Kies ondoorzichtigheid" -#: ../src/widgets/dropper-toolbar.cpp:119 +#: ../src/widgets/dropper-toolbar.cpp:115 msgid "Pick both the color and the alpha (transparency) under cursor; otherwise, pick only the visible color premultiplied by alpha" msgstr "Zowel kleur als alfa (transparantie) onder de cursor nemen; zoniet, alleen de zichtbare kleur voorvermenigvuldigd met alfa nemen" -#: ../src/widgets/dropper-toolbar.cpp:122 +#: ../src/widgets/dropper-toolbar.cpp:118 msgid "Pick" msgstr "Kiezen" -#: ../src/widgets/dropper-toolbar.cpp:131 +#: ../src/widgets/dropper-toolbar.cpp:127 msgid "Assign opacity" msgstr "Ondoorzichtigheid wijzigen" -#: ../src/widgets/dropper-toolbar.cpp:132 +#: ../src/widgets/dropper-toolbar.cpp:128 msgid "If alpha was picked, assign it to selection as fill or stroke transparency" msgstr "Als alfa gekozen is, deze op de selectie toepassen als transparantie van vulling of omlijning" -#: ../src/widgets/dropper-toolbar.cpp:135 +#: ../src/widgets/dropper-toolbar.cpp:131 msgid "Assign" msgstr "Toekennen" -#: ../src/widgets/ege-paint-def.cpp:67 -#: ../src/widgets/ege-paint-def.cpp:91 -msgid "none" -msgstr "Niet" - #: ../src/widgets/ege-paint-def.cpp:88 msgid "remove" msgstr "verwijderen" -#: ../src/widgets/erasor-toolbar.cpp:115 +#: ../src/widgets/eraser-toolbar.cpp:111 msgid "Delete objects touched by the eraser" msgstr "Objecten aangeraakt met de gom verwijderen" -#: ../src/widgets/erasor-toolbar.cpp:121 +#: ../src/widgets/eraser-toolbar.cpp:117 msgid "Cut" msgstr "Knippen" -#: ../src/widgets/erasor-toolbar.cpp:122 +#: ../src/widgets/eraser-toolbar.cpp:118 msgid "Cut out from objects" msgstr "Van objecten uitsnijden" -#: ../src/widgets/erasor-toolbar.cpp:150 +#: ../src/widgets/eraser-toolbar.cpp:146 msgid "The width of the eraser pen (relative to the visible canvas area)" msgstr "De breedte van de gom (relatief tov het zichtbare canvasoppervlak)" -#: ../src/widgets/fill-style.cpp:358 +#: ../src/widgets/fill-style.cpp:362 msgid "Change fill rule" msgstr "Vulregel veranderen" -#: ../src/widgets/fill-style.cpp:443 -#: ../src/widgets/fill-style.cpp:522 +#: ../src/widgets/fill-style.cpp:447 +#: ../src/widgets/fill-style.cpp:526 msgid "Set fill color" msgstr "Vulkleur instellen" -#: ../src/widgets/fill-style.cpp:443 -#: ../src/widgets/fill-style.cpp:522 +#: ../src/widgets/fill-style.cpp:447 +#: ../src/widgets/fill-style.cpp:526 msgid "Set stroke color" msgstr "Lijnkleur instellen" -#: ../src/widgets/fill-style.cpp:621 +#: ../src/widgets/fill-style.cpp:625 msgid "Set gradient on fill" msgstr "Kleurverloop instellen voor vulling" -#: ../src/widgets/fill-style.cpp:621 +#: ../src/widgets/fill-style.cpp:625 msgid "Set gradient on stroke" msgstr "Kleurverloop instellen op lijn" -#: ../src/widgets/fill-style.cpp:681 +#: ../src/widgets/fill-style.cpp:685 msgid "Set pattern on fill" msgstr "Patroon instellen voor vulling" -#: ../src/widgets/fill-style.cpp:682 +#: ../src/widgets/fill-style.cpp:686 msgid "Set pattern on stroke" msgstr "Patroon instellen op lijn" -#: ../src/widgets/font-selector.cpp:135 -#: ../src/widgets/text-toolbar.cpp:966 -#: ../src/widgets/text-toolbar.cpp:1284 +#: ../src/widgets/font-selector.cpp:134 +#: ../src/widgets/text-toolbar.cpp:962 +#: ../src/widgets/text-toolbar.cpp:1275 msgid "Font size" msgstr "Lettergrootte" #. Family frame -#: ../src/widgets/font-selector.cpp:149 +#: ../src/widgets/font-selector.cpp:148 msgid "Font family" msgstr "Lettertypefamilie" #. Style frame -#: ../src/widgets/font-selector.cpp:192 +#: ../src/widgets/font-selector.cpp:191 msgctxt "Font selector" msgid "Style" msgstr "Stijl" -#: ../src/widgets/font-selector.cpp:243 +#: ../src/widgets/font-selector.cpp:242 #: ../share/extensions/dots.inx.h:3 msgid "Font size:" msgstr "Lettergrootte:" -#: ../src/widgets/gradient-selector.cpp:207 +#: ../src/widgets/gradient-selector.cpp:208 msgid "Create a duplicate gradient" msgstr "Duplicaat van kleurverloop maken" -#: ../src/widgets/gradient-selector.cpp:217 +#: ../src/widgets/gradient-selector.cpp:218 msgid "Edit gradient" msgstr "Kleurverloop bewerken" -#: ../src/widgets/gradient-selector.cpp:288 -#: ../src/widgets/paint-selector.cpp:241 +#: ../src/widgets/gradient-selector.cpp:289 +#: ../src/widgets/paint-selector.cpp:244 msgid "Swatch" msgstr "Palet" -#: ../src/widgets/gradient-selector.cpp:338 +#: ../src/widgets/gradient-selector.cpp:339 msgid "Rename gradient" msgstr "Kleurverloop hernoemen" @@ -23927,7 +23929,8 @@ msgid "Link gradients to change all related gradients" msgstr "Kleurverlopen linken om alle gerelateerde kleurverlopen te veranderen" #: ../src/widgets/gradient-vector.cpp:332 -#: ../src/widgets/paint-selector.cpp:919 +#: ../src/widgets/paint-selector.cpp:922 +#: ../src/widgets/stroke-marker-selector.cpp:154 msgid "No document selected" msgstr "Geen document geselecteerd" @@ -23965,81 +23968,90 @@ msgstr "Kleurverloopeditor" msgid "Change gradient stop color" msgstr "Overgangskleur aanpassen" -#: ../src/widgets/lpe-toolbar.cpp:249 +#: ../src/widgets/lpe-toolbar.cpp:252 msgid "Closed" msgstr "Gesloten" -#: ../src/widgets/lpe-toolbar.cpp:251 +#: ../src/widgets/lpe-toolbar.cpp:254 msgid "Open start" msgstr "Open begin" -#: ../src/widgets/lpe-toolbar.cpp:253 +#: ../src/widgets/lpe-toolbar.cpp:256 msgid "Open end" msgstr "Open einde" -#: ../src/widgets/lpe-toolbar.cpp:255 +#: ../src/widgets/lpe-toolbar.cpp:258 msgid "Open both" msgstr "Beide open" -#: ../src/widgets/lpe-toolbar.cpp:314 +#: ../src/widgets/lpe-toolbar.cpp:317 msgid "All inactive" msgstr "Allemaal inactief" -#: ../src/widgets/lpe-toolbar.cpp:315 +#: ../src/widgets/lpe-toolbar.cpp:318 msgid "No geometric tool is active" msgstr "Geen enkel geometrisch gereedschap is actief" -#: ../src/widgets/lpe-toolbar.cpp:348 +#: ../src/widgets/lpe-toolbar.cpp:351 msgid "Show limiting bounding box" msgstr "Het beperkend omvattend vak tonen" -#: ../src/widgets/lpe-toolbar.cpp:349 +#: ../src/widgets/lpe-toolbar.cpp:352 msgid "Show bounding box (used to cut infinite lines)" msgstr "Het omvattend vak tonen (om oneindige lijnen af te snijden)" -#: ../src/widgets/lpe-toolbar.cpp:360 +#: ../src/widgets/lpe-toolbar.cpp:363 msgid "Get limiting bounding box from selection" msgstr "Het beperkend omvattend vak verkrijgen van selectie" -#: ../src/widgets/lpe-toolbar.cpp:361 +#: ../src/widgets/lpe-toolbar.cpp:364 msgid "Set limiting bounding box (used to cut infinite lines) to the bounding box of current selection" msgstr "Het beperkend omvattend vak (om oneindige lijnen af te snijden) instellen op het omvattend vak van de huidige selectie" -#: ../src/widgets/lpe-toolbar.cpp:373 +#: ../src/widgets/lpe-toolbar.cpp:376 msgid "Choose a line segment type" msgstr "Segmenttype veranderen" -#: ../src/widgets/lpe-toolbar.cpp:389 +#: ../src/widgets/lpe-toolbar.cpp:392 msgid "Display measuring info" msgstr "Meetinfo weergeven" -#: ../src/widgets/lpe-toolbar.cpp:390 +#: ../src/widgets/lpe-toolbar.cpp:393 msgid "Display measuring info for selected items" msgstr "Meetinfo weergeven voor geselecteerde items" -#: ../src/widgets/lpe-toolbar.cpp:410 +#. Add the units menu. +#: ../src/widgets/lpe-toolbar.cpp:403 +#: ../src/widgets/node-toolbar.cpp:625 +#: ../src/widgets/paintbucket-toolbar.cpp:186 +#: ../src/widgets/rect-toolbar.cpp:378 +#: ../src/widgets/select-toolbar.cpp:542 +msgid "Units" +msgstr "Eenheden" + +#: ../src/widgets/lpe-toolbar.cpp:413 msgid "Open LPE dialog" msgstr "Padeffectenvenster openen" -#: ../src/widgets/lpe-toolbar.cpp:411 +#: ../src/widgets/lpe-toolbar.cpp:414 msgid "Open LPE dialog (to adapt parameters numerically)" msgstr "Padeffectenvenster openen (om parameters numeriek aan te passen)" -#: ../src/widgets/measure-toolbar.cpp:102 -#: ../src/widgets/text-toolbar.cpp:1287 +#: ../src/widgets/measure-toolbar.cpp:103 +#: ../src/widgets/text-toolbar.cpp:1278 msgid "Font Size" msgstr "Lettertypegrootte" -#: ../src/widgets/measure-toolbar.cpp:102 +#: ../src/widgets/measure-toolbar.cpp:103 msgid "Font Size:" msgstr "Lettertypegrootte:" -#: ../src/widgets/measure-toolbar.cpp:103 +#: ../src/widgets/measure-toolbar.cpp:104 msgid "The font size to be used in the measurement labels" msgstr "Lettertypegrootte voor de meetlabels" -#: ../src/widgets/measure-toolbar.cpp:115 -#: ../src/widgets/measure-toolbar.cpp:123 +#: ../src/widgets/measure-toolbar.cpp:116 +#: ../src/widgets/measure-toolbar.cpp:124 msgid "The units to be used for the measurements" msgstr "Lettertypegrootte voor de meetlabels" @@ -24060,6 +24072,7 @@ msgid "Create conical gradient" msgstr "Conisch gradiënt maken" #: ../src/widgets/mesh-toolbar.cpp:263 +#: ../share/extensions/guides_creator.inx.h:5 msgid "Rows" msgstr "Rijen" @@ -24073,6 +24086,7 @@ msgid "Number of rows in new mesh" msgstr "Aantal rijen in nieuw mesh" #: ../src/widgets/mesh-toolbar.cpp:279 +#: ../share/extensions/guides_creator.inx.h:4 msgid "Columns" msgstr "Kolommen" @@ -24101,7 +24115,7 @@ msgid "Edit stroke mesh" msgstr "Lijn mesh bewerken" #: ../src/widgets/mesh-toolbar.cpp:317 -#: ../src/widgets/node-toolbar.cpp:530 +#: ../src/widgets/node-toolbar.cpp:533 msgid "Show Handles" msgstr "Handvatten tonen" @@ -24109,196 +24123,196 @@ msgstr "Handvatten tonen" msgid "Show side and tensor handles" msgstr "Zijde- en tensorhandvatten tonen" -#: ../src/widgets/node-toolbar.cpp:350 +#: ../src/widgets/node-toolbar.cpp:353 msgid "Insert node" msgstr "Knooppunt invoegen" -#: ../src/widgets/node-toolbar.cpp:351 +#: ../src/widgets/node-toolbar.cpp:354 msgid "Insert new nodes into selected segments" msgstr "Nieuwe knooppunten invoegen in geselecteerde segmenten" -#: ../src/widgets/node-toolbar.cpp:354 +#: ../src/widgets/node-toolbar.cpp:357 msgid "Insert" msgstr "Invoegen" -#: ../src/widgets/node-toolbar.cpp:365 +#: ../src/widgets/node-toolbar.cpp:368 msgid "Insert node at min X" msgstr "" -#: ../src/widgets/node-toolbar.cpp:366 +#: ../src/widgets/node-toolbar.cpp:369 msgid "Insert new nodes at min X into selected segments" msgstr "" -#: ../src/widgets/node-toolbar.cpp:369 +#: ../src/widgets/node-toolbar.cpp:372 msgid "Insert min X" msgstr "" -#: ../src/widgets/node-toolbar.cpp:375 +#: ../src/widgets/node-toolbar.cpp:378 msgid "Insert node at max X" msgstr "" -#: ../src/widgets/node-toolbar.cpp:376 +#: ../src/widgets/node-toolbar.cpp:379 msgid "Insert new nodes at max X into selected segments" msgstr "" -#: ../src/widgets/node-toolbar.cpp:379 +#: ../src/widgets/node-toolbar.cpp:382 msgid "Insert max X" msgstr "" -#: ../src/widgets/node-toolbar.cpp:385 +#: ../src/widgets/node-toolbar.cpp:388 msgid "Insert node at min Y" msgstr "" -#: ../src/widgets/node-toolbar.cpp:386 +#: ../src/widgets/node-toolbar.cpp:389 msgid "Insert new nodes at min Y into selected segments" msgstr "" -#: ../src/widgets/node-toolbar.cpp:389 +#: ../src/widgets/node-toolbar.cpp:392 msgid "Insert min Y" msgstr "" -#: ../src/widgets/node-toolbar.cpp:395 +#: ../src/widgets/node-toolbar.cpp:398 msgid "Insert node at max Y" msgstr "" -#: ../src/widgets/node-toolbar.cpp:396 +#: ../src/widgets/node-toolbar.cpp:399 msgid "Insert new nodes at max Y into selected segments" msgstr "" -#: ../src/widgets/node-toolbar.cpp:399 +#: ../src/widgets/node-toolbar.cpp:402 msgid "Insert max Y" msgstr "" -#: ../src/widgets/node-toolbar.cpp:407 +#: ../src/widgets/node-toolbar.cpp:410 msgid "Delete selected nodes" msgstr "Geselecteerde knooppunten verwijderen" -#: ../src/widgets/node-toolbar.cpp:418 +#: ../src/widgets/node-toolbar.cpp:421 msgid "Join selected nodes" msgstr "Geselecteerde knooppunten verbinden" -#: ../src/widgets/node-toolbar.cpp:421 +#: ../src/widgets/node-toolbar.cpp:424 msgid "Join" msgstr "Verbinden" -#: ../src/widgets/node-toolbar.cpp:429 +#: ../src/widgets/node-toolbar.cpp:432 msgid "Break path at selected nodes" msgstr "Het pad op geselecteerde knooppunten verbreken" -#: ../src/widgets/node-toolbar.cpp:439 +#: ../src/widgets/node-toolbar.cpp:442 msgid "Join with segment" msgstr "Verbinden met segment" -#: ../src/widgets/node-toolbar.cpp:440 +#: ../src/widgets/node-toolbar.cpp:443 msgid "Join selected endnodes with a new segment" msgstr "Geselecteerde eindpunten verbinden met een nieuw segment" -#: ../src/widgets/node-toolbar.cpp:449 +#: ../src/widgets/node-toolbar.cpp:452 msgid "Delete segment" msgstr "Segment verwijderen" -#: ../src/widgets/node-toolbar.cpp:450 +#: ../src/widgets/node-toolbar.cpp:453 msgid "Delete segment between two non-endpoint nodes" msgstr "Het pad tussen twee niet-eindpunten verwijderen" -#: ../src/widgets/node-toolbar.cpp:459 +#: ../src/widgets/node-toolbar.cpp:462 msgid "Node Cusp" msgstr "Hoekig knooppunt" -#: ../src/widgets/node-toolbar.cpp:460 +#: ../src/widgets/node-toolbar.cpp:463 msgid "Make selected nodes corner" msgstr "Geselecteerde knooppunten hoekig maken" -#: ../src/widgets/node-toolbar.cpp:469 +#: ../src/widgets/node-toolbar.cpp:472 msgid "Node Smooth" msgstr "Glad knooppunt" -#: ../src/widgets/node-toolbar.cpp:470 +#: ../src/widgets/node-toolbar.cpp:473 msgid "Make selected nodes smooth" msgstr "Geselecteerde knooppunten glad maken" -#: ../src/widgets/node-toolbar.cpp:479 +#: ../src/widgets/node-toolbar.cpp:482 msgid "Node Symmetric" msgstr "Symmetrisch knooppunt" -#: ../src/widgets/node-toolbar.cpp:480 +#: ../src/widgets/node-toolbar.cpp:483 msgid "Make selected nodes symmetric" msgstr "Geselecteerde knooppunten symmetrisch maken" -#: ../src/widgets/node-toolbar.cpp:489 +#: ../src/widgets/node-toolbar.cpp:492 msgid "Node Auto" msgstr "Automatisch knooppunt" -#: ../src/widgets/node-toolbar.cpp:490 +#: ../src/widgets/node-toolbar.cpp:493 msgid "Make selected nodes auto-smooth" msgstr "Geselecteerde knooppunten automatisch glad maken" -#: ../src/widgets/node-toolbar.cpp:499 +#: ../src/widgets/node-toolbar.cpp:502 msgid "Node Line" msgstr "Recht knooppunt" -#: ../src/widgets/node-toolbar.cpp:500 +#: ../src/widgets/node-toolbar.cpp:503 msgid "Make selected segments lines" msgstr "Van geselecteerde segmenten rechte lijnen maken" -#: ../src/widgets/node-toolbar.cpp:509 +#: ../src/widgets/node-toolbar.cpp:512 msgid "Node Curve" msgstr "Krom knooppunt" -#: ../src/widgets/node-toolbar.cpp:510 +#: ../src/widgets/node-toolbar.cpp:513 msgid "Make selected segments curves" msgstr "Van geselecteerde segmenten krommes maken" -#: ../src/widgets/node-toolbar.cpp:519 +#: ../src/widgets/node-toolbar.cpp:522 msgid "Show Transform Handles" msgstr "Transformatiehandvatten tonen" -#: ../src/widgets/node-toolbar.cpp:520 +#: ../src/widgets/node-toolbar.cpp:523 msgid "Show transformation handles for selected nodes" msgstr "Transformatiehandvatten tonen voor geselecteerde knooppunten" -#: ../src/widgets/node-toolbar.cpp:531 +#: ../src/widgets/node-toolbar.cpp:534 msgid "Show Bezier handles of selected nodes" msgstr "Bezierhandvatten van geselecteerde knooppunten tonen" -#: ../src/widgets/node-toolbar.cpp:541 +#: ../src/widgets/node-toolbar.cpp:544 msgid "Show Outline" msgstr "Contour tonen" -#: ../src/widgets/node-toolbar.cpp:542 +#: ../src/widgets/node-toolbar.cpp:545 msgid "Show path outline (without path effects)" msgstr "Padindicator tonen (zonder padeffecten)" -#: ../src/widgets/node-toolbar.cpp:564 +#: ../src/widgets/node-toolbar.cpp:567 msgid "Edit clipping paths" msgstr "Afsnijpaden bewerken" -#: ../src/widgets/node-toolbar.cpp:565 +#: ../src/widgets/node-toolbar.cpp:568 msgid "Show clipping path(s) of selected object(s)" msgstr "Afsnijdingspad(en) van geselecteerde object(en) tonen" -#: ../src/widgets/node-toolbar.cpp:575 +#: ../src/widgets/node-toolbar.cpp:578 msgid "Edit masks" msgstr "Maskers bewerken" -#: ../src/widgets/node-toolbar.cpp:576 +#: ../src/widgets/node-toolbar.cpp:579 msgid "Show mask(s) of selected object(s)" msgstr "Masker(s) van geselecteerde object(en) tonen" -#: ../src/widgets/node-toolbar.cpp:590 +#: ../src/widgets/node-toolbar.cpp:593 msgid "X coordinate:" msgstr "X-coördinaat:" # Er wordt altijd maar één coördinaat getoond, dus enkelvoud is beter. -#: ../src/widgets/node-toolbar.cpp:590 +#: ../src/widgets/node-toolbar.cpp:593 msgid "X coordinate of selected node(s)" msgstr "X-coördinaat van geselecteerd knooppunt" -#: ../src/widgets/node-toolbar.cpp:608 +#: ../src/widgets/node-toolbar.cpp:611 msgid "Y coordinate:" msgstr "Y-coördinaat:" -#: ../src/widgets/node-toolbar.cpp:608 +#: ../src/widgets/node-toolbar.cpp:611 msgid "Y coordinate of selected node(s)" msgstr "Y-coördinaat van geselecteerd knooppunt" @@ -24318,570 +24332,608 @@ msgstr "Vullingsdrempel" msgid "The maximum allowed difference between the clicked pixel and the neighboring pixels to be counted in the fill" msgstr "Het maximaal toegestane verschil tussen de aangeklikte pixel en de naastliggende pixels geteld in de vulling" -#: ../src/widgets/paintbucket-toolbar.cpp:193 +#: ../src/widgets/paintbucket-toolbar.cpp:194 msgid "Grow/shrink by" msgstr "Verdikken/verdunnen met" -#: ../src/widgets/paintbucket-toolbar.cpp:193 +#: ../src/widgets/paintbucket-toolbar.cpp:194 msgid "Grow/shrink by:" msgstr "Verdikken/verdunnen met:" -#: ../src/widgets/paintbucket-toolbar.cpp:194 +#: ../src/widgets/paintbucket-toolbar.cpp:195 msgid "The amount to grow (positive) or shrink (negative) the created fill path" msgstr "Mate waarmee het vullingspad verdikt (positief) of verdunt (negatief)" -#: ../src/widgets/paintbucket-toolbar.cpp:219 +#: ../src/widgets/paintbucket-toolbar.cpp:220 msgid "Close gaps" msgstr "Gaten opvullen" -#: ../src/widgets/paintbucket-toolbar.cpp:220 +#: ../src/widgets/paintbucket-toolbar.cpp:221 msgid "Close gaps:" msgstr "Gaten opvullen:" -#: ../src/widgets/paintbucket-toolbar.cpp:231 -#: ../src/widgets/pencil-toolbar.cpp:326 -#: ../src/widgets/spiral-toolbar.cpp:304 -#: ../src/widgets/star-toolbar.cpp:576 +#: ../src/widgets/paintbucket-toolbar.cpp:232 +#: ../src/widgets/pencil-toolbar.cpp:321 +#: ../src/widgets/spiral-toolbar.cpp:300 +#: ../src/widgets/star-toolbar.cpp:572 msgid "Defaults" msgstr "Standaardwaarden" -#: ../src/widgets/paintbucket-toolbar.cpp:232 +#: ../src/widgets/paintbucket-toolbar.cpp:233 msgid "Reset paint bucket parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Herinitialiseer afgebakende gebieden vullen naar standaardwaarden (gebruik Inkscapevoorkeuren > Gereedschappen om de standaardwaarden te veranderen)" -#: ../src/widgets/paint-selector.cpp:231 +#: ../src/widgets/paint-selector.cpp:234 msgid "No paint" msgstr "Geen opvulling" -#: ../src/widgets/paint-selector.cpp:233 +#: ../src/widgets/paint-selector.cpp:236 msgid "Flat color" msgstr "Egale kleur" -#: ../src/widgets/paint-selector.cpp:235 +#: ../src/widgets/paint-selector.cpp:238 msgid "Linear gradient" msgstr "Lineair kleurverloop" -#: ../src/widgets/paint-selector.cpp:237 +#: ../src/widgets/paint-selector.cpp:240 msgid "Radial gradient" msgstr "Radiaal kleurverloop" -#: ../src/widgets/paint-selector.cpp:243 +#: ../src/widgets/paint-selector.cpp:246 msgid "Unset paint (make it undefined so it can be inherited)" msgstr "Vulling uitzetten (ongedefinieerd maken zodat het overgenomen kan worden)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:260 +#: ../src/widgets/paint-selector.cpp:263 msgid "Any path self-intersections or subpaths create holes in the fill (fill-rule: evenodd)" msgstr "Wanneer een pad zichzelf snijdt, ontstaat een gat (vulregel: evenoneven)" #. TRANSLATORS: for info, see http://www.w3.org/TR/2000/CR-SVG-20000802/painting.html#FillRuleProperty -#: ../src/widgets/paint-selector.cpp:271 +#: ../src/widgets/paint-selector.cpp:274 msgid "Fill is solid unless a subpath is counterdirectional (fill-rule: nonzero)" msgstr "Vulling is zonder gaten totdat een subpad tegen de richting ingaat (vulregel: nietnul)" -#: ../src/widgets/paint-selector.cpp:587 +#: ../src/widgets/paint-selector.cpp:590 msgid "<b>No objects</b>" msgstr "<b>Geen objecten</b>" -#: ../src/widgets/paint-selector.cpp:598 +#: ../src/widgets/paint-selector.cpp:601 msgid "<b>Multiple styles</b>" msgstr "<b>Meerdere stijlen</b>" -#: ../src/widgets/paint-selector.cpp:609 +#: ../src/widgets/paint-selector.cpp:612 msgid "<b>Paint is undefined</b>" msgstr "<b>Vulling is niet gedefinieerd</b>" -#: ../src/widgets/paint-selector.cpp:620 +#: ../src/widgets/paint-selector.cpp:623 msgid "<b>No paint</b>" msgstr "<b>Geen opvulling</b>" -#: ../src/widgets/paint-selector.cpp:691 +#: ../src/widgets/paint-selector.cpp:694 msgid "<b>Flat color</b>" msgstr "<b>Egale kleur</b>" #. sp_gradient_selector_set_mode(SP_GRADIENT_SELECTOR(gsel), SP_GRADIENT_SELECTOR_MODE_LINEAR); -#: ../src/widgets/paint-selector.cpp:755 +#: ../src/widgets/paint-selector.cpp:758 msgid "<b>Linear gradient</b>" msgstr "<b>Lineair kleurverloop</b>" -#: ../src/widgets/paint-selector.cpp:758 +#: ../src/widgets/paint-selector.cpp:761 msgid "<b>Radial gradient</b>" msgstr "<b>Radiaal kleurverloop</b>" -#: ../src/widgets/paint-selector.cpp:1052 +#: ../src/widgets/paint-selector.cpp:1055 msgid "Use the <b>Node tool</b> to adjust position, scale, and rotation of the pattern on canvas. Use <b>Object > Pattern > Objects to Pattern</b> to create a new pattern from selection." msgstr "Gebruik het <b>knooppunten-gereedschap</b> om positie, schaal en rotatie van het patroon aan te passen. Gebruik <b>Object > Patroon > Objecten naar patroon</b> om een nieuw patroon te maken uit de selectie." -#: ../src/widgets/paint-selector.cpp:1065 +#: ../src/widgets/paint-selector.cpp:1068 msgid "<b>Pattern fill</b>" msgstr "<b>Patroonvulling</b>" -#: ../src/widgets/paint-selector.cpp:1161 +#: ../src/widgets/paint-selector.cpp:1162 msgid "<b>Swatch fill</b>" msgstr "<b>Vulling uit palet</b>" -#: ../src/widgets/pencil-toolbar.cpp:130 +#: ../src/widgets/pencil-toolbar.cpp:125 msgid "Bezier" msgstr "Bezier" -#: ../src/widgets/pencil-toolbar.cpp:131 +#: ../src/widgets/pencil-toolbar.cpp:126 msgid "Create regular Bezier path" msgstr "Regulier Bezierpad aanmaken" -#: ../src/widgets/pencil-toolbar.cpp:138 +#: ../src/widgets/pencil-toolbar.cpp:133 msgid "Create Spiro path" msgstr "Spiraal maken" -#: ../src/widgets/pencil-toolbar.cpp:145 +#: ../src/widgets/pencil-toolbar.cpp:140 msgid "Zigzag" msgstr "Zigzag" -#: ../src/widgets/pencil-toolbar.cpp:146 +#: ../src/widgets/pencil-toolbar.cpp:141 msgid "Create a sequence of straight line segments" msgstr "Een sequentie van rechte lijnstukken maken" -#: ../src/widgets/pencil-toolbar.cpp:152 +#: ../src/widgets/pencil-toolbar.cpp:147 msgid "Paraxial" msgstr "Loodrecht" -#: ../src/widgets/pencil-toolbar.cpp:153 +#: ../src/widgets/pencil-toolbar.cpp:148 msgid "Create a sequence of paraxial line segments" msgstr "Een sequentie van onderling loodrechte lijnstukken maken" -#: ../src/widgets/pencil-toolbar.cpp:161 +#: ../src/widgets/pencil-toolbar.cpp:156 msgid "Mode of new lines drawn by this tool" msgstr "Modus van nieuwe lijnen getekend door dit gereedschap" -#: ../src/widgets/pencil-toolbar.cpp:190 +#: ../src/widgets/pencil-toolbar.cpp:185 msgid "Triangle in" msgstr "Aflopende driehoek" -#: ../src/widgets/pencil-toolbar.cpp:191 +#: ../src/widgets/pencil-toolbar.cpp:186 msgid "Triangle out" msgstr "Oplopende driehoek" -#: ../src/widgets/pencil-toolbar.cpp:193 +#: ../src/widgets/pencil-toolbar.cpp:188 msgid "From clipboard" msgstr "Van klembord" -#: ../src/widgets/pencil-toolbar.cpp:218 -#: ../src/widgets/pencil-toolbar.cpp:219 +#: ../src/widgets/pencil-toolbar.cpp:213 +#: ../src/widgets/pencil-toolbar.cpp:214 msgid "Shape:" msgstr "Vorm:" -#: ../src/widgets/pencil-toolbar.cpp:218 +#: ../src/widgets/pencil-toolbar.cpp:213 msgid "Shape of new paths drawn by this tool" msgstr "Vorm van nieuwe paden getekend met dit gereedschap" -#: ../src/widgets/pencil-toolbar.cpp:303 +#: ../src/widgets/pencil-toolbar.cpp:298 msgid "(many nodes, rough)" msgstr "(veel knooppunten, ruw)" -#: ../src/widgets/pencil-toolbar.cpp:303 +#: ../src/widgets/pencil-toolbar.cpp:298 msgid "(few nodes, smooth)" msgstr "(weinig knooppunten, glad)" -#: ../src/widgets/pencil-toolbar.cpp:306 +#: ../src/widgets/pencil-toolbar.cpp:301 msgid "Smoothing:" msgstr "Afvlakking:" -#: ../src/widgets/pencil-toolbar.cpp:306 +#: ../src/widgets/pencil-toolbar.cpp:301 msgid "Smoothing: " msgstr "Afvlakking: " -#: ../src/widgets/pencil-toolbar.cpp:307 +#: ../src/widgets/pencil-toolbar.cpp:302 msgid "How much smoothing (simplifying) is applied to the line" msgstr "Hoeveel afvlakking (vereenvoudiging) er toegepast wordt op de lijn" -#: ../src/widgets/pencil-toolbar.cpp:327 +#: ../src/widgets/pencil-toolbar.cpp:322 msgid "Reset pencil parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Instellingen potlood terugzetten naar de standaardwaarden (gebruik Inkscapevoorkeuren > Gereedschappen om de standaardwaarden te veranderen)" -#: ../src/widgets/rect-toolbar.cpp:128 +#: ../src/widgets/rect-toolbar.cpp:130 msgid "Change rectangle" msgstr "Rechthoek aanpassen" -#: ../src/widgets/rect-toolbar.cpp:315 +#: ../src/widgets/rect-toolbar.cpp:317 msgid "W:" msgstr "B:" -#: ../src/widgets/rect-toolbar.cpp:315 +#: ../src/widgets/rect-toolbar.cpp:317 msgid "Width of rectangle" msgstr "Breedte van de rechthoek" -#: ../src/widgets/rect-toolbar.cpp:332 +#: ../src/widgets/rect-toolbar.cpp:334 msgid "H:" msgstr "H:" -#: ../src/widgets/rect-toolbar.cpp:332 +#: ../src/widgets/rect-toolbar.cpp:334 msgid "Height of rectangle" msgstr "Hoogte van de rechthoek" -#: ../src/widgets/rect-toolbar.cpp:346 -#: ../src/widgets/rect-toolbar.cpp:361 +#: ../src/widgets/rect-toolbar.cpp:348 +#: ../src/widgets/rect-toolbar.cpp:363 msgid "not rounded" msgstr "zonder afronding" -#: ../src/widgets/rect-toolbar.cpp:349 +#: ../src/widgets/rect-toolbar.cpp:351 msgid "Horizontal radius" msgstr "Horizontale straal" -#: ../src/widgets/rect-toolbar.cpp:349 +#: ../src/widgets/rect-toolbar.cpp:351 msgid "Rx:" msgstr "Rx:" -#: ../src/widgets/rect-toolbar.cpp:349 +#: ../src/widgets/rect-toolbar.cpp:351 msgid "Horizontal radius of rounded corners" msgstr "Horizontale straal van afgeronde hoeken" -#: ../src/widgets/rect-toolbar.cpp:364 +#: ../src/widgets/rect-toolbar.cpp:366 msgid "Vertical radius" msgstr "Verticale straal" -#: ../src/widgets/rect-toolbar.cpp:364 +#: ../src/widgets/rect-toolbar.cpp:366 msgid "Ry:" msgstr "Ry:" -#: ../src/widgets/rect-toolbar.cpp:364 +#: ../src/widgets/rect-toolbar.cpp:366 msgid "Vertical radius of rounded corners" msgstr "Verticale straal van afgeronde hoeken" -#: ../src/widgets/rect-toolbar.cpp:383 +#: ../src/widgets/rect-toolbar.cpp:385 msgid "Not rounded" msgstr "Niet afgerond" -#: ../src/widgets/rect-toolbar.cpp:384 +#: ../src/widgets/rect-toolbar.cpp:386 msgid "Make corners sharp" msgstr "De hoeken weer scherp maken" -#: ../src/widgets/select-toolbar.cpp:263 +#: ../src/widgets/ruler.cpp:192 +#, fuzzy +msgid "The orientation of the ruler" +msgstr "Oriëntatie van het paneelitem" + +#: ../src/widgets/ruler.cpp:202 +#, fuzzy +msgid "Unit of the ruler" +msgstr "Breedte van het patroon" + +#: ../src/widgets/ruler.cpp:210 +#, fuzzy +msgid "Lower limit of ruler" +msgstr "Verlaag naar de vorige laag" + +#: ../src/widgets/ruler.cpp:219 +#, fuzzy +msgid "Upper" +msgstr "Verschijnen" + +#: ../src/widgets/ruler.cpp:220 +msgid "Upper limit of ruler" +msgstr "" + +#: ../src/widgets/ruler.cpp:230 +#, fuzzy +msgid "Position of mark on the ruler" +msgstr "Locaties van de pictogramthema's" + +#: ../src/widgets/ruler.cpp:239 +#, fuzzy +msgid "Max Size" +msgstr "Gemaximaliseerd" + +#: ../src/widgets/ruler.cpp:240 +msgid "Maximum size of the ruler" +msgstr "" + +#: ../src/widgets/select-toolbar.cpp:267 msgid "Transform by toolbar" msgstr "Transformeren met behulp van de gereedschappenbalk" -#: ../src/widgets/select-toolbar.cpp:341 +#: ../src/widgets/select-toolbar.cpp:345 msgid "Now <b>stroke width</b> is <b>scaled</b> when objects are scaled." msgstr "De <b>lijndikte</b> wordt nu <b>meegeschaald</b> wanneer objecten geschaald worden." -#: ../src/widgets/select-toolbar.cpp:343 +#: ../src/widgets/select-toolbar.cpp:347 msgid "Now <b>stroke width</b> is <b>not scaled</b> when objects are scaled." msgstr "De <b>lijndikte</b> wordt nu <b>niet geschaald</b> wanneer objecten geschaald worden." -#: ../src/widgets/select-toolbar.cpp:354 +#: ../src/widgets/select-toolbar.cpp:358 msgid "Now <b>rounded rectangle corners</b> are <b>scaled</b> when rectangles are scaled." msgstr "<b>Afgeronde hoeken</b> worden nu <b>meegeschaald</b> wanneer rechthoeken worden geschaald." -#: ../src/widgets/select-toolbar.cpp:356 +#: ../src/widgets/select-toolbar.cpp:360 msgid "Now <b>rounded rectangle corners</b> are <b>not scaled</b> when rectangles are scaled." msgstr "<b>Afgeronde hoeken</b> worden nu <b>niet geschaald</b> wanneer rechthoeken worden geschaald." -#: ../src/widgets/select-toolbar.cpp:367 +#: ../src/widgets/select-toolbar.cpp:371 msgid "Now <b>gradients</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Kleurverlopen</b> worden nu <b>meeveranderd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:369 +#: ../src/widgets/select-toolbar.cpp:373 msgid "Now <b>gradients</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Kleurverlopen</b> blijven nu <b>gefixeerd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:380 +#: ../src/widgets/select-toolbar.cpp:384 msgid "Now <b>patterns</b> are <b>transformed</b> along with their objects when those are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Patronen</b> worden nu <b>meeveranderd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." -#: ../src/widgets/select-toolbar.cpp:382 +#: ../src/widgets/select-toolbar.cpp:386 msgid "Now <b>patterns</b> remain <b>fixed</b> when objects are transformed (moved, scaled, rotated, or skewed)." msgstr "<b>Patronen</b> blijven nu <b>gefixeerd</b> wanneer hun objecten worden veranderd (verplaatst, geschaald, gedraaid, of scheefgetrokken)." #. four spinbuttons -#: ../src/widgets/select-toolbar.cpp:500 +#: ../src/widgets/select-toolbar.cpp:504 msgctxt "Select toolbar" msgid "X position" msgstr "X-Positie" -#: ../src/widgets/select-toolbar.cpp:500 +#: ../src/widgets/select-toolbar.cpp:504 msgctxt "Select toolbar" msgid "X:" msgstr "X:" -#: ../src/widgets/select-toolbar.cpp:502 +#: ../src/widgets/select-toolbar.cpp:506 msgid "Horizontal coordinate of selection" msgstr "Horizontale coördinaat van de selectie" -#: ../src/widgets/select-toolbar.cpp:506 +#: ../src/widgets/select-toolbar.cpp:510 msgctxt "Select toolbar" msgid "Y position" msgstr "Y-Positie" -#: ../src/widgets/select-toolbar.cpp:506 +#: ../src/widgets/select-toolbar.cpp:510 msgctxt "Select toolbar" msgid "Y:" msgstr "Y:" -#: ../src/widgets/select-toolbar.cpp:508 +#: ../src/widgets/select-toolbar.cpp:512 msgid "Vertical coordinate of selection" msgstr "Verticale coördinaat van de selectie" -#: ../src/widgets/select-toolbar.cpp:512 +#: ../src/widgets/select-toolbar.cpp:516 msgctxt "Select toolbar" msgid "Width" msgstr "Breedte" -#: ../src/widgets/select-toolbar.cpp:512 +#: ../src/widgets/select-toolbar.cpp:516 msgctxt "Select toolbar" msgid "W:" msgstr "B:" -#: ../src/widgets/select-toolbar.cpp:514 +#: ../src/widgets/select-toolbar.cpp:518 msgid "Width of selection" msgstr "Breedte van de selectie" -#: ../src/widgets/select-toolbar.cpp:521 +#: ../src/widgets/select-toolbar.cpp:525 msgid "Lock width and height" msgstr "Verhouding tussen breedte en hoogte vastzetten" -#: ../src/widgets/select-toolbar.cpp:522 +#: ../src/widgets/select-toolbar.cpp:526 msgid "When locked, change both width and height by the same proportion" msgstr "Indien vastgezet, breedte en hoogte in dezelfde mate aanpassen" -#: ../src/widgets/select-toolbar.cpp:531 +#: ../src/widgets/select-toolbar.cpp:535 msgctxt "Select toolbar" msgid "Height" msgstr "Hoogte" -#: ../src/widgets/select-toolbar.cpp:531 +#: ../src/widgets/select-toolbar.cpp:535 msgctxt "Select toolbar" msgid "H:" msgstr "H:" -#: ../src/widgets/select-toolbar.cpp:533 +#: ../src/widgets/select-toolbar.cpp:537 msgid "Height of selection" msgstr "Hoogte van de selectie" -#: ../src/widgets/select-toolbar.cpp:583 +#: ../src/widgets/select-toolbar.cpp:587 msgid "Scale rounded corners" msgstr "Afgeronde hoeken schalen" -#: ../src/widgets/select-toolbar.cpp:594 +#: ../src/widgets/select-toolbar.cpp:598 msgid "Move gradients" msgstr "Kleurverlopen verplaatsen" -#: ../src/widgets/select-toolbar.cpp:605 +#: ../src/widgets/select-toolbar.cpp:609 msgid "Move patterns" msgstr "Patronen verplaatsen" -#: ../src/widgets/spiral-toolbar.cpp:115 +#: ../src/widgets/spiral-toolbar.cpp:111 msgid "Change spiral" msgstr "Spiraal aanpassen" -#: ../src/widgets/spiral-toolbar.cpp:261 +#: ../src/widgets/spiral-toolbar.cpp:257 msgid "just a curve" msgstr "gewoon een kromme" -#: ../src/widgets/spiral-toolbar.cpp:261 +#: ../src/widgets/spiral-toolbar.cpp:257 msgid "one full revolution" msgstr "één hele omwenteling" -#: ../src/widgets/spiral-toolbar.cpp:264 +#: ../src/widgets/spiral-toolbar.cpp:260 msgid "Number of turns" msgstr "Aantal stappen" -#: ../src/widgets/spiral-toolbar.cpp:264 +#: ../src/widgets/spiral-toolbar.cpp:260 msgid "Turns:" msgstr "Omwentelingen:" -#: ../src/widgets/spiral-toolbar.cpp:264 +#: ../src/widgets/spiral-toolbar.cpp:260 msgid "Number of revolutions" msgstr "Aantal omwentelingen" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "circle" msgstr "cirkel" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "edge is much denser" msgstr "rand is veel dichter" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "edge is denser" msgstr "rand is dichter" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "even" msgstr "gelijkmatig" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "center is denser" msgstr "centrum is dichter" -#: ../src/widgets/spiral-toolbar.cpp:275 +#: ../src/widgets/spiral-toolbar.cpp:271 msgid "center is much denser" msgstr "centrum is veel dichter" -#: ../src/widgets/spiral-toolbar.cpp:278 +#: ../src/widgets/spiral-toolbar.cpp:274 msgid "Divergence" msgstr "Uitwaaiering" -#: ../src/widgets/spiral-toolbar.cpp:278 +#: ../src/widgets/spiral-toolbar.cpp:274 msgid "Divergence:" msgstr "Uitwaaiering:" -#: ../src/widgets/spiral-toolbar.cpp:278 +#: ../src/widgets/spiral-toolbar.cpp:274 msgid "How much denser/sparser are outer revolutions; 1 = uniform" msgstr "Hoeveel de buitenste omwentelingen uitwaaieren; 1=gelijkmatig" -#: ../src/widgets/spiral-toolbar.cpp:289 +#: ../src/widgets/spiral-toolbar.cpp:285 msgid "starts from center" msgstr "begint in centrum" -#: ../src/widgets/spiral-toolbar.cpp:289 +#: ../src/widgets/spiral-toolbar.cpp:285 msgid "starts mid-way" msgstr "begint halfweg" -#: ../src/widgets/spiral-toolbar.cpp:289 +#: ../src/widgets/spiral-toolbar.cpp:285 msgid "starts near edge" msgstr "begint bij rand" -#: ../src/widgets/spiral-toolbar.cpp:292 +#: ../src/widgets/spiral-toolbar.cpp:288 msgid "Inner radius" msgstr "Binnenstraal" -#: ../src/widgets/spiral-toolbar.cpp:292 +#: ../src/widgets/spiral-toolbar.cpp:288 msgid "Inner radius:" msgstr "Binnenstraal:" -#: ../src/widgets/spiral-toolbar.cpp:292 +#: ../src/widgets/spiral-toolbar.cpp:288 msgid "Radius of the innermost revolution (relative to the spiral size)" msgstr "Straal van de binnenste omwenteling (ten opzichte van de spiraalgrootte)" -#: ../src/widgets/spiral-toolbar.cpp:305 -#: ../src/widgets/star-toolbar.cpp:577 +#: ../src/widgets/spiral-toolbar.cpp:301 +#: ../src/widgets/star-toolbar.cpp:573 msgid "Reset shape parameters to defaults (use Inkscape Preferences > Tools to change defaults)" msgstr "Zet de instellingen van de vorm terug naar de standaard instellingen (gebruik Bestand -> Inkscapevoorkeuren -> Gereedschappen om de standaard instellingen te wijzigen)" #. Width -#: ../src/widgets/spray-toolbar.cpp:129 +#: ../src/widgets/spray-toolbar.cpp:125 msgid "(narrow spray)" msgstr "(smalle verstuiving)" -#: ../src/widgets/spray-toolbar.cpp:129 +#: ../src/widgets/spray-toolbar.cpp:125 msgid "(broad spray)" msgstr "(brede verstuiving)" -#: ../src/widgets/spray-toolbar.cpp:132 +#: ../src/widgets/spray-toolbar.cpp:128 msgid "The width of the spray area (relative to the visible canvas area)" msgstr "De breedte van het verstuivingsgebied (relatief tov het canvas)" -#: ../src/widgets/spray-toolbar.cpp:145 +#: ../src/widgets/spray-toolbar.cpp:141 msgid "(maximum mean)" msgstr "(maximum gemiddelde)" -#: ../src/widgets/spray-toolbar.cpp:148 +#: ../src/widgets/spray-toolbar.cpp:144 msgid "Focus" msgstr "Focus" -#: ../src/widgets/spray-toolbar.cpp:148 +#: ../src/widgets/spray-toolbar.cpp:144 msgid "Focus:" msgstr "Focus:" -#: ../src/widgets/spray-toolbar.cpp:148 +#: ../src/widgets/spray-toolbar.cpp:144 msgid "0 to spray a spot; increase to enlarge the ring radius" msgstr "0 voor puntverstuiving; verhoog om de straal te vergroten." #. Standard_deviation -#: ../src/widgets/spray-toolbar.cpp:161 +#: ../src/widgets/spray-toolbar.cpp:157 msgid "(minimum scatter)" msgstr "(minimum spreiding)" -#: ../src/widgets/spray-toolbar.cpp:161 +#: ../src/widgets/spray-toolbar.cpp:157 msgid "(maximum scatter)" msgstr "(maximum spreiding)" -#: ../src/widgets/spray-toolbar.cpp:164 +#: ../src/widgets/spray-toolbar.cpp:160 msgctxt "Spray tool" msgid "Scatter" msgstr "Verspreiden" -#: ../src/widgets/spray-toolbar.cpp:164 +#: ../src/widgets/spray-toolbar.cpp:160 msgctxt "Spray tool" msgid "Scatter:" msgstr "Verspreiding:" -#: ../src/widgets/spray-toolbar.cpp:164 +#: ../src/widgets/spray-toolbar.cpp:160 msgid "Increase to scatter sprayed objects" msgstr "Verhoog om verstoven objecten te verspreiden" -#: ../src/widgets/spray-toolbar.cpp:183 +#: ../src/widgets/spray-toolbar.cpp:179 msgid "Spray copies of the initial selection" msgstr "Kopieën van de initiële selectie verstuiven" -#: ../src/widgets/spray-toolbar.cpp:190 +#: ../src/widgets/spray-toolbar.cpp:186 msgid "Spray clones of the initial selection" msgstr "Klonen van de initiële selectie verstuiven" -#: ../src/widgets/spray-toolbar.cpp:196 +#: ../src/widgets/spray-toolbar.cpp:192 msgid "Spray single path" msgstr "Verstuiven in één richting" -#: ../src/widgets/spray-toolbar.cpp:197 +#: ../src/widgets/spray-toolbar.cpp:193 msgid "Spray objects in a single path" msgstr "Objecten in één richting verstuiven" -#: ../src/widgets/spray-toolbar.cpp:201 -#: ../src/widgets/tweak-toolbar.cpp:271 +#: ../src/widgets/spray-toolbar.cpp:197 +#: ../src/widgets/tweak-toolbar.cpp:267 msgid "Mode" msgstr "Modus" #. Population -#: ../src/widgets/spray-toolbar.cpp:221 +#: ../src/widgets/spray-toolbar.cpp:217 msgid "(low population)" msgstr "(klein aantal)" -#: ../src/widgets/spray-toolbar.cpp:221 +#: ../src/widgets/spray-toolbar.cpp:217 msgid "(high population)" msgstr "(groot aantal)" -#: ../src/widgets/spray-toolbar.cpp:224 +#: ../src/widgets/spray-toolbar.cpp:220 msgid "Amount" msgstr "Hoeveelheid" -#: ../src/widgets/spray-toolbar.cpp:225 +#: ../src/widgets/spray-toolbar.cpp:221 msgid "Adjusts the number of items sprayed per click" msgstr "Het aantal verstoven objecten per klik" -#: ../src/widgets/spray-toolbar.cpp:241 +#: ../src/widgets/spray-toolbar.cpp:237 msgid "Use the pressure of the input device to alter the amount of sprayed objects" msgstr "De druk op het invoerapparaat gebruiken om het aantal verstoven objecten aan te passen" -#: ../src/widgets/spray-toolbar.cpp:251 +#: ../src/widgets/spray-toolbar.cpp:247 msgid "(high rotation variation)" msgstr "(grote variatie draaihoek)" -#: ../src/widgets/spray-toolbar.cpp:254 +#: ../src/widgets/spray-toolbar.cpp:250 msgid "Rotation" msgstr "Draaihoek" -#: ../src/widgets/spray-toolbar.cpp:254 +#: ../src/widgets/spray-toolbar.cpp:250 msgid "Rotation:" msgstr "Draaihoek:" -#: ../src/widgets/spray-toolbar.cpp:256 +#: ../src/widgets/spray-toolbar.cpp:252 #, no-c-format msgid "Variation of the rotation of the sprayed objects; 0% for the same rotation than the original object" msgstr "Variatie van de rotatie van de verstoven objecten; 0% voor dezelfde rotatie als het originele object" -#: ../src/widgets/spray-toolbar.cpp:269 +#: ../src/widgets/spray-toolbar.cpp:265 msgid "(high scale variation)" msgstr "(grote variatie schaal)" -#: ../src/widgets/spray-toolbar.cpp:272 +#: ../src/widgets/spray-toolbar.cpp:268 msgctxt "Spray tool" msgid "Scale" msgstr "Schaal" -#: ../src/widgets/spray-toolbar.cpp:272 +#: ../src/widgets/spray-toolbar.cpp:268 msgctxt "Spray tool" msgid "Scale:" msgstr "Schaal:" -#: ../src/widgets/spray-toolbar.cpp:274 +#: ../src/widgets/spray-toolbar.cpp:270 #, no-c-format msgid "Variation in the scale of the sprayed objects; 0% for the same scale than the original object" msgstr "Variatie van de schaal van de verstoven objecten; 0% voor de schaal van het originele object" @@ -24890,83 +24942,93 @@ msgstr "Variatie van de schaal van de verstoven objecten; 0% voor de schaal van msgid "Set attribute" msgstr "Attribuut instellen" -#: ../src/widgets/sp-color-icc-selector.cpp:107 +#: ../src/widgets/sp-color-icc-selector.cpp:257 msgid "CMS" msgstr "KBS" -#: ../src/widgets/sp-color-icc-selector.cpp:214 +#: ../src/widgets/sp-color-icc-selector.cpp:355 #: ../src/widgets/sp-color-scales.cpp:428 msgid "_R:" msgstr "_R:" -#: ../src/widgets/sp-color-icc-selector.cpp:214 -#: ../src/widgets/sp-color-icc-selector.cpp:215 +#. TYPE_RGB_16 +#: ../src/widgets/sp-color-icc-selector.cpp:356 #: ../src/widgets/sp-color-scales.cpp:431 msgid "_G:" msgstr "_G:" -#: ../src/widgets/sp-color-icc-selector.cpp:214 +#: ../src/widgets/sp-color-icc-selector.cpp:357 #: ../src/widgets/sp-color-scales.cpp:434 msgid "_B:" msgstr "_B:" +#: ../src/widgets/sp-color-icc-selector.cpp:359 +#, fuzzy +msgid "G:" +msgstr "_G:" + +#: ../src/widgets/sp-color-icc-selector.cpp:359 +msgid "Gray" +msgstr "Grijs" + # Hue - Tint. -#: ../src/widgets/sp-color-icc-selector.cpp:216 -#: ../src/widgets/sp-color-icc-selector.cpp:217 +#. TYPE_GRAY_16 +#: ../src/widgets/sp-color-icc-selector.cpp:361 +#: ../src/widgets/sp-color-icc-selector.cpp:365 #: ../src/widgets/sp-color-scales.cpp:454 msgid "_H:" msgstr "_T:" # Saturation - Verzadiging. -#: ../src/widgets/sp-color-icc-selector.cpp:216 -#: ../src/widgets/sp-color-icc-selector.cpp:217 +#. TYPE_HSV_16 +#: ../src/widgets/sp-color-icc-selector.cpp:362 +#: ../src/widgets/sp-color-icc-selector.cpp:367 #: ../src/widgets/sp-color-scales.cpp:457 msgid "_S:" msgstr "_V:" # Lightness - Helderheid. -#: ../src/widgets/sp-color-icc-selector.cpp:217 +#. TYPE_HLS_16 +#: ../src/widgets/sp-color-icc-selector.cpp:366 #: ../src/widgets/sp-color-scales.cpp:460 msgid "_L:" msgstr "_L:" -#: ../src/widgets/sp-color-icc-selector.cpp:218 -#: ../src/widgets/sp-color-icc-selector.cpp:219 +#: ../src/widgets/sp-color-icc-selector.cpp:369 +#: ../src/widgets/sp-color-icc-selector.cpp:374 #: ../src/widgets/sp-color-scales.cpp:482 msgid "_C:" msgstr "_C:" -#: ../src/widgets/sp-color-icc-selector.cpp:218 -#: ../src/widgets/sp-color-icc-selector.cpp:219 +#. TYPE_CMYK_16 +#. TYPE_CMY_16 +#: ../src/widgets/sp-color-icc-selector.cpp:370 +#: ../src/widgets/sp-color-icc-selector.cpp:375 #: ../src/widgets/sp-color-scales.cpp:485 msgid "_M:" msgstr "_M:" -#: ../src/widgets/sp-color-icc-selector.cpp:218 -#: ../src/widgets/sp-color-icc-selector.cpp:219 +#: ../src/widgets/sp-color-icc-selector.cpp:371 +#: ../src/widgets/sp-color-icc-selector.cpp:376 #: ../src/widgets/sp-color-scales.cpp:488 msgid "_Y:" msgstr "_Y:" -#: ../src/widgets/sp-color-icc-selector.cpp:218 +#: ../src/widgets/sp-color-icc-selector.cpp:372 #: ../src/widgets/sp-color-scales.cpp:491 msgid "_K:" msgstr "_K:" -#: ../src/widgets/sp-color-icc-selector.cpp:229 -msgid "Gray" -msgstr "Grijs" - -#: ../src/widgets/sp-color-icc-selector.cpp:298 +#: ../src/widgets/sp-color-icc-selector.cpp:455 msgid "Fix" msgstr "Corrigeren" -#: ../src/widgets/sp-color-icc-selector.cpp:301 +#: ../src/widgets/sp-color-icc-selector.cpp:458 msgid "Fix RGB fallback to match icc-color() value." msgstr "RGB-standaardwaarde aanpassen aan waarde van icc-color()." #. Label -#: ../src/widgets/sp-color-icc-selector.cpp:439 +#: ../src/widgets/sp-color-icc-selector.cpp:561 #: ../src/widgets/sp-color-scales.cpp:437 #: ../src/widgets/sp-color-scales.cpp:463 #: ../src/widgets/sp-color-scales.cpp:494 @@ -24974,8 +25036,8 @@ msgstr "RGB-standaardwaarde aanpassen aan waarde van icc-color()." msgid "_A:" msgstr "_A:" -#: ../src/widgets/sp-color-icc-selector.cpp:458 -#: ../src/widgets/sp-color-icc-selector.cpp:480 +#: ../src/widgets/sp-color-icc-selector.cpp:572 +#: ../src/widgets/sp-color-icc-selector.cpp:585 #: ../src/widgets/sp-color-scales.cpp:438 #: ../src/widgets/sp-color-scales.cpp:439 #: ../src/widgets/sp-color-scales.cpp:464 @@ -25033,183 +25095,183 @@ msgstr "Waarde" msgid "Type text in a text node" msgstr "Tekst tikken in een tekstobject" -#: ../src/widgets/star-toolbar.cpp:114 +#: ../src/widgets/star-toolbar.cpp:110 msgid "Star: Change number of corners" msgstr "Ster: aantal hoeken veranderen" -#: ../src/widgets/star-toolbar.cpp:167 +#: ../src/widgets/star-toolbar.cpp:163 msgid "Star: Change spoke ratio" msgstr "Ster: spaakverhouding veranderen" -#: ../src/widgets/star-toolbar.cpp:212 +#: ../src/widgets/star-toolbar.cpp:208 msgid "Make polygon" msgstr "Veelhoek maken" -#: ../src/widgets/star-toolbar.cpp:212 +#: ../src/widgets/star-toolbar.cpp:208 msgid "Make star" msgstr "Ster maken" -#: ../src/widgets/star-toolbar.cpp:251 +#: ../src/widgets/star-toolbar.cpp:247 msgid "Star: Change rounding" msgstr "Ster: afronding veranderen" -#: ../src/widgets/star-toolbar.cpp:291 +#: ../src/widgets/star-toolbar.cpp:287 msgid "Star: Change randomization" msgstr "Ster: willekeurigheid veranderen" -#: ../src/widgets/star-toolbar.cpp:475 +#: ../src/widgets/star-toolbar.cpp:471 msgid "Regular polygon (with one handle) instead of a star" msgstr "Regelmatige veelhoek (met één handvat) in plaats van een ster" -#: ../src/widgets/star-toolbar.cpp:482 +#: ../src/widgets/star-toolbar.cpp:478 msgid "Star instead of a regular polygon (with one handle)" msgstr "Ster in plaats van regelmatige veelhoek (met één handvat)" -#: ../src/widgets/star-toolbar.cpp:503 +#: ../src/widgets/star-toolbar.cpp:499 msgid "triangle/tri-star" msgstr "driehoek/driepuntige ster" -#: ../src/widgets/star-toolbar.cpp:503 +#: ../src/widgets/star-toolbar.cpp:499 msgid "square/quad-star" msgstr "vierkant/vierpuntige ster" -#: ../src/widgets/star-toolbar.cpp:503 +#: ../src/widgets/star-toolbar.cpp:499 msgid "pentagon/five-pointed star" msgstr "vijfhoek/vijfpuntige ster" -#: ../src/widgets/star-toolbar.cpp:503 +#: ../src/widgets/star-toolbar.cpp:499 msgid "hexagon/six-pointed star" msgstr "zeshoek/zespuntige ster" -#: ../src/widgets/star-toolbar.cpp:506 +#: ../src/widgets/star-toolbar.cpp:502 msgid "Corners" msgstr "Hoeken" -#: ../src/widgets/star-toolbar.cpp:506 +#: ../src/widgets/star-toolbar.cpp:502 msgid "Corners:" msgstr "Hoeken:" -#: ../src/widgets/star-toolbar.cpp:506 +#: ../src/widgets/star-toolbar.cpp:502 msgid "Number of corners of a polygon or star" msgstr "Aantal hoeken van een veelhoek of ster" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "thin-ray star" msgstr "dunstralige ster" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "pentagram" msgstr "pentagram" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "hexagram" msgstr "hexagram" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "heptagram" msgstr "heptagram" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "octagram" msgstr "octagram" -#: ../src/widgets/star-toolbar.cpp:519 +#: ../src/widgets/star-toolbar.cpp:515 msgid "regular polygon" msgstr "regelmatige veelhoek" -#: ../src/widgets/star-toolbar.cpp:522 +#: ../src/widgets/star-toolbar.cpp:518 msgid "Spoke ratio" msgstr "Spaakverhouding" -#: ../src/widgets/star-toolbar.cpp:522 +#: ../src/widgets/star-toolbar.cpp:518 msgid "Spoke ratio:" msgstr "Spaakverhouding:" #. TRANSLATORS: Tip radius of a star is the distance from the center to the farthest handle. #. Base radius is the same for the closest handle. -#: ../src/widgets/star-toolbar.cpp:525 +#: ../src/widgets/star-toolbar.cpp:521 msgid "Base radius to tip radius ratio" msgstr "Verhouding tussen de straal en de lengte van een spaak" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "stretched" msgstr "uitgerekt" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "twisted" msgstr "gewrongen" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "slightly pinched" msgstr "licht afgeknepen" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "NOT rounded" msgstr "NIET afgerond" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "slightly rounded" msgstr "licht afgerond" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "visibly rounded" msgstr "zichtbaar afgerond" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "well rounded" msgstr "goed afgerond" -#: ../src/widgets/star-toolbar.cpp:543 +#: ../src/widgets/star-toolbar.cpp:539 msgid "amply rounded" msgstr "flink afgerond" -#: ../src/widgets/star-toolbar.cpp:543 -#: ../src/widgets/star-toolbar.cpp:558 +#: ../src/widgets/star-toolbar.cpp:539 +#: ../src/widgets/star-toolbar.cpp:554 msgid "blown up" msgstr "opgeblazen" # Het gaat hier om een hoeveelheid. -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:542 msgid "Rounded:" msgstr "Afronding:" -#: ../src/widgets/star-toolbar.cpp:546 +#: ../src/widgets/star-toolbar.cpp:542 msgid "How much rounded are the corners (0 for sharp)" msgstr "Hoe hoeken worden afgerond (0 voor scherpe hoeken)" -#: ../src/widgets/star-toolbar.cpp:558 +#: ../src/widgets/star-toolbar.cpp:554 msgid "NOT randomized" msgstr "GEEN willekeur" -#: ../src/widgets/star-toolbar.cpp:558 +#: ../src/widgets/star-toolbar.cpp:554 msgid "slightly irregular" msgstr "licht onregelmatig" -#: ../src/widgets/star-toolbar.cpp:558 +#: ../src/widgets/star-toolbar.cpp:554 msgid "visibly randomized" msgstr "zichtbaar onregelmatig" -#: ../src/widgets/star-toolbar.cpp:558 +#: ../src/widgets/star-toolbar.cpp:554 msgid "strongly randomized" msgstr "sterk onregelmatig" -#: ../src/widgets/star-toolbar.cpp:561 +#: ../src/widgets/star-toolbar.cpp:557 msgid "Randomized" msgstr "Willekeur" -#: ../src/widgets/star-toolbar.cpp:561 +#: ../src/widgets/star-toolbar.cpp:557 msgid "Randomized:" msgstr "Willekeur:" -#: ../src/widgets/star-toolbar.cpp:561 +#: ../src/widgets/star-toolbar.cpp:557 msgid "Scatter randomly the corners and angles" msgstr "Punten en hoeken willekeurig uitspreiden" -#: ../src/widgets/stroke-style.cpp:185 +#: ../src/widgets/stroke-style.cpp:188 msgid "Stroke width" msgstr "Lijnbreedte" -#: ../src/widgets/stroke-style.cpp:187 +#: ../src/widgets/stroke-style.cpp:190 msgctxt "Stroke width" msgid "_Width:" msgstr "_Breedte:" @@ -25217,92 +25279,88 @@ msgstr "_Breedte:" #. TRANSLATORS: Miter join: joining lines with a sharp (pointed) corner. #. For an example, draw a triangle with a large stroke width and modify the #. "Join" option (in the Fill and Stroke dialog). -#: ../src/widgets/stroke-style.cpp:232 +#: ../src/widgets/stroke-style.cpp:235 msgid "Miter join" msgstr "Scherpe hoek" #. TRANSLATORS: Round join: joining lines with a rounded corner. #. For an example, draw a triangle with a large stroke width and modify the #. "Join" option (in the Fill and Stroke dialog). -#: ../src/widgets/stroke-style.cpp:240 +#: ../src/widgets/stroke-style.cpp:243 msgid "Round join" msgstr "Afgeronde hoek" #. TRANSLATORS: Bevel join: joining lines with a blunted (flattened) corner. #. For an example, draw a triangle with a large stroke width and modify the #. "Join" option (in the Fill and Stroke dialog). -#: ../src/widgets/stroke-style.cpp:248 +#: ../src/widgets/stroke-style.cpp:251 msgid "Bevel join" msgstr "Schuine hoek" -#: ../src/widgets/stroke-style.cpp:273 +#: ../src/widgets/stroke-style.cpp:276 msgid "Miter _limit:" msgstr "_Hoeklimiet:" #. Cap type #. TRANSLATORS: cap type specifies the shape for the ends of lines #. spw_label(t, _("_Cap:"), 0, i); -#: ../src/widgets/stroke-style.cpp:289 +#: ../src/widgets/stroke-style.cpp:292 msgid "Cap:" msgstr "Uiteinde:" #. TRANSLATORS: Butt cap: the line shape does not extend beyond the end point #. of the line; the ends of the line are square -#: ../src/widgets/stroke-style.cpp:300 +#: ../src/widgets/stroke-style.cpp:303 msgid "Butt cap" msgstr "Afgekapt uiteinde" #. TRANSLATORS: Round cap: the line shape extends beyond the end point of the #. line; the ends of the line are rounded -#: ../src/widgets/stroke-style.cpp:307 +#: ../src/widgets/stroke-style.cpp:310 msgid "Round cap" msgstr "Rond uiteinde" #. TRANSLATORS: Square cap: the line shape extends beyond the end point of the #. line; the ends of the line are square -#: ../src/widgets/stroke-style.cpp:314 +#: ../src/widgets/stroke-style.cpp:317 msgid "Square cap" msgstr "Vierkant uiteinde" #. Dash -#: ../src/widgets/stroke-style.cpp:319 +#: ../src/widgets/stroke-style.cpp:322 msgid "Dashes:" msgstr "Streepjes:" -#: ../src/widgets/stroke-style.cpp:346 -msgid "_Start Markers:" -msgstr "_Beginmarkering:" +#. Drop down marker selectors +#. TRANSLATORS: Path markers are an SVG feature that allows you to attach arbitrary shapes +#. (arrowheads, bullets, faces, whatever) to the start, end, or middle nodes of a path. +#: ../src/widgets/stroke-style.cpp:348 +#, fuzzy +msgid "Markers:" +msgstr "Markeringen" -#: ../src/widgets/stroke-style.cpp:347 +#: ../src/widgets/stroke-style.cpp:354 msgid "Start Markers are drawn on the first node of a path or shape" msgstr "Beginmarkeringen worden getekend bij het eerste knooppunt van een pad of vorm" -#: ../src/widgets/stroke-style.cpp:365 -msgid "_Mid Markers:" -msgstr "_Middenmarkering:" - -#: ../src/widgets/stroke-style.cpp:366 +#: ../src/widgets/stroke-style.cpp:363 msgid "Mid Markers are drawn on every node of a path or shape except the first and last nodes" msgstr "Middennmarkeringen worden getekend bij elk knooppunt van een pad of vorm behalve het eerste en laatste knooppunt" -#: ../src/widgets/stroke-style.cpp:384 -msgid "_End Markers:" -msgstr "_Eindmarkering:" - -#: ../src/widgets/stroke-style.cpp:385 +#: ../src/widgets/stroke-style.cpp:372 msgid "End Markers are drawn on the last node of a path or shape" msgstr "Eindmarkeringen worden getekend bij het laatste knooppunt van een pad of vorm" -#: ../src/widgets/stroke-style.cpp:512 +#: ../src/widgets/stroke-style.cpp:490 msgid "Set markers" msgstr "Markeringen instellen" -#: ../src/widgets/stroke-style.cpp:1100 -#: ../src/widgets/stroke-style.cpp:1185 +#: ../src/widgets/stroke-style.cpp:1020 +#: ../src/widgets/stroke-style.cpp:1105 msgid "Set stroke style" msgstr "Lijnstijl instellen" -#: ../src/widgets/stroke-style.cpp:1273 +#: ../src/widgets/stroke-style.cpp:1193 msgid "Set marker color" msgstr "Markeringskleur instellen" @@ -25310,617 +25368,617 @@ msgstr "Markeringskleur instellen" msgid "Change swatch color" msgstr "Paletkleur aanpassen" -#: ../src/widgets/text-toolbar.cpp:178 +#: ../src/widgets/text-toolbar.cpp:174 msgid "Text: Change font family" msgstr "Tekst: lettertypefamilie veranderen" -#: ../src/widgets/text-toolbar.cpp:242 +#: ../src/widgets/text-toolbar.cpp:238 msgid "Text: Change font size" msgstr "Tekst: lettertypegrootte veranderen" -#: ../src/widgets/text-toolbar.cpp:280 +#: ../src/widgets/text-toolbar.cpp:276 msgid "Text: Change font style" msgstr "Tekst: lettertypestijl veranderen" -#: ../src/widgets/text-toolbar.cpp:358 +#: ../src/widgets/text-toolbar.cpp:354 msgid "Text: Change superscript or subscript" msgstr "Tekst: superscript en subscript veranderen" -#: ../src/widgets/text-toolbar.cpp:503 +#: ../src/widgets/text-toolbar.cpp:499 msgid "Text: Change alignment" msgstr "Tekst: uitlijning veranderen" -#: ../src/widgets/text-toolbar.cpp:546 +#: ../src/widgets/text-toolbar.cpp:542 msgid "Text: Change line-height" msgstr "Tekst: lijnhoogte veranderen" -#: ../src/widgets/text-toolbar.cpp:595 +#: ../src/widgets/text-toolbar.cpp:591 msgid "Text: Change word-spacing" msgstr "Tekst: woordafstand veranderen" -#: ../src/widgets/text-toolbar.cpp:636 +#: ../src/widgets/text-toolbar.cpp:632 msgid "Text: Change letter-spacing" msgstr "Tekst: letterafstand veranderen" -#: ../src/widgets/text-toolbar.cpp:676 +#: ../src/widgets/text-toolbar.cpp:672 msgid "Text: Change dx (kern)" msgstr "Tekst: dx veranderen (kerning)" -#: ../src/widgets/text-toolbar.cpp:710 +#: ../src/widgets/text-toolbar.cpp:706 msgid "Text: Change dy" msgstr "Tekst: dy veranderen" -#: ../src/widgets/text-toolbar.cpp:745 +#: ../src/widgets/text-toolbar.cpp:741 msgid "Text: Change rotate" msgstr "Tekst: draaiing veranderen" -#: ../src/widgets/text-toolbar.cpp:793 +#: ../src/widgets/text-toolbar.cpp:789 msgid "Text: Change orientation" msgstr "Tekst: oriëntatie veranderen" -#: ../src/widgets/text-toolbar.cpp:1235 +#: ../src/widgets/text-toolbar.cpp:1226 msgid "Font Family" msgstr "Lettertypefamilie" -#: ../src/widgets/text-toolbar.cpp:1236 +#: ../src/widgets/text-toolbar.cpp:1227 msgid "Select Font Family (Alt-X to access)" msgstr "Selecteer lettertypefamilie (Alt+X voor dialoog)" #. Focus widget #. Enable entry completion -#: ../src/widgets/text-toolbar.cpp:1246 +#: ../src/widgets/text-toolbar.cpp:1237 msgid "Select all text with this font-family" msgstr "" -#: ../src/widgets/text-toolbar.cpp:1250 +#: ../src/widgets/text-toolbar.cpp:1241 msgid "Font not found on system" msgstr "Lettertype niet aanwezig op systeem" -#: ../src/widgets/text-toolbar.cpp:1309 +#: ../src/widgets/text-toolbar.cpp:1300 msgid "Font Style" msgstr "Lettertypestijl" -#: ../src/widgets/text-toolbar.cpp:1310 +#: ../src/widgets/text-toolbar.cpp:1301 msgid "Font style" msgstr "Lettertypestijl" #. Name -#: ../src/widgets/text-toolbar.cpp:1327 +#: ../src/widgets/text-toolbar.cpp:1318 msgid "Toggle Superscript" msgstr "Superscript" #. Label -#: ../src/widgets/text-toolbar.cpp:1328 +#: ../src/widgets/text-toolbar.cpp:1319 msgid "Toggle superscript" msgstr "Superscript" #. Name -#: ../src/widgets/text-toolbar.cpp:1340 +#: ../src/widgets/text-toolbar.cpp:1331 msgid "Toggle Subscript" msgstr "Subscript" #. Label -#: ../src/widgets/text-toolbar.cpp:1341 +#: ../src/widgets/text-toolbar.cpp:1332 msgid "Toggle subscript" msgstr "Subscript" -#: ../src/widgets/text-toolbar.cpp:1382 +#: ../src/widgets/text-toolbar.cpp:1373 msgid "Justify" msgstr "Uitgevuld" #. Name -#: ../src/widgets/text-toolbar.cpp:1389 +#: ../src/widgets/text-toolbar.cpp:1380 msgid "Alignment" msgstr "Uitlijning" #. Label -#: ../src/widgets/text-toolbar.cpp:1390 +#: ../src/widgets/text-toolbar.cpp:1381 msgid "Text alignment" msgstr "Tekstuitlijning" -#: ../src/widgets/text-toolbar.cpp:1417 +#: ../src/widgets/text-toolbar.cpp:1408 msgid "Horizontal" msgstr "Horizontaal" -#: ../src/widgets/text-toolbar.cpp:1424 +#: ../src/widgets/text-toolbar.cpp:1415 msgid "Vertical" msgstr "Verticaal" #. Label -#: ../src/widgets/text-toolbar.cpp:1431 +#: ../src/widgets/text-toolbar.cpp:1422 msgid "Text orientation" msgstr "Tekstoriëntatie" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1454 +#: ../src/widgets/text-toolbar.cpp:1445 msgid "Smaller spacing" msgstr "Kleinere afstand" -#: ../src/widgets/text-toolbar.cpp:1454 -#: ../src/widgets/text-toolbar.cpp:1485 -#: ../src/widgets/text-toolbar.cpp:1516 +#: ../src/widgets/text-toolbar.cpp:1445 +#: ../src/widgets/text-toolbar.cpp:1475 +#: ../src/widgets/text-toolbar.cpp:1505 msgctxt "Text tool" msgid "Normal" msgstr "Normal" -#: ../src/widgets/text-toolbar.cpp:1454 +#: ../src/widgets/text-toolbar.cpp:1445 msgid "Larger spacing" msgstr "Grotere afstand" #. name -#: ../src/widgets/text-toolbar.cpp:1459 +#: ../src/widgets/text-toolbar.cpp:1450 msgid "Line Height" msgstr "Lijnhoogte" #. label -#: ../src/widgets/text-toolbar.cpp:1460 +#: ../src/widgets/text-toolbar.cpp:1451 msgid "Line:" msgstr "Lijn:" #. short label -#: ../src/widgets/text-toolbar.cpp:1461 +#: ../src/widgets/text-toolbar.cpp:1452 msgid "Spacing between lines (times font size)" msgstr "Ruimte tussen lijnen (maal lettertypegrootte)" #. Drop down menu -#: ../src/widgets/text-toolbar.cpp:1485 -#: ../src/widgets/text-toolbar.cpp:1516 +#: ../src/widgets/text-toolbar.cpp:1475 +#: ../src/widgets/text-toolbar.cpp:1505 msgid "Negative spacing" msgstr "Negatieve afstand" -#: ../src/widgets/text-toolbar.cpp:1485 -#: ../src/widgets/text-toolbar.cpp:1516 +#: ../src/widgets/text-toolbar.cpp:1475 +#: ../src/widgets/text-toolbar.cpp:1505 msgid "Positive spacing" msgstr "Positieve afstand" #. name -#: ../src/widgets/text-toolbar.cpp:1490 +#: ../src/widgets/text-toolbar.cpp:1480 msgid "Word spacing" msgstr "Woordafstand" #. label -#: ../src/widgets/text-toolbar.cpp:1491 +#: ../src/widgets/text-toolbar.cpp:1481 msgid "Word:" msgstr "Woord:" #. short label -#: ../src/widgets/text-toolbar.cpp:1492 +#: ../src/widgets/text-toolbar.cpp:1482 msgid "Spacing between words (px)" msgstr "Ruimte tussen woorden (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1521 +#: ../src/widgets/text-toolbar.cpp:1510 msgid "Letter spacing" msgstr "Letterafstand" #. label -#: ../src/widgets/text-toolbar.cpp:1522 +#: ../src/widgets/text-toolbar.cpp:1511 msgid "Letter:" msgstr "Letter:" #. short label -#: ../src/widgets/text-toolbar.cpp:1523 +#: ../src/widgets/text-toolbar.cpp:1512 msgid "Spacing between letters (px)" msgstr "Ruimte tussen letters (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1552 +#: ../src/widgets/text-toolbar.cpp:1540 msgid "Kerning" msgstr "Overhang" #. label -#: ../src/widgets/text-toolbar.cpp:1553 +#: ../src/widgets/text-toolbar.cpp:1541 msgid "Kern:" msgstr "Overhang:" #. short label -#: ../src/widgets/text-toolbar.cpp:1554 +#: ../src/widgets/text-toolbar.cpp:1542 msgid "Horizontal kerning (px)" msgstr "Horizontale overhang (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1583 +#: ../src/widgets/text-toolbar.cpp:1570 msgid "Vertical Shift" msgstr "Verticale verplaatsing" #. label -#: ../src/widgets/text-toolbar.cpp:1584 +#: ../src/widgets/text-toolbar.cpp:1571 msgid "Vert:" msgstr "Vert:" #. short label -#: ../src/widgets/text-toolbar.cpp:1585 +#: ../src/widgets/text-toolbar.cpp:1572 msgid "Vertical shift (px)" msgstr "Verticale verplaatsing (px)" #. name -#: ../src/widgets/text-toolbar.cpp:1614 +#: ../src/widgets/text-toolbar.cpp:1600 msgid "Letter rotation" msgstr "Letterrotatie" #. label -#: ../src/widgets/text-toolbar.cpp:1615 +#: ../src/widgets/text-toolbar.cpp:1601 msgid "Rot:" msgstr "Rot:" #. short label -#: ../src/widgets/text-toolbar.cpp:1616 +#: ../src/widgets/text-toolbar.cpp:1602 msgid "Character rotation (degrees)" msgstr "Karakterrotatie (graden)" -#: ../src/widgets/toolbox.cpp:177 +#: ../src/widgets/toolbox.cpp:179 msgid "Color/opacity used for color tweaking" msgstr "Kleur en ondoorzichtigheid die gebruikt worden in verfmodi" -#: ../src/widgets/toolbox.cpp:185 +#: ../src/widgets/toolbox.cpp:187 msgid "Style of new stars" msgstr "Stijl van nieuwe sterren" -#: ../src/widgets/toolbox.cpp:187 +#: ../src/widgets/toolbox.cpp:189 msgid "Style of new rectangles" msgstr "Stijl van nieuwe rechthoeken" -#: ../src/widgets/toolbox.cpp:189 +#: ../src/widgets/toolbox.cpp:191 msgid "Style of new 3D boxes" msgstr "Stijl van nieuwe 3D-kubussen" -#: ../src/widgets/toolbox.cpp:191 +#: ../src/widgets/toolbox.cpp:193 msgid "Style of new ellipses" msgstr "Stijl van nieuwe ellipsen" -#: ../src/widgets/toolbox.cpp:193 +#: ../src/widgets/toolbox.cpp:195 msgid "Style of new spirals" msgstr "Stijl van nieuwe spiralen" -#: ../src/widgets/toolbox.cpp:195 +#: ../src/widgets/toolbox.cpp:197 msgid "Style of new paths created by Pencil" msgstr "Stijl van nieuwe paden getekend met het potlood" -#: ../src/widgets/toolbox.cpp:197 +#: ../src/widgets/toolbox.cpp:199 msgid "Style of new paths created by Pen" msgstr "Stijl van nieuwe paden getrokken met pen" -#: ../src/widgets/toolbox.cpp:199 +#: ../src/widgets/toolbox.cpp:201 msgid "Style of new calligraphic strokes" msgstr "Stijl van nieuwe kalligrafische lijnen" -#: ../src/widgets/toolbox.cpp:201 #: ../src/widgets/toolbox.cpp:203 +#: ../src/widgets/toolbox.cpp:205 msgid "TBD" msgstr "Te bepalen" -#: ../src/widgets/toolbox.cpp:215 +#: ../src/widgets/toolbox.cpp:217 msgid "Style of Paint Bucket fill objects" msgstr "Stijl van nieuwe verfemmerobjecten" -#: ../src/widgets/toolbox.cpp:1678 +#: ../src/widgets/toolbox.cpp:1676 msgid "Bounding box" msgstr "Omvattend vak" -#: ../src/widgets/toolbox.cpp:1678 +#: ../src/widgets/toolbox.cpp:1676 msgid "Snap bounding boxes" msgstr "Omvattende vakken kleven" -#: ../src/widgets/toolbox.cpp:1687 +#: ../src/widgets/toolbox.cpp:1685 msgid "Bounding box edges" msgstr "Randen van omvattend vak" -#: ../src/widgets/toolbox.cpp:1687 +#: ../src/widgets/toolbox.cpp:1685 msgid "Snap to edges of a bounding box" msgstr "Aan randen van omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:1696 +#: ../src/widgets/toolbox.cpp:1694 msgid "Bounding box corners" msgstr "Hoeken van omvattend vak" -#: ../src/widgets/toolbox.cpp:1696 +#: ../src/widgets/toolbox.cpp:1694 msgid "Snap bounding box corners" msgstr "Aan hoeken van omvattend vak kleven" -#: ../src/widgets/toolbox.cpp:1705 +#: ../src/widgets/toolbox.cpp:1703 msgid "BBox Edge Midpoints" msgstr "Midden randen omvattend vak" -#: ../src/widgets/toolbox.cpp:1705 +#: ../src/widgets/toolbox.cpp:1703 msgid "Snap midpoints of bounding box edges" msgstr "Middens van de randen van omvattende vakken kleven" -#: ../src/widgets/toolbox.cpp:1715 +#: ../src/widgets/toolbox.cpp:1713 msgid "BBox Centers" msgstr "Middelpunt omvattend vak" -#: ../src/widgets/toolbox.cpp:1715 +#: ../src/widgets/toolbox.cpp:1713 msgid "Snapping centers of bounding boxes" msgstr "Middelpunten van omvattende vakken kleven" -#: ../src/widgets/toolbox.cpp:1724 +#: ../src/widgets/toolbox.cpp:1722 msgid "Snap nodes, paths, and handles" msgstr "Knooppunten, paden en handvatten kleven" -#: ../src/widgets/toolbox.cpp:1732 +#: ../src/widgets/toolbox.cpp:1730 msgid "Snap to paths" msgstr "Aan paden kleven" -#: ../src/widgets/toolbox.cpp:1741 +#: ../src/widgets/toolbox.cpp:1739 msgid "Path intersections" msgstr "Kruispunten van paden" -#: ../src/widgets/toolbox.cpp:1741 +#: ../src/widgets/toolbox.cpp:1739 msgid "Snap to path intersections" msgstr "Aan kruispunten van paden kleven" -#: ../src/widgets/toolbox.cpp:1750 +#: ../src/widgets/toolbox.cpp:1748 msgid "To nodes" msgstr "Aan knooppunten" -#: ../src/widgets/toolbox.cpp:1750 +#: ../src/widgets/toolbox.cpp:1748 msgid "Snap cusp nodes, incl. rectangle corners" msgstr "Hoekige knooppunte, inclusief hoeken van rechthoeken, kleven" -#: ../src/widgets/toolbox.cpp:1759 +#: ../src/widgets/toolbox.cpp:1757 msgid "Smooth nodes" msgstr "Afgevlakte knooppunten" -#: ../src/widgets/toolbox.cpp:1759 +#: ../src/widgets/toolbox.cpp:1757 msgid "Snap smooth nodes, incl. quadrant points of ellipses" msgstr "Afgevlakte knooppunten, inclusief kwadrantpunten van ellipsen, kleven" -#: ../src/widgets/toolbox.cpp:1768 +#: ../src/widgets/toolbox.cpp:1766 msgid "Line Midpoints" msgstr "Midden lijnsegment" -#: ../src/widgets/toolbox.cpp:1768 +#: ../src/widgets/toolbox.cpp:1766 msgid "Snap midpoints of line segments" msgstr "Middens van lijnsegmenten kleven" -#: ../src/widgets/toolbox.cpp:1777 +#: ../src/widgets/toolbox.cpp:1775 msgid "Others" msgstr "Andere" -#: ../src/widgets/toolbox.cpp:1777 +#: ../src/widgets/toolbox.cpp:1775 msgid "Snap other points (centers, guide origins, gradient handles, etc.)" msgstr "Kleven van andere punten (middelpunten, oorsprong hulplijn, kleurverloophandvatten, etc.)" -#: ../src/widgets/toolbox.cpp:1785 +#: ../src/widgets/toolbox.cpp:1783 msgid "Object Centers" msgstr "Objectmiddelpunten" -#: ../src/widgets/toolbox.cpp:1785 +#: ../src/widgets/toolbox.cpp:1783 msgid "Snap centers of objects" msgstr "Middelpunten van objecten kleven" -#: ../src/widgets/toolbox.cpp:1794 +#: ../src/widgets/toolbox.cpp:1792 msgid "Rotation Centers" msgstr "Rotatiemiddelpunt" -#: ../src/widgets/toolbox.cpp:1794 +#: ../src/widgets/toolbox.cpp:1792 msgid "Snap an item's rotation center" msgstr "Rotatiecentra kleven" -#: ../src/widgets/toolbox.cpp:1803 +#: ../src/widgets/toolbox.cpp:1801 msgid "Text baseline" msgstr "Grondlijn tekst" -#: ../src/widgets/toolbox.cpp:1803 +#: ../src/widgets/toolbox.cpp:1801 msgid "Snap text anchors and baselines" msgstr "Tekstankers en basislijnen kleven" -#: ../src/widgets/toolbox.cpp:1813 +#: ../src/widgets/toolbox.cpp:1811 msgid "Page border" msgstr "Paginarand" -#: ../src/widgets/toolbox.cpp:1813 +#: ../src/widgets/toolbox.cpp:1811 msgid "Snap to the page border" msgstr "Aan paginarand kleven" -#: ../src/widgets/toolbox.cpp:1822 +#: ../src/widgets/toolbox.cpp:1820 msgid "Snap to grids" msgstr "Aan rasters kleven" -#: ../src/widgets/toolbox.cpp:1831 +#: ../src/widgets/toolbox.cpp:1829 msgid "Snap guides" msgstr "Hulplijnen kleven" #. Width -#: ../src/widgets/tweak-toolbar.cpp:143 +#: ../src/widgets/tweak-toolbar.cpp:139 msgid "(pinch tweak)" msgstr "(precieze boetsering)" -#: ../src/widgets/tweak-toolbar.cpp:143 +#: ../src/widgets/tweak-toolbar.cpp:139 msgid "(broad tweak)" msgstr "(brede boetsering)" -#: ../src/widgets/tweak-toolbar.cpp:146 +#: ../src/widgets/tweak-toolbar.cpp:142 msgid "The width of the tweak area (relative to the visible canvas area)" msgstr "De grootte van het boetseergebied (ten opzichte van het zichtbare canvas)" #. Force -#: ../src/widgets/tweak-toolbar.cpp:160 +#: ../src/widgets/tweak-toolbar.cpp:156 msgid "(minimum force)" msgstr "(minimale kracht)" -#: ../src/widgets/tweak-toolbar.cpp:160 +#: ../src/widgets/tweak-toolbar.cpp:156 msgid "(maximum force)" msgstr "(maximale kracht)" -#: ../src/widgets/tweak-toolbar.cpp:163 +#: ../src/widgets/tweak-toolbar.cpp:159 msgid "Force" msgstr "Kracht" -#: ../src/widgets/tweak-toolbar.cpp:163 +#: ../src/widgets/tweak-toolbar.cpp:159 msgid "Force:" msgstr "Kracht:" -#: ../src/widgets/tweak-toolbar.cpp:163 +#: ../src/widgets/tweak-toolbar.cpp:159 msgid "The force of the tweak action" msgstr "De kracht van de boetseeracties" -#: ../src/widgets/tweak-toolbar.cpp:181 +#: ../src/widgets/tweak-toolbar.cpp:177 msgid "Move mode" msgstr "Modus verplaatsen" -#: ../src/widgets/tweak-toolbar.cpp:182 +#: ../src/widgets/tweak-toolbar.cpp:178 msgid "Move objects in any direction" msgstr "Objecten in elke richting verplaatsen" -#: ../src/widgets/tweak-toolbar.cpp:188 +#: ../src/widgets/tweak-toolbar.cpp:184 msgid "Move in/out mode" msgstr "Modus naar/van cursor verplaatsen" -#: ../src/widgets/tweak-toolbar.cpp:189 +#: ../src/widgets/tweak-toolbar.cpp:185 msgid "Move objects towards cursor; with Shift from cursor" msgstr "Objecten naar cursor verplaatsen; met Shift van de cursor weg" -#: ../src/widgets/tweak-toolbar.cpp:195 +#: ../src/widgets/tweak-toolbar.cpp:191 msgid "Move jitter mode" msgstr "Modus random verplaatsen" -#: ../src/widgets/tweak-toolbar.cpp:196 +#: ../src/widgets/tweak-toolbar.cpp:192 msgid "Move objects in random directions" msgstr "Objecten in random richting verplaatsen" -#: ../src/widgets/tweak-toolbar.cpp:202 +#: ../src/widgets/tweak-toolbar.cpp:198 msgid "Scale mode" msgstr "Modus schalen" -#: ../src/widgets/tweak-toolbar.cpp:203 +#: ../src/widgets/tweak-toolbar.cpp:199 msgid "Shrink objects, with Shift enlarge" msgstr "Objecten verkleinen, met Shift vergroten" -#: ../src/widgets/tweak-toolbar.cpp:209 +#: ../src/widgets/tweak-toolbar.cpp:205 msgid "Rotate mode" msgstr "Modus roteren" -#: ../src/widgets/tweak-toolbar.cpp:210 +#: ../src/widgets/tweak-toolbar.cpp:206 msgid "Rotate objects, with Shift counterclockwise" msgstr "Objecten roteren, met Shift tegen de richting van de klok in" -#: ../src/widgets/tweak-toolbar.cpp:216 +#: ../src/widgets/tweak-toolbar.cpp:212 msgid "Duplicate/delete mode" msgstr "Modus dupliceren/verwijderen" -#: ../src/widgets/tweak-toolbar.cpp:217 +#: ../src/widgets/tweak-toolbar.cpp:213 msgid "Duplicate objects, with Shift delete" msgstr "Objecten dupliceren, met Shift verwijderen" -#: ../src/widgets/tweak-toolbar.cpp:223 +#: ../src/widgets/tweak-toolbar.cpp:219 msgid "Push mode" msgstr "Modus duwen" -#: ../src/widgets/tweak-toolbar.cpp:224 +#: ../src/widgets/tweak-toolbar.cpp:220 msgid "Push parts of paths in any direction" msgstr "Delen van paden in gewenste richting duwen" -#: ../src/widgets/tweak-toolbar.cpp:230 +#: ../src/widgets/tweak-toolbar.cpp:226 msgid "Shrink/grow mode" msgstr "Modus verdunnen/verdikken" -#: ../src/widgets/tweak-toolbar.cpp:231 +#: ../src/widgets/tweak-toolbar.cpp:227 msgid "Shrink (inset) parts of paths; with Shift grow (outset)" msgstr "Delen van paden verdunnen; met Shift verdikken" -#: ../src/widgets/tweak-toolbar.cpp:237 +#: ../src/widgets/tweak-toolbar.cpp:233 msgid "Attract/repel mode" msgstr "Modus aantrekken/afstoten" -#: ../src/widgets/tweak-toolbar.cpp:238 +#: ../src/widgets/tweak-toolbar.cpp:234 msgid "Attract parts of paths towards cursor; with Shift from cursor" msgstr "Delen van paden naar de cursor toe aantrekken; met Shift om van de cursor af te stoten" -#: ../src/widgets/tweak-toolbar.cpp:244 +#: ../src/widgets/tweak-toolbar.cpp:240 msgid "Roughen mode" msgstr "Verruwingsmodus" -#: ../src/widgets/tweak-toolbar.cpp:245 +#: ../src/widgets/tweak-toolbar.cpp:241 msgid "Roughen parts of paths" msgstr "Delen van paden verruwen" -#: ../src/widgets/tweak-toolbar.cpp:251 +#: ../src/widgets/tweak-toolbar.cpp:247 msgid "Color paint mode" msgstr "Verfmodus" -#: ../src/widgets/tweak-toolbar.cpp:252 +#: ../src/widgets/tweak-toolbar.cpp:248 msgid "Paint the tool's color upon selected objects" msgstr "Gekozen kleur over aangewezen objecten verven" -#: ../src/widgets/tweak-toolbar.cpp:258 +#: ../src/widgets/tweak-toolbar.cpp:254 msgid "Color jitter mode" msgstr "Verkleuringsmodus" -#: ../src/widgets/tweak-toolbar.cpp:259 +#: ../src/widgets/tweak-toolbar.cpp:255 msgid "Jitter the colors of selected objects" msgstr "Kleur van de aangewezen objecten veranderen door slepen" -#: ../src/widgets/tweak-toolbar.cpp:265 +#: ../src/widgets/tweak-toolbar.cpp:261 msgid "Blur mode" msgstr "_Mengmodus:" -#: ../src/widgets/tweak-toolbar.cpp:266 +#: ../src/widgets/tweak-toolbar.cpp:262 msgid "Blur selected objects more; with Shift, blur less" msgstr "Geselecteerde objecten meer vervagen; minder vervagen met Shift" -#: ../src/widgets/tweak-toolbar.cpp:293 +#: ../src/widgets/tweak-toolbar.cpp:289 msgid "Channels:" msgstr "Kanalen:" -#: ../src/widgets/tweak-toolbar.cpp:305 +#: ../src/widgets/tweak-toolbar.cpp:301 msgid "In color mode, act on objects' hue" msgstr "Op de tint van het object inwerken (in verfmodi)" #. TRANSLATORS: "H" here stands for hue -#: ../src/widgets/tweak-toolbar.cpp:309 +#: ../src/widgets/tweak-toolbar.cpp:305 msgid "H" msgstr "T" -#: ../src/widgets/tweak-toolbar.cpp:321 +#: ../src/widgets/tweak-toolbar.cpp:317 msgid "In color mode, act on objects' saturation" msgstr "Op de verzadiging van het object inwerken (in verfmodi)" #. TRANSLATORS: "S" here stands for Saturation -#: ../src/widgets/tweak-toolbar.cpp:325 +#: ../src/widgets/tweak-toolbar.cpp:321 msgid "S" msgstr "V" -#: ../src/widgets/tweak-toolbar.cpp:337 +#: ../src/widgets/tweak-toolbar.cpp:333 msgid "In color mode, act on objects' lightness" msgstr "Op de lichtheid van het object inwerken (in verfmodi)" #. TRANSLATORS: "L" here stands for Lightness -#: ../src/widgets/tweak-toolbar.cpp:341 +#: ../src/widgets/tweak-toolbar.cpp:337 msgid "L" msgstr "L" -#: ../src/widgets/tweak-toolbar.cpp:353 +#: ../src/widgets/tweak-toolbar.cpp:349 msgid "In color mode, act on objects' opacity" msgstr "Op de ondoorzichtigheid van het object inwerken (in verfmodi)" #. TRANSLATORS: "O" here stands for Opacity -#: ../src/widgets/tweak-toolbar.cpp:357 +#: ../src/widgets/tweak-toolbar.cpp:353 msgid "O" msgstr "O" #. Fidelity -#: ../src/widgets/tweak-toolbar.cpp:368 +#: ../src/widgets/tweak-toolbar.cpp:364 msgid "(rough, simplified)" msgstr "(ruw, vereenvoudigd)" -#: ../src/widgets/tweak-toolbar.cpp:368 +#: ../src/widgets/tweak-toolbar.cpp:364 msgid "(fine, but many nodes)" msgstr "(fijn, maar veel knooppunten)" -#: ../src/widgets/tweak-toolbar.cpp:371 +#: ../src/widgets/tweak-toolbar.cpp:367 msgid "Fidelity" msgstr "Kwaliteit" -#: ../src/widgets/tweak-toolbar.cpp:371 +#: ../src/widgets/tweak-toolbar.cpp:367 msgid "Fidelity:" msgstr "Kwaliteit:" -#: ../src/widgets/tweak-toolbar.cpp:372 +#: ../src/widgets/tweak-toolbar.cpp:368 msgid "Low fidelity simplifies paths; high fidelity preserves path features but may generate a lot of new nodes" msgstr "Een lage kwaliteit vereenvoudigt paden; een hoge kwaliteit behoudt de padeigenschappen maar kan een groot aantal nieuwe knooppunten genereren" -#: ../src/widgets/tweak-toolbar.cpp:391 +#: ../src/widgets/tweak-toolbar.cpp:387 msgid "Use the pressure of the input device to alter the force of tweak action" msgstr "De op het invoerapparaat uitgeoefende druk gebruiken om de boetseerkracht te variëren" @@ -25973,6 +26031,11 @@ msgstr "Semiperimeter (px): " msgid "Area (px^2): " msgstr "Oppervlak (px^2): " +#: ../share/extensions/dxf_input.py:504 +#, python-format +msgid "%d ENTITIES of type POLYLINE encountered and ignored. Please try to convert to Release 13 format using QCad." +msgstr "" + #: ../share/extensions/dxf_outlines.py:49 msgid "Failed to import the numpy or numpy.linalg modules. These modules are required by this extension. Please install them and try again." msgstr "Laden van de numpy of numpy.linalg modules mislukt. Deze modules zijn nodig voor deze uitbreiding. Installeer deze alstublief en probeer opnieuw." @@ -26249,6 +26312,14 @@ msgstr "Deze uitbreiding vereist ten minste één niet lege laag." msgid "The sliced bitmaps have been saved as:" msgstr "De versneden bitmaps werden bewaard als:" +#: ../share/extensions/hpgl_input.py:59 +msgid "No HPGL data found." +msgstr "" + +#: ../share/extensions/hpgl_input.py:111 +msgid "The HPGL data contained unknown (unsupported) commands, there is a possibility that the drawing is missing some content." +msgstr "" + #: ../share/extensions/inkex.py:133 #, python-format msgid "" @@ -27353,6 +27424,55 @@ msgstr "Selectie verwijderen" msgid "Layer match name" msgstr "Naam van de laag:" +#: ../share/extensions/dxf_outlines.inx.h:9 +msgid "pt" +msgstr "pt" + +#: ../share/extensions/dxf_outlines.inx.h:10 +msgid "pc" +msgstr "pc" + +#: ../share/extensions/dxf_outlines.inx.h:11 +#: ../share/extensions/render_gears.inx.h:7 +msgid "px" +msgstr "px" + +#: ../share/extensions/dxf_outlines.inx.h:12 +#: ../share/extensions/gcodetools_area.inx.h:46 +#: ../share/extensions/gcodetools_dxf_points.inx.h:18 +#: ../share/extensions/gcodetools_engraving.inx.h:24 +#: ../share/extensions/gcodetools_graffiti.inx.h:18 +#: ../share/extensions/gcodetools_lathe.inx.h:39 +#: ../share/extensions/gcodetools_orientation_points.inx.h:11 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:28 +#: ../share/extensions/render_gears.inx.h:9 +msgid "mm" +msgstr "mm" + +#: ../share/extensions/dxf_outlines.inx.h:13 +msgid "cm" +msgstr "cm" + +#: ../share/extensions/dxf_outlines.inx.h:14 +msgid "m" +msgstr "m" + +#: ../share/extensions/dxf_outlines.inx.h:15 +#: ../share/extensions/gcodetools_area.inx.h:47 +#: ../share/extensions/gcodetools_dxf_points.inx.h:19 +#: ../share/extensions/gcodetools_engraving.inx.h:25 +#: ../share/extensions/gcodetools_graffiti.inx.h:19 +#: ../share/extensions/gcodetools_lathe.inx.h:40 +#: ../share/extensions/gcodetools_orientation_points.inx.h:12 +#: ../share/extensions/gcodetools_path_to_gcode.inx.h:29 +#: ../share/extensions/render_gears.inx.h:8 +msgid "in" +msgstr "duim" + +#: ../share/extensions/dxf_outlines.inx.h:16 +msgid "ft" +msgstr "voet" + #: ../share/extensions/dxf_outlines.inx.h:17 msgid "Latin 1" msgstr "Latijn 1" @@ -27699,30 +27819,6 @@ msgstr "Assen tekenen" msgid "Add x-axis endpoints" msgstr "Eindpunten x-as toevoegen" -#: ../share/extensions/gears.inx.h:1 -msgid "Gear" -msgstr "Tandwiel" - -#: ../share/extensions/gears.inx.h:2 -msgid "Number of teeth:" -msgstr "Aantal tanden:" - -#: ../share/extensions/gears.inx.h:3 -msgid "Circular pitch (tooth size):" -msgstr "" - -#: ../share/extensions/gears.inx.h:4 -msgid "Pressure angle (degrees):" -msgstr "Drukhoek (graden):" - -#: ../share/extensions/gears.inx.h:5 -msgid "Diameter of center hole (0 for none):" -msgstr "Diameter van het centraal gat (0 voro geen):" - -#: ../share/extensions/gears.inx.h:10 -msgid "Unit of measurement for both circular pitch and center diameter." -msgstr "" - #: ../share/extensions/gcodetools_about.inx.h:1 msgid "About" msgstr "Over" @@ -28611,73 +28707,67 @@ msgid "Guides creator" msgstr "Hulplijngenerator" #: ../share/extensions/guides_creator.inx.h:2 -msgid "Preset:" -msgstr "Methode:" +#, fuzzy +msgid "Regular guides" +msgstr "Rechthoekig raster" -# Puntjes worden door programma al toegevoegd. #: ../share/extensions/guides_creator.inx.h:3 -msgid "Custom..." -msgstr "Aangepast" - -#: ../share/extensions/guides_creator.inx.h:4 -msgid "Golden ratio" -msgstr "Gulden snede" - -#: ../share/extensions/guides_creator.inx.h:5 -msgid "Rule-of-third" -msgstr "Regel van derden" +#, fuzzy +msgid "Guides preset" +msgstr "Hulplijngenerator" #: ../share/extensions/guides_creator.inx.h:6 -msgid "Vertical guide each:" -msgstr "Verticale hulplijn elke:" +msgid "Start from edges" +msgstr "Aan randen beginnen" + +#: ../share/extensions/guides_creator.inx.h:7 +msgid "Delete existing guides" +msgstr "Bestaande hulplijnen verwijderen" #: ../share/extensions/guides_creator.inx.h:8 -msgid "1/2" -msgstr "1/2" +#, fuzzy +msgid "Diagonal guides" +msgstr "Hulplijnen kleven" #: ../share/extensions/guides_creator.inx.h:9 -msgid "1/3" -msgstr "1/3" +#, fuzzy +msgid "Upper left corner" +msgstr "paginahoek" #: ../share/extensions/guides_creator.inx.h:10 -msgid "1/4" -msgstr "1/4" +#, fuzzy +msgid "Upper right corner" +msgstr "paginahoek" #: ../share/extensions/guides_creator.inx.h:11 -msgid "1/5" -msgstr "1/5" +#, fuzzy +msgid "Lower left corner" +msgstr "Huidige laag één niveau omlaag brengen" #: ../share/extensions/guides_creator.inx.h:12 -msgid "1/6" -msgstr "1/6" +#, fuzzy +msgid "Lower right corner" +msgstr "Huidige laag één niveau omlaag brengen" #: ../share/extensions/guides_creator.inx.h:13 -msgid "1/7" -msgstr "1/7" +#, fuzzy +msgid "Margins" +msgstr "Marge vak" #: ../share/extensions/guides_creator.inx.h:14 -msgid "1/8" -msgstr "1/8" +#, fuzzy +msgid "Margins preset" +msgstr "Marge hulplijn" #: ../share/extensions/guides_creator.inx.h:15 -msgid "1/9" -msgstr "1/9" +#, fuzzy +msgid "Header margin" +msgstr "Marges" #: ../share/extensions/guides_creator.inx.h:16 -msgid "1/10" -msgstr "1/10" - -#: ../share/extensions/guides_creator.inx.h:17 -msgid "Horizontal guide each:" -msgstr "Horizontale hulplijn elke:" - -#: ../share/extensions/guides_creator.inx.h:18 -msgid "Start from edges" -msgstr "Aan randen beginnen" - -#: ../share/extensions/guides_creator.inx.h:19 -msgid "Delete existing guides" -msgstr "Bestaande hulplijnen verwijderen" +#, fuzzy +msgid "Footer margin" +msgstr "Bovenmarge" #: ../share/extensions/guillotine.inx.h:1 msgid "Guillotine" @@ -30019,6 +30109,10 @@ msgstr "Pagina's per duim (PPI)" msgid "Caliper (inches)" msgstr "Dikte (duim)" +#: ../share/extensions/perfectboundcover.inx.h:11 +msgid "Points" +msgstr "Punten" + #: ../share/extensions/perfectboundcover.inx.h:12 msgid "Bond Weight #" msgstr "Gewichtsnummer" @@ -30458,6 +30552,51 @@ msgstr "H (Ong. 30%)" msgid "Square size (px):" msgstr "Puntgrootte (px):" +#: ../share/extensions/render_gears.inx.h:1 +#: ../share/extensions/render_gear_rack.inx.h:6 +msgid "Gear" +msgstr "Tandwiel" + +#: ../share/extensions/render_gears.inx.h:2 +msgid "Number of teeth:" +msgstr "Aantal tanden:" + +#: ../share/extensions/render_gears.inx.h:3 +msgid "Circular pitch (tooth size):" +msgstr "" + +#: ../share/extensions/render_gears.inx.h:4 +msgid "Pressure angle (degrees):" +msgstr "Drukhoek (graden):" + +#: ../share/extensions/render_gears.inx.h:5 +msgid "Diameter of center hole (0 for none):" +msgstr "Diameter van het centraal gat (0 voro geen):" + +#: ../share/extensions/render_gears.inx.h:10 +msgid "Unit of measurement for both circular pitch and center diameter." +msgstr "" + +#: ../share/extensions/render_gear_rack.inx.h:1 +#, fuzzy +msgid "Rack Gear" +msgstr "Tandwiel" + +#: ../share/extensions/render_gear_rack.inx.h:2 +#, fuzzy +msgid "Rack Length:" +msgstr "Lengte:" + +#: ../share/extensions/render_gear_rack.inx.h:3 +#, fuzzy +msgid "Tooth Spacing:" +msgstr "Horizontale tussenruimte:" + +#: ../share/extensions/render_gear_rack.inx.h:4 +#, fuzzy +msgid "Contact Angle:" +msgstr "Contactdriehoek" + #: ../share/extensions/replace_font.inx.h:1 msgid "Replace font" msgstr "Lettertype vervangen" @@ -30540,6 +30679,7 @@ msgstr "Horizontaal punt:" #: ../share/extensions/restack.inx.h:13 #: ../share/extensions/text_extract.inx.h:9 +#: ../share/extensions/text_merge.inx.h:9 msgid "Middle" msgstr "Midden" @@ -30549,11 +30689,13 @@ msgstr "Verticaal punt:" #: ../share/extensions/restack.inx.h:16 #: ../share/extensions/text_extract.inx.h:12 +#: ../share/extensions/text_merge.inx.h:12 msgid "Top" msgstr "Boven" #: ../share/extensions/restack.inx.h:17 #: ../share/extensions/text_extract.inx.h:13 +#: ../share/extensions/text_merge.inx.h:13 msgid "Bottom" msgstr "Onderaan" @@ -31085,30 +31227,37 @@ msgid "Extract" msgstr "Extraheren" #: ../share/extensions/text_extract.inx.h:2 +#: ../share/extensions/text_merge.inx.h:2 msgid "Text direction:" msgstr "Tekstrichting:" #: ../share/extensions/text_extract.inx.h:3 +#: ../share/extensions/text_merge.inx.h:3 msgid "Left to right" msgstr "Links naar rechts" #: ../share/extensions/text_extract.inx.h:4 +#: ../share/extensions/text_merge.inx.h:4 msgid "Bottom to top" msgstr "Onder naar boven" #: ../share/extensions/text_extract.inx.h:5 +#: ../share/extensions/text_merge.inx.h:5 msgid "Right to left" msgstr "Rechts naar links" #: ../share/extensions/text_extract.inx.h:6 +#: ../share/extensions/text_merge.inx.h:6 msgid "Top to bottom" msgstr "Boven naar onder" #: ../share/extensions/text_extract.inx.h:7 +#: ../share/extensions/text_merge.inx.h:7 msgid "Horizontal point:" msgstr "Horizontaal punt:" #: ../share/extensions/text_extract.inx.h:11 +#: ../share/extensions/text_merge.inx.h:11 msgid "Vertical point:" msgstr "Verticaal punt:" @@ -31129,6 +31278,16 @@ msgstr "Hoofdlettergebruik" msgid "lowercase" msgstr "kleine letters" +#: ../share/extensions/text_merge.inx.h:14 +#, fuzzy +msgid "Flow text" +msgstr "Ingekaderde tekst" + +#: ../share/extensions/text_merge.inx.h:15 +#, fuzzy +msgid "Keep style" +msgstr "Tekststijl instellen" + #: ../share/extensions/text_randomcase.inx.h:1 msgid "rANdOm CasE" msgstr "wiLLeKeURige hOofDleTteRs" @@ -31643,33 +31802,114 @@ msgstr "Een populair bestandsformaat voor clipart" msgid "XAML Input" msgstr "XAML-invoer" -#~ msgid "Crop:" -#~ msgstr "Afsnijden:" -#~ msgid "Red:" -#~ msgstr "Rood:" -#~ msgid "Green:" -#~ msgstr "Groen:" -#~ msgid "Blue:" -#~ msgstr "Blauw:" -#~ msgid "Lightness:" -#~ msgstr "Lichtheid:" -#~ msgid "Alpha:" -#~ msgstr "Alfa:" -#~ msgid "Level:" -#~ msgstr "Niveau:" -#~ msgid "Contrast:" -#~ msgstr "Contrast:" -#~ msgid "Colors:" -#~ msgstr "Kleuren:" -#~ msgid "Simplify:" -#~ msgstr "Vereenvoudigen:" -#~ msgid "Blur:" -#~ msgstr "Vervaging:" -#~ msgid "Select only one <b>group</b> to convert to symbol." -#~ msgstr "Selecteer slechts één <b>groep</b> om naar symbool te converteren." -#~ msgid "Select original (<b>Shift+D</b>) to convert to symbol." +#~ msgid "Pt" +#~ msgstr "Pt" +#~ msgid "Picas" +#~ msgstr "Pica's" +#~ msgid "Pc" +#~ msgstr "Pc" +#~ msgid "Pixels" +#~ msgstr "Pixels" +#~ msgid "Px" +#~ msgstr "Px" +#~ msgid "Percent" +#~ msgstr "Procent" +#~ msgid "Percents" +#~ msgstr "Procent" +#~ msgid "Millimeters" +#~ msgstr "Millimeter" +#~ msgid "Centimeters" +#~ msgstr "Centimeter" +#~ msgid "Meter" +#~ msgstr "Meter" +#~ msgid "Meters" +#~ msgstr "Meter" +#~ msgid "Inches" +#~ msgstr "Duim" +#~ msgid "Foot" +#~ msgstr "voet" +#~ msgid "Feet" +#~ msgstr "voet" +#~ msgid "em" +#~ msgstr "em" +#~ msgid "Em squares" +#~ msgstr "Em kwadraat" +#~ msgid "Ex square" +#~ msgstr "Ex kwadraat" +#~ msgid "ex" +#~ msgstr "ex" +#~ msgid "Ex squares" +#~ msgstr "Ex kwadraat" +#~ msgid "Name by which this document is formally known" +#~ msgstr "De naam waaronder dit document officieel bekend is" +#~ msgid "Date associated with the creation of this document (YYYY-MM-DD)" +#~ msgstr "Datum waarop dit document is aangemaakt (JJJJ-MM-DD)" +#~ msgid "The physical or digital manifestation of this document (MIME type)" +#~ msgstr "" +#~ "De fysieke of digitale verschijningsvorm van dit document (MIME-type)" +#~ msgid "Type of document (DCMI Type)" +#~ msgstr "Documenttype (DCMI-type)" +#~ msgid "" +#~ "Name of entity with rights to the Intellectual Property of this document" +#~ msgstr "" +#~ "Naam van instantie van wie dit document het intellectueel eigendom is" +#~ msgid "Unique URI to reference this document" +#~ msgstr "Een unieke URI om aan dit document te refereren" +#~ msgid "Unique URI to reference the source of this document" +#~ msgstr "Een unieke URI om aan de bron van dit document te refereren" +#~ msgid "Unique URI to a related document" +#~ msgstr "Een unieke URI naar een gerelateerd document" +#~ msgid "" +#~ "Two-letter language tag with optional subtags for the language of this " +#~ "document (e.g. 'en-GB')" +#~ msgstr "" +#~ "Een tweeletterige aanduiding (met optionele subaanduiding) van de taal " +#~ "van dit document (bijvoorbeeld 'nl-NL')" +#~ msgid "" +#~ "The topic of this document as comma-separated key words, phrases, or " +#~ "classifications" +#~ msgstr "" +#~ "Het onderwerp van dit document als losse woorden of zinnetjes, gescheiden " +#~ "door komma's" +#~ msgid "Extent or scope of this document" +#~ msgstr "Dekking of lading van dit document" +#~ msgid "Allow relative coordinates" +#~ msgstr "Relatieve coördinaten toestaan" +#~ msgid "If set, relative coordinates may be used in path data" #~ msgstr "" -#~ "Selecteer origineel (<b>Shift+D</b>) om naar symbool te converteren." -#~ msgid "Z:" -#~ msgstr "Z:" +#~ "Indien aangevinkt, kunnen relatieve coördinaten gebruikt worden in paddata" +#~ msgid "_Execute Javascript" +#~ msgstr "_Javascript uitvoeren" +#~ msgid "_Execute Python" +#~ msgstr "_Python uitvoeren" +#~ msgid "_Execute Ruby" +#~ msgstr "_Ruby uitvoeren" +#~ msgid "Script" +#~ msgstr "Script" +#~ msgid "Output" +#~ msgstr "Uitvoer" +#~ msgid "Errors" +#~ msgstr "Fouten" +#~ msgid "Preview scale: " +#~ msgstr "Schaal voorvertoning: " +#~ msgid "Fit" +#~ msgstr "Aanpassen" +#~ msgid "Fit to width" +#~ msgstr "Aanpassen aan breedte" +#~ msgid "Fit to height" +#~ msgstr "Aanpassen aan hoogte" +#~ msgid "Preview size: " +#~ msgstr "Grootte voorvertoning: " +#~ msgid "S_cripts..." +#~ msgstr "S_cripts..." +#~ msgid "Run scripts" +#~ msgstr "Scripts uitvoeren" +#~ msgid "_Start Markers:" +#~ msgstr "_Beginmarkering:" +#~ msgid "_Mid Markers:" +#~ msgstr "_Middenmarkering:" +#~ msgid "_End Markers:" +#~ msgstr "_Eindmarkering:" +#~ msgid "Preset:" +#~ msgstr "Methode:" diff --git a/share/extensions/inkex.py b/share/extensions/inkex.py index c1feba5ae..861cc2300 100755 --- a/share/extensions/inkex.py +++ b/share/extensions/inkex.py @@ -184,7 +184,8 @@ class Effect: stream = open(self.svg_file,'r') except: stream = sys.stdin - self.document = etree.parse(stream) + p = etree.XMLParser(huge_tree=True) + self.document = etree.parse(stream, parser=p) self.original_document = copy.deepcopy(self.document) stream.close() diff --git a/share/icons/icons.svg b/share/icons/icons.svg index 105225bcd..b4bbad344 100644 --- a/share/icons/icons.svg +++ b/share/icons/icons.svg @@ -1,3820 +1,22461 @@ <?xml version="1.0" encoding="UTF-8" standalone="no"?> -<svg xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:cc="http://creativecommons.org/ns#" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" xmlns:svg="http://www.w3.org/2000/svg" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" inkscape:version="0.48+devel r" sodipodi:docname="icons.svg" height="540" width="1250" sodipodi:version="0.32" id="svg1" inkscape:output_extension="org.inkscape.output.svg.inkscape" version="1.0"> -<defs id="defs3"> -<linearGradient id="linearGradient6206"> -<stop style="stop-color:#8ab3df;stop-opacity:1" offset="0" id="stop6208" /> -<stop style="stop-color:#5eba69;stop-opacity:1" offset="1" id="stop6210" /> -</linearGradient> -<linearGradient id="linearGradient6618"> -<stop offset="0" style="stop-color:#1caf19;stop-opacity:1" id="stop6620" /> -<stop offset="1" style="stop-color:#6df668;stop-opacity:1" id="stop6622" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7836"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7838" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7840" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7828"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7830" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7832" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7820"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7822" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7824" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7812"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7814" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7816" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7804"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7806" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7808" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7796"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7798" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7800" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7788"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7790" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7792" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7780"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7782" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7784" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient7772"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop7774" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop7776" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient5602"> -<stop style="stop-color:#cccccc;stop-opacity:1" offset="0" id="stop5604" /> -<stop style="stop-color:#000000;stop-opacity:1" offset="1" id="stop5606" /> -</linearGradient> -<linearGradient id="linearGradient8482" inkscape:collect="always"> -<stop id="stop8484" offset="0" style="stop-color:#b3b3b3;stop-opacity:1" /> -<stop id="stop8486" offset="1" style="stop-color:#000000;stop-opacity:1" /> -</linearGradient> -<linearGradient id="linearGradient5724"> -<stop style="stop-color:#fffdf8;stop-opacity:1.0000000;" offset="0.0000000" id="stop5726" /> -<stop id="stop5730" offset="0.43478271" style="stop-color:#fcfaf5;stop-opacity:1;" /> -<stop style="stop-color:#cdccc7;stop-opacity:1.0000000;" offset="1.0000000" id="stop5728" /> -</linearGradient> -<inkscape:path-effect effect="skeletal" id="path-effect9860" prop_scale="1.03" pattern="m 758,-28 c -26.55889,13.730612 -40,22 -40,28 0,6 13.20914,26.0201 27.06843,28 8,-14 0.066,-35.97121 12.93157,-56 z m 16,8 c -11.84579,8.897493 -18.62895,30.776225 0,42 -11.25807,-24.4674498 -0.73954,-41.050051 0,-42 z m 20,6 c -13.1445,10.146986 -10,20 0,28 -6,-12 -0.74973,-27.90401 0,-28 z m 30,-5.06843 c -4.85511,1.157888 -6.99009,9.046883 -10,11.06843 -5.81619,3.906325 -10.10855,2.87331 -10.0246,7.98206971 C 804.08433,6.6105697 806.48108,4.5018511 814,8 c 2.34648,1.0916891 7.11389,10.516733 10,10.93157 -4,-14.0000002 -4,-26.0000002 0,-38 z" scale_y_rel="true" pattern-nodetypes="czcccccccccssscc" is_visible="true" deactivate_knotholder="false" copytype="single_stretched" spacing="0" normal_offset="0" tang_offset="0" prop_units="false" vertical_pattern="false" fuse_tolerance="0" /> -<linearGradient id="linearGradient4832" inkscape:collect="always"> -<stop id="stop4834" offset="0" style="stop-color:#8686bf;stop-opacity:1" /> -<stop id="stop4836" offset="1" style="stop-color:#9191b6;stop-opacity:0" /> -</linearGradient> -<linearGradient id="linearGradient4826" inkscape:collect="always"> -<stop id="stop4828" offset="0" style="stop-color:#d7d7ff;stop-opacity:1" /> -<stop id="stop4830" offset="1" style="stop-color:#d7d7ff;stop-opacity:0" /> -</linearGradient> -<linearGradient id="linearGradient4820" inkscape:collect="always"> -<stop id="stop4822" offset="0" style="stop-color:#393986;stop-opacity:1" /> -<stop id="stop4824" offset="1" style="stop-color:#53536c;stop-opacity:0" /> -</linearGradient> -<linearGradient id="linearGradient4798"> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="0" id="stop4802" /> -<stop style="stop-color:#5eba69;stop-opacity:1;" offset="1" id="stop4800" /> -</linearGradient> -<linearGradient id="linearGradient4935"> -<stop style="stop-color:#5eba69;stop-opacity:1;" offset="0" id="stop4939" /> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1" id="stop4937" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient700" gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)" y2="-0.473952" x2="-16.435499" y1="-1.11146" x1="-30.512699" gradientUnits="userSpaceOnUse" id="linearGradient3352" inkscape:collect="always" /> -<linearGradient inkscape:collect="always" id="linearGradient4721"> -<stop style="stop-color:#f57900;stop-opacity:1" offset="0" id="stop4723" /> -<stop style="stop-color:#73d216;stop-opacity:0;" offset="1" id="stop4725" /> -</linearGradient> -<linearGradient id="linearGradient4709" inkscape:collect="always"> -<stop id="stop4711" offset="0" style="stop-color:#75507b;stop-opacity:1" /> -<stop id="stop4713" offset="1" style="stop-color:#73d216;stop-opacity:0;" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient4696"> -<stop style="stop-color:#73d216;stop-opacity:1;" offset="0" id="stop4698" /> -<stop style="stop-color:#73d216;stop-opacity:0;" offset="1" id="stop4701" /> -</linearGradient> -<marker inkscape:stockid="Arrow1Send" orient="auto" refY="0" refX="0" id="Arrow1Send"> -<path id="path4834" d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> -</marker> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" y2="311.81979" x2="696.86676" y1="306.07037" x1="693.40259" id="linearGradient4618" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" y2="311.07904" x2="698.26788" y1="303.70065" x1="693.27899" id="linearGradient4610" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="309.73383" x2="698.72687" y1="304.22421" x1="695.0141" id="linearGradient4649" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient16137" y2="729.99908" x2="60.495438" y1="715.91296" x1="54.463463" gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" gradientUnits="userSpaceOnUse" id="linearGradient4849" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient16137" y2="719.93756" x2="54.737839" y1="729.3028" x1="64.23671" gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" gradientUnits="userSpaceOnUse" id="linearGradient4859" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="125.31617" x2="91.620605" y1="125.31617" x1="84.629395" id="linearGradient4811" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="159" x2="186.71693" y1="159" x1="171.28307" id="linearGradient4819" inkscape:collect="always" /> -<linearGradient id="linearGradient12513"> -<stop style="stop-color:black;stop-opacity:1;" offset="0" id="stop12515" /> -<stop style="stop-color:#2a2a2a;stop-opacity:1;" offset="1" id="stop12517" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient12513" gradientUnits="userSpaceOnUse" y2="712.16724" x2="61.995983" y1="715.75946" x1="64.608963" id="linearGradient12519" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="244.67865" x2="717.60321" y1="249.98053" x1="712.98596" gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient12592" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="240.87608" x2="717.6405" y1="248.91472" x1="713.50842" gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient12555" inkscape:collect="always" /> -<linearGradient id="linearGradient4528"> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="0.0000000" id="stop4530" /> -<stop id="stop4534" offset="0.37719297" style="stop-color:#d4e0ef;stop-opacity:1;" /> -<stop style="stop-color:#98b6d3;stop-opacity:1.0000000;" offset="1.0000000" id="stop4532" /> -</linearGradient> -<linearGradient id="linearGradient6679"> -<stop style="stop-color:#ffeb74;stop-opacity:1;" offset="0" id="stop6681" /> -<stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop6683" /> -</linearGradient> -<linearGradient id="linearGradient5899"> -<stop style="stop-color:#ffffff;stop-opacity:1;" offset="0" id="stop5901" /> -<stop style="stop-color:#ffacb5;stop-opacity:1;" offset="1" id="stop5903" /> -</linearGradient> -<linearGradient id="linearGradient5858"> -<stop style="stop-color:#ffa01e" offset="0.0000000" id="stop5860" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5862" /> -</linearGradient> -<linearGradient id="linearGradient5740"> -<stop id="stop5742" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient5734"> -<stop id="stop5736" offset="0" style="stop-color:#8ab3df;stop-opacity:1;" /> -<stop id="stop5738" offset="1" style="stop-color:#ffffff" /> -</linearGradient> -<linearGradient id="linearGradient5704"> -<stop style="stop-color:#5a5a5a;stop-opacity:1;" offset="0" id="stop5706" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5708" /> -</linearGradient> -<linearGradient id="linearGradient16137"> -<stop style="stop-color:#db5d00;stop-opacity:1.0000000;" offset="0.0000000" id="stop16139" /> -<stop style="stop-color:#ffd749;stop-opacity:1.0000000;" offset="0.35076979" id="stop16141" /> -<stop style="stop-color:#fff593;stop-opacity:1.0000000;" offset="0.59668732" id="stop16143" /> -<stop style="stop-color:#fff7c2;stop-opacity:1.0000000;" offset="0.78382427" id="stop16145" /> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1.0000000" id="stop16147" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient14614"> -<stop style="stop-color:#c80000" offset="0" id="stop14616" /> -<stop style="stop-color:#bf0000;stop-opacity:0;" offset="1" id="stop14618" /> -</linearGradient> -<linearGradient id="linearGradient5204"> -<stop style="stop-color:#4e6e90;stop-opacity:1;" offset="0" id="stop5206" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5208" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient4343"> -<stop style="stop-color:#fff9f9;stop-opacity:1;" offset="0" id="stop4345" /> -<stop style="stop-color:#fff9f9;stop-opacity:0;" offset="1" id="stop4347" /> -</linearGradient> -<linearGradient id="linearGradient6684"> -<stop style="stop-color:#ffbf00;stop-opacity:1.0000000;" offset="0.0000000" id="stop6686" /> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000;" offset="1.0000000" id="stop6688" /> -</linearGradient> -<linearGradient id="linearGradient6524"> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000" offset="0.0000000" id="stop6526" /> -<stop style="stop-color:#e2e1e1;stop-opacity:1.0000000;" offset="1.0000000" id="stop6528" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient5663"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5665" /> -<stop style="stop-color:#000000;stop-opacity:0;" offset="1" id="stop5667" /> -</linearGradient> -<linearGradient id="linearGradient10585"> -<stop style="stop-color:#d7d7d7;stop-opacity:1.0000000;" offset="0.0000000" id="stop10587" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop10595" /> -</linearGradient> -<linearGradient id="linearGradient3480"> -<stop id="stop3482" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" /> -<stop id="stop3484" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient3466"> -<stop style="stop-color:#ffffff;stop-opacity:1.0000000" offset="0.0000000" id="stop3468" /> -<stop style="stop-color:#a0a0a0;stop-opacity:1.0000000;" offset="1.0000000" id="stop3470" /> -</linearGradient> -<linearGradient id="linearGradient1887"> -<stop id="stop1888" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient2485"> -<stop id="stop2486" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000" /> -<stop id="stop2487" offset="1.0000000" style="stop-color:#aaaaaa;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient2888"> -<stop id="stop2889" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop2894" offset="1" style="stop-color:#8ab3de;stop-opacity:1;" /> -</linearGradient> -<linearGradient id="linearGradient1610"> -<stop id="stop1611" offset="0.0000000" style="stop-color:#000000;stop-opacity:1.0000000" /> -<stop id="stop3053" offset="0.35076979" style="stop-color:#7f7f7f;stop-opacity:1.0000000" /> -<stop id="stop3054" offset="0.59668732" style="stop-color:#bfbfbf;stop-opacity:1.0000000" /> -<stop id="stop3055" offset="0.78382427" style="stop-color:#dfdfdf;stop-opacity:1.0000000" /> -<stop id="stop1612" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000" /> -</linearGradient> -<linearGradient id="linearGradient500"> -<stop id="stop1007" offset="0.0000000" style="stop-color:#e7eaf0;stop-opacity:1.0000000;" /> -<stop id="stop1008" offset="1.0000000" style="stop-color:#bacadd;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient700"> -<stop id="stop347" offset="0" style="stop-color:#376796;stop-opacity:1;" /> -<stop id="stop348" offset="1.0000000" style="stop-color:#b0dde2;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient800"> -<stop id="stop998" offset="0" style="stop-color:#f3ff49;stop-opacity:1;" /> -<stop id="stop999" offset="1" style="stop-color:#ffa01e;stop-opacity:1;" /> -</linearGradient> -<linearGradient id="linearGradient900"> -<stop id="stop1014" offset="0.0000000" style="stop-color:#e4ffa6;stop-opacity:1.0000000;" /> -<stop id="stop1015" offset="1.0000000" style="stop-color:#3a7801;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient5734" gradientTransform="translate(1.863401,-1.999999)" gradientUnits="userSpaceOnUse" y2="164.95464" x2="23.615282" y1="170.37819" x1="22.452934" id="linearGradient3628" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4935" gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)" gradientUnits="userSpaceOnUse" y2="96.397003" x2="-14.7622" y1="107.85" x1="-0.53531498" id="linearGradient10520" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="240.35397" x2="64.518295" y1="236.41124" x1="61.447758" id="linearGradient4005" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="243.43013" x2="62.515686" y1="239.1431" x1="59.432198" id="linearGradient4013" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="239.27582" x2="63.40303" y1="236" x1="58.952152" id="linearGradient4072" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="239.49016" x2="62.5" y1="235.13408" x1="59" id="linearGradient4080" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(0,0.0207681)" gradientUnits="userSpaceOnUse" y2="257.66202" x2="14.320742" y1="251" x1="8" id="linearGradient4088" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="257.66202" x2="14.320742" y1="251" x1="8" gradientUnits="userSpaceOnUse" id="linearGradient3208" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="186.1308" x2="-35.449852" y1="186.11075" x1="-43.562527" gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)" gradientUnits="userSpaceOnUse" id="linearGradient6665" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)" y2="187" x2="-30.049999" y1="187" x1="-43.950001" gradientUnits="userSpaceOnUse" id="linearGradient6667" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" gradientUnits="userSpaceOnUse" y2="187" x2="-30.049999" y1="187" x1="-43.950001" id="linearGradient7544" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="186.74951" x2="-34.245693" y1="183.3679" x1="-42.133953" gradientUnits="userSpaceOnUse" id="linearGradient7548" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" gradientTransform="translate(-0.96863,1.05455)" y2="182.35056" x2="-34.677124" y1="183.8118" x1="-33.566422" gradientUnits="userSpaceOnUse" id="linearGradient10560" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" gradientTransform="translate(-139.9686,15.05455)" gradientUnits="userSpaceOnUse" y2="166.19142" x2="110.12064" y1="163.43726" x1="107.94834" id="linearGradient10579" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient10585" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)" r="4.7721405" fy="185.37962" fx="-39.006454" cy="185.37962" cx="-39.006454" id="radialGradient10597" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" gradientUnits="userSpaceOnUse" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" id="linearGradient10641" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)" gradientUnits="userSpaceOnUse" y2="264.68918" x2="366.09814" y1="261.24731" x1="361.70941" id="linearGradient11815" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3466" y2="126.52245" x2="338.0838" y1="117.24895" x1="337.11661" gradientTransform="matrix(0.707107,-0.707107,0.707107,0.707107,16.25566,275.4833)" gradientUnits="userSpaceOnUse" id="linearGradient11021" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.338959" x2="414.62341" y1="46.338985" x1="404.67871" gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)" gradientUnits="userSpaceOnUse" id="linearGradient13469" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339054" x2="415.16632" y1="46.338985" x1="404.67871" gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)" gradientUnits="userSpaceOnUse" id="linearGradient13473" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339008" x2="415.20053" y1="46.338985" x1="404.67871" gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)" gradientUnits="userSpaceOnUse" id="linearGradient13477" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" gradientTransform="translate(41.00246,10.00003)" gradientUnits="userSpaceOnUse" y2="293" x2="76.136215" y1="293" x1="70" id="linearGradient14343" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5734" gradientUnits="userSpaceOnUse" y2="307.83109" x2="80.622993" y1="311.45078" x1="83.829369" id="linearGradient14389" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4528" y2="76.983932" x2="690" y1="67.59227" x1="705.22168" gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)" gradientUnits="userSpaceOnUse" id="linearGradient18352" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="174.93935" x2="974.43518" y1="172.44194" x1="974.43518" gradientTransform="matrix(0.7,0,0,1,311.2,8.5)" gradientUnits="userSpaceOnUse" id="linearGradient5644" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="185" x2="992.73621" y1="181.5609" x1="994.15332" id="linearGradient5658" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5663" gradientTransform="translate(0.0706497,-0.23015)" gradientUnits="userSpaceOnUse" y2="179.19316" x2="990.57349" y1="185.18915" x1="989.87738" id="linearGradient5669" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.80444" y1="182.46863" x1="974.19751" gradientUnits="userSpaceOnUse" id="linearGradient5693" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="184.71498" x2="974.57471" y1="178.93727" x1="967.73901" gradientUnits="userSpaceOnUse" id="linearGradient5695" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="80.141884" x2="250.66499" y1="73.65818" x1="256.89447" gradientTransform="matrix(0.939394,0,0,1,15.63564,3.573014)" gradientUnits="userSpaceOnUse" id="linearGradient11197" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="79.5" x2="269.54849" y1="79.5" x1="261.1073" gradientTransform="translate(0.514439,0.573014)" gradientUnits="userSpaceOnUse" id="linearGradient11210" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.0158611,0.0730141)" gradientUnits="userSpaceOnUse" y2="77.990372" x2="258.01514" y1="70.980736" x1="266.0303" id="linearGradient11286" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-0.0158611,0.0730141)" gradientUnits="userSpaceOnUse" y2="78.836052" x2="262.53848" y1="74.382683" x1="266.64761" id="linearGradient11294" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1,0,0,0.982332,-0.0158611,1.3452)" gradientUnits="userSpaceOnUse" y2="71.037422" x2="256.5" y1="69.714012" x1="261.03427" id="linearGradient11302" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" gradientUnits="userSpaceOnUse" y2="103.55601" x2="275.45453" y1="95.677536" x1="270.17175" id="linearGradient11335" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient10585" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,1.033243,0,-3.241221)" r="7.5203147" fy="95.723427" fx="269.96768" cy="95.723427" cx="269.96768" id="radialGradient11343" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="103.55601" x2="275.45453" y1="95.677536" x1="270.17175" id="linearGradient11359" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1,0,0,0.940296,0,5.373155)" gradientUnits="userSpaceOnUse" y2="93.16346" x2="276.82553" y1="90" x1="271.21255" id="linearGradient11367" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1.02198,0,139.2452,218.9968)" gradientUnits="userSpaceOnUse" id="linearGradient6573" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient900" y2="264.46481" x2="367.26514" y1="261.24728" x1="361.6976" gradientTransform="matrix(1.02198,0,0,1,-8.921317,-0.991053)" gradientUnits="userSpaceOnUse" id="linearGradient6662" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1.02198,0,139.2735,219.0057)" gradientUnits="userSpaceOnUse" id="linearGradient6664" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" gradientUnits="userSpaceOnUse" y2="190.23405" x2="-41.620148" y1="183.19646" x1="-38.782421" id="linearGradient6672" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" gradientUnits="userSpaceOnUse" y2="183.81453" x2="-40.58511" y1="189.54932" x1="-42.309338" id="linearGradient6690" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" gradientUnits="userSpaceOnUse" y2="180.95" x2="-32.95787" y1="175.93307" x1="-34.943748" id="linearGradient6727" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1,0,145.0076,219.9968)" gradientUnits="userSpaceOnUse" id="linearGradient6731" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="184.4165" x2="-32.04113" y1="186.81528" x1="-36.94574" gradientUnits="userSpaceOnUse" id="linearGradient6737" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1,0,145.0076,219.9968)" gradientUnits="userSpaceOnUse" id="linearGradient6739" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" y2="187" x2="-30.049999" y1="187" x1="-43.950001" gradientUnits="userSpaceOnUse" id="linearGradient6743" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" y2="187" x2="-30.049999" y1="187" x1="-43.950001" gradientUnits="userSpaceOnUse" id="linearGradient6745" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4343" gradientTransform="translate(41.8634,-175.7596)" gradientUnits="userSpaceOnUse" y2="335.03082" x2="-10.528212" y1="332.07693" x1="-13.059585" id="linearGradient4349" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" gradientUnits="userSpaceOnUse" y2="178.02231" x2="15.847412" y1="174.94193" x1="14.019764" id="linearGradient4360" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5734" gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" gradientUnits="userSpaceOnUse" y2="175.94685" x2="13.848969" y1="177.44151" x1="15" id="linearGradient4369" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="30.793854" x2="917.36914" y1="19.211191" x1="904.08301" gradientTransform="matrix(0.839788,0,0,0.88527,150.222,-1.762836)" gradientUnits="userSpaceOnUse" id="linearGradient5494" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="30.793854" x2="917.36914" y1="15.860829" x1="900.99268" gradientTransform="matrix(0.791429,0,0,0.832948,188.7144,-7.002499)" gradientUnits="userSpaceOnUse" id="linearGradient5506" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" gradientTransform="matrix(1,0,0,0.900774,0,8.915579)" gradientUnits="userSpaceOnUse" y2="88.232635" x2="499.03857" y1="83.8125" x1="494.3125" id="linearGradient5761" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient900" y2="266.84918" x2="368.44751" y1="259.15848" x1="359.53757" gradientTransform="matrix(1.270957,0,0,1.195374,110.6171,-279.6099)" gradientUnits="userSpaceOnUse" id="linearGradient6204" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="28.370596" x2="572.58508" y1="26.23856" x1="573.1181" id="linearGradient6220" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="38.687935" x2="575.87646" y1="24.525126" x1="558.07092" id="linearGradient6255" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientUnits="userSpaceOnUse" y2="28.218306" x2="574.51764" y1="22.431351" x1="562.20056" id="linearGradient6263" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="34.170109" x2="570.16241" y1="26.238558" x1="566.24866" gradientUnits="userSpaceOnUse" id="linearGradient6330" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" y2="33.632038" x2="576.5" y1="28.644594" x1="574.65735" gradientTransform="translate(-6,0)" gradientUnits="userSpaceOnUse" id="linearGradient6332" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="120.57917" x2="98.377357" y1="120.625" x1="95.237885" gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" gradientUnits="userSpaceOnUse" id="linearGradient4723" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="128.70482" x2="70.212822" y1="132.3595" x1="66.82119" gradientTransform="matrix(0.845944,0,0,1,30.52281,-4.619314)" gradientUnits="userSpaceOnUse" id="linearGradient4726" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5858" y2="120.82606" x2="73.446037" y1="122.50062" x1="64.943275" gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" gradientUnits="userSpaceOnUse" id="linearGradient4728" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" gradientUnits="userSpaceOnUse" y2="125.95964" x2="89.703491" y1="125.87318" x1="85.640419" id="linearGradient5476" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" gradientUnits="userSpaceOnUse" y2="118.8367" x2="89.002983" y1="120.64272" x1="85.865807" id="linearGradient5492" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" y2="41.695" x2="-21.25" y1="34.121754" x1="-26.252876" gradientTransform="translate(200,120)" gradientUnits="userSpaceOnUse" id="linearGradient5524" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" gradientUnits="userSpaceOnUse" y2="146.119" x2="172.70799" y1="167.853" x1="182.981" id="linearGradient5536" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient16137" gradientTransform="translate(-474.994,-196)" y2="304.79916" x2="496.69983" y1="311.08139" x1="503.46234" gradientUnits="userSpaceOnUse" id="linearGradient14646" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient700" gradientTransform="translate(-474.994,-196)" y2="298.38025" x2="502.13275" y1="299.7858" x1="505.68192" gradientUnits="userSpaceOnUse" id="linearGradient14650" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-474.994,-196)" y2="301.24585" x2="503.20328" y1="296.24222" x1="494.79541" gradientUnits="userSpaceOnUse" id="linearGradient14652" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient14614" gradientTransform="translate(-474.994,-196)" y2="300.82486" x2="500.25235" y1="302.00549" x1="503.90671" gradientUnits="userSpaceOnUse" id="linearGradient14654" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="213.66304" x2="15.985496" y1="219.52322" x1="19.473742" gradientTransform="matrix(0.75262,0,0,0.59916,3.63262,86.9905)" gradientUnits="userSpaceOnUse" id="linearGradient5679" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" gradientTransform="translate(-0.93075,0)" gradientUnits="userSpaceOnUse" y2="219.01349" x2="20.659096" y1="215.0097" x1="17.627459" id="linearGradient5694" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="304.59381" x2="454.26642" y1="293.79044" x1="448.79019" id="linearGradient5856" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5899" y2="172.62581" x2="129.23041" y1="154.33151" x1="113.17024" gradientUnits="userSpaceOnUse" id="linearGradient5907" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5899" gradientUnits="userSpaceOnUse" y2="180.11198" x2="137.9319" y1="156.459" x1="115.92701" id="linearGradient5915" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="167.55257" x2="123.97673" y1="149.37389" x1="113.7436" id="linearGradient6574" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="195.88911" x2="101.69498" y1="191.04416" x1="98.531143" id="linearGradient6644" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.2556)" gradientUnits="userSpaceOnUse" id="linearGradient6666" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.74545" x2="17.095251" y1="218.5388" x1="19.645912" gradientTransform="matrix(1.066601,0,0,0.654301,-5.23183,65.54498)" gradientUnits="userSpaceOnUse" id="linearGradient6668" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.83746" x2="17.884754" y1="213.24774" x1="14.873261" gradientTransform="matrix(0.80275,0,0,0.392032,-0.364526,122.4629)" gradientUnits="userSpaceOnUse" id="linearGradient6670" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.300191,0,0,0.432481,-3.154508,116.6655)" gradientUnits="userSpaceOnUse" id="linearGradient6696" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.00407" x2="19.571228" y1="210.29736" x1="15.678634" gradientTransform="matrix(1.103365,0,0,0.199883,-4.736921,163.6837)" gradientUnits="userSpaceOnUse" id="linearGradient6700" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="matrix(1,0,0,1.133349,0,-27.33777)" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientUnits="userSpaceOnUse" id="linearGradient7596" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5734" y2="218.81409" x2="21.329924" y1="214.80972" x1="16.396698" gradientTransform="matrix(1,0,0,1.980119,-4.001611,-220.1696)" gradientUnits="userSpaceOnUse" id="linearGradient7598" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.80258" x2="17.498137" y1="214.54108" x1="15.646495" gradientTransform="matrix(0.752624,0,0,1.186414,0.561763,-47.91824)" gradientUnits="userSpaceOnUse" id="linearGradient7600" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.000669,344.0026,53.00302)" gradientUnits="userSpaceOnUse" id="linearGradient10394" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.07632" x2="16.761377" y1="218.81378" x1="20.716461" gradientTransform="matrix(1.165662,0,0,1.664561,338.7448,-99.07928)" gradientUnits="userSpaceOnUse" id="linearGradient10396" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.98761" x2="17.047382" y1="214.54108" x1="15.646495" gradientTransform="matrix(0.877306,0,0,0.997343,344.0641,45.72171)" gradientUnits="userSpaceOnUse" id="linearGradient10398" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="218.39743" x2="22.042753" y1="214.00838" x1="15.156842" gradientTransform="matrix(1.124777,0,0,1.798127,314.1438,-265.2068)" gradientUnits="userSpaceOnUse" id="linearGradient10434" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="218.81555" x2="20.989225" y1="215.0097" x1="17.483265" gradientTransform="matrix(1.165669,0,0,2.325584,313.3867,-379.6724)" gradientUnits="userSpaceOnUse" id="linearGradient10436" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="214.38213" x2="16.109276" y1="219.69438" x1="19.085964" gradientTransform="matrix(0.87731,0,0,1.393407,318.7061,-177.3687)" gradientUnits="userSpaceOnUse" id="linearGradient10438" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(7,0)" gradientUnits="userSpaceOnUse" y2="124.19406" x2="336.84845" y1="121.99369" x1="332.87787" id="linearGradient10450" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" gradientUnits="userSpaceOnUse" y2="37.900738" x2="201.25211" y1="26.494753" x1="192.96376" id="linearGradient10473" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="189.90421" x2="-39.058098" y1="186.04233" x1="-40.927143" id="linearGradient10481" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="184.12981" x2="-33.186855" y1="182.3336" x1="-34.910583" id="linearGradient10489" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="312.96082" x2="102.04173" y1="308.2066" x1="94.932152" id="linearGradient6001" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" gradientTransform="matrix(1,0,0,0.991519,0,2.569281)" gradientUnits="userSpaceOnUse" y2="313.38208" x2="124.80454" y1="306.54694" x1="118.54871" id="linearGradient6026" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" gradientUnits="userSpaceOnUse" y2="316" x2="119.9323" y1="311.00522" x1="114.09267" id="linearGradient6034" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.87985" x2="15.652736" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient6124" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.87958" x2="17.502275" y1="218.10548" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient6126" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.78011" x2="18.528898" y1="212.90457" x1="15.382778" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient6128" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="210.87169" x2="16.804146" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient6138" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.11118" x2="14.53613" y1="219.22153" x1="21.809561" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient6140" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.988022" y1="214.64738" x1="16.352634" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient6142" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3466" gradientUnits="userSpaceOnUse" y2="78.5" x2="258.91818" y1="80.005852" x1="256.3262" id="linearGradient6187" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.87985" x2="15.652736" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.249566,0,0,1.420757,477.3232,-211.4881)" gradientUnits="userSpaceOnUse" id="linearGradient6224" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.44499" x2="16.37369" y1="219.0054" x1="21.884281" gradientTransform="matrix(1.332493,0,0,2.661873,470.7912,-492.2235)" gradientUnits="userSpaceOnUse" id="linearGradient6226" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.19952" x2="17.852816" y1="214.66974" x1="16.466093" gradientTransform="matrix(1.002867,0,0,1.594894,476.8719,-260.6659)" gradientUnits="userSpaceOnUse" id="linearGradient6228" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="90.935608" x2="497.23138" y1="83.419342" x1="490" id="linearGradient5598" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5734" gradientUnits="userSpaceOnUse" y2="21.160408" x2="279.47864" y1="25.257681" x1="283.98041" id="linearGradient5612" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="25.592152" x2="283.10538" y1="22.038395" x1="279.64499" id="linearGradient5620" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="309.5" x2="81.92466" y1="306.83057" x1="79.599174" id="linearGradient5632" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(1,-1.24044)" gradientUnits="userSpaceOnUse" y2="169.57916" x2="21.9317" y1="167.06665" x1="19.57576" id="linearGradient5670" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5663" gradientTransform="matrix(0.977549,-0.210707,0.210707,0.977549,-25.77315,22.51322)" gradientUnits="userSpaceOnUse" y2="120.93597" x2="87.871544" y1="124.96582" x1="94.053925" id="linearGradient6123" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="247.05618" x2="497.45804" y1="250.02412" x1="500.09354" gradientTransform="matrix(0.97755,-0.210707,0.210707,0.97755,-452.0637,-9.594324)" gradientUnits="userSpaceOnUse" id="linearGradient6168" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="121.33732" x2="97.37693" y1="118.01502" x1="94.58905" gradientTransform="matrix(0.97755,-0.210707,0.218379,1.013142,-30.17658,18.69473)" gradientUnits="userSpaceOnUse" id="linearGradient6170" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(0.30283,0.11441)" gradientUnits="userSpaceOnUse" y2="129.00923" x2="86.020599" y1="115.25341" x1="75.092407" id="linearGradient6189" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient700" y2="118.64024" x2="95.750748" y1="121.4717" x1="99.279366" gradientTransform="matrix(0.97755,-0.211918,0.218379,1.018965,-62.10329,4.028774)" gradientUnits="userSpaceOnUse" id="linearGradient6325" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" gradientTransform="matrix(1,0,0,1.005747,-443,-167.4216)" y2="275.92883" x2="498.01834" y1="278.69318" x1="501.36981" gradientUnits="userSpaceOnUse" id="linearGradient5228" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="279.68689" x2="501.15674" y1="276.5925" x1="497.19922" gradientTransform="matrix(1,0,0,1.005747,-444.4008,-168.4784)" gradientUnits="userSpaceOnUse" id="linearGradient5230" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientUnits="userSpaceOnUse" y2="109.46882" x2="48.803055" y1="98.276649" x1="44.283833" id="linearGradient5436" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5774" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5776" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5778" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5786" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5788" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5790" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="218.60168" x2="20.615379" y1="212.62971" x1="13.844337" gradientTransform="matrix(0.751237,0,0,1.394996,1124.637,-101.6946)" gradientUnits="userSpaceOnUse" id="linearGradient3702" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="219.01349" x2="20.659096" y1="215.0097" x1="17.627459" gradientTransform="matrix(0.669342,0,0,1.655859,1126.157,-158.3099)" gradientUnits="userSpaceOnUse" id="linearGradient3704" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="213.66304" x2="15.985496" y1="219.52322" x1="19.473742" gradientTransform="matrix(0.503763,0,0,0.992131,1129.211,-14.26594)" gradientUnits="userSpaceOnUse" id="linearGradient3706" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="218.60168" x2="20.615379" y1="212.62971" x1="13.844337" gradientTransform="matrix(1.123736,0,0,1.394996,1109.243,-88.69465)" gradientUnits="userSpaceOnUse" id="linearGradient3732" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="219.01349" x2="20.659096" y1="215.0097" x1="17.627459" gradientTransform="matrix(1.160002,0,0,1.655859,1108.567,-145.3099)" gradientUnits="userSpaceOnUse" id="linearGradient3734" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="213.66304" x2="15.985496" y1="219.52322" x1="19.473742" gradientTransform="matrix(0.873045,0,0,0.992131,1113.859,-1.26599)" gradientUnits="userSpaceOnUse" id="linearGradient3736" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="38.280788" x2="333.01724" y1="34.560329" x1="330.38608" gradientUnits="userSpaceOnUse" id="linearGradient4736" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="39.123158" x2="339.54184" y1="33.542469" x1="335.45627" gradientUnits="userSpaceOnUse" id="linearGradient4738" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="254.23909" x2="359.69348" y1="269.26901" x1="368.91229" gradientTransform="matrix(0.81842,0,0,0.200075,254.0602,-14.15959)" gradientUnits="userSpaceOnUse" id="linearGradient4740" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="259.75748" x2="360.57736" y1="265.38815" x1="366.48358" gradientTransform="matrix(0.181871,0,0,0.200075,474.8909,-14.15959)" gradientUnits="userSpaceOnUse" id="linearGradient4742" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" gradientTransform="translate(209.9854,0.409827)" y2="31.666874" x2="346" y1="29.139771" x1="344" gradientUnits="userSpaceOnUse" id="linearGradient4748" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="234.00311" x2="112.20101" y1="221.06877" x1="101.09393" gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" gradientUnits="userSpaceOnUse" id="linearGradient9254" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="188.41277" x2="176.86269" y1="157.82079" x1="144.08243" gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" gradientUnits="userSpaceOnUse" id="linearGradient9256" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="1.4910357" x2="223.96594" y1="15.97338" x1="206.46887" gradientTransform="matrix(1.006993,0,0,1,-1.456289,0.0155694)" gradientUnits="userSpaceOnUse" id="linearGradient6160" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient4528" r="8" fy="72.999352" fx="717.99878" cy="72.999352" cx="717.99878" gradientTransform="matrix(1.12634,-0.471221,0.445195,1.164731,-121.1975,328.3106)" gradientUnits="userSpaceOnUse" id="radialGradient4374" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6524" y2="28.964588" x2="843.9635" y1="45.306683" x1="860.23901" gradientUnits="userSpaceOnUse" id="linearGradient3749" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6524" y2="28.964588" x2="843.9635" y1="45.306683" x1="860.23901" gradientUnits="userSpaceOnUse" id="linearGradient3755" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" y2="153.34221" x2="176.01361" y1="167.85339" x1="182.98134" gradientUnits="userSpaceOnUse" id="linearGradient8492" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" y2="37.219666" x2="-23.224422" y1="34.121754" x1="-26.252876" gradientTransform="translate(200,120)" gradientUnits="userSpaceOnUse" id="linearGradient8494" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="120.57917" x2="98.377357" y1="120.625" x1="95.237885" gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" gradientUnits="userSpaceOnUse" id="linearGradient8496" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="117.85143" x2="89.752335" y1="119.8891" x1="85.258904" gradientUnits="userSpaceOnUse" id="linearGradient8498" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5858" y2="117.40206" x2="75.142403" y1="123.21288" x1="65.277161" gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" gradientUnits="userSpaceOnUse" id="linearGradient8500" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="125.95964" x2="89.703491" y1="125.87318" x1="85.640419" gradientUnits="userSpaceOnUse" id="linearGradient8502" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4528" y2="246.81923" x2="683.84705" y1="252.35779" x1="673.64648" gradientUnits="userSpaceOnUse" id="linearGradient8709" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4528" y2="251.91594" x2="678.73236" y1="256.07169" x1="671.7674" gradientUnits="userSpaceOnUse" id="linearGradient8711" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient4218" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient4220" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient4249" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient4251" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5198" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5200" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="244.67865" x2="717.60321" y1="249.98053" x1="712.98596" gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" gradientUnits="userSpaceOnUse" id="linearGradient5218" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient12513" y2="712.16724" x2="61.995983" y1="715.75946" x1="64.608963" gradientUnits="userSpaceOnUse" id="linearGradient5220" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5944" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5946" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.87985" x2="15.652736" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient5948" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.87958" x2="17.502275" y1="218.10548" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient5950" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.19952" x2="17.852816" y1="212.71106" x1="14.855348" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient5952" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="210.87169" x2="16.804146" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient5954" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="212.95068" x2="10.294251" y1="219.11699" x1="21.809561" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient5956" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.988022" y1="213.65869" x1="16.814611" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient5958" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="264.68918" x2="366.09814" y1="261.24731" x1="361.70941" gradientTransform="matrix(1.02198,0,0,1,-306.8063,31.29639)" gradientUnits="userSpaceOnUse" id="linearGradient5960" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1.02198,0,-158.6115,251.2932)" gradientUnits="userSpaceOnUse" id="linearGradient5962" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="264.68918" x2="366.09814" y1="261.24731" x1="361.70941" gradientTransform="matrix(1.02198,0,0,1,-307.3063,52.7964)" gradientUnits="userSpaceOnUse" id="linearGradient6122" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="178.65753" x2="-33.694717" y1="187.86301" x1="-37.330727" gradientTransform="matrix(0,1,-1.02198,0,-159.1115,272.7932)" gradientUnits="userSpaceOnUse" id="linearGradient6125" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="212.95068" x2="10.294251" y1="219.11699" x1="21.809561" gradientTransform="matrix(1.66352,0,0,3.319677,33.71939,-404.9123)" gradientUnits="userSpaceOnUse" id="linearGradient6146" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.988022" y1="213.65869" x1="16.814611" gradientTransform="matrix(1.252006,0,0,1.989026,41.31058,-116.1321)" gradientUnits="userSpaceOnUse" id="linearGradient6148" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="210.87169" x2="16.804146" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,42.76116,-42.5525)" gradientUnits="userSpaceOnUse" id="linearGradient6151" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.87958" x2="17.502275" y1="218.10548" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,38.42262,-122.5159)" gradientUnits="userSpaceOnUse" id="linearGradient6154" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.19952" x2="17.852816" y1="212.71106" x1="14.855348" gradientTransform="matrix(0.877306,0,0,1.195484,43.74192,51.05256)" gradientUnits="userSpaceOnUse" id="linearGradient6156" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.87985" x2="15.652736" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,43.68042,71.69251)" gradientUnits="userSpaceOnUse" id="linearGradient6159" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientTransform="matrix(1,0,0,0.996869,180.9431,-216.2098)" gradientUnits="userSpaceOnUse" id="linearGradient6369" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient6371" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient6436" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientTransform="matrix(0.735355,0,0,0.733012,215.5241,-110.6465)" gradientUnits="userSpaceOnUse" id="linearGradient15119" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15121" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15135" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientTransform="matrix(0.533827,0,0,0.532126,226.8053,-40.17395)" gradientUnits="userSpaceOnUse" id="linearGradient15141" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient15175" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="215.9465" x2="143.22507" y1="214.81735" x1="148" gradientTransform="translate(158,-105)" gradientUnits="userSpaceOnUse" id="linearGradient15213" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientTransform="matrix(1,0,0,0.996869,215.9431,-248.2098)" gradientUnits="userSpaceOnUse" id="linearGradient4689" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4696" gradientTransform="matrix(0.898695,0,0,0.466666,34.08168,53.63336)" gradientUnits="userSpaceOnUse" y2="107.40817" x2="334.49628" y1="86.635468" x1="334.40353" id="linearGradient4703" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4709" y2="107.40817" x2="334.49628" y1="86.635468" x1="334.40353" gradientTransform="matrix(0.898695,0,0,0.933333,38.74835,6.266664)" gradientUnits="userSpaceOnUse" id="linearGradient4707" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4721" y2="107.40817" x2="334.49628" y1="86.635468" x1="334.40353" gradientTransform="matrix(0.898695,0,0,0.666666,43.41501,33.33337)" gradientUnits="userSpaceOnUse" id="linearGradient4718" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5684" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5686" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-105,-15)" y2="213" x2="176" y1="213" x1="160" gradientUnits="userSpaceOnUse" id="linearGradient5692" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" gradientTransform="translate(-105,-15)" y2="213.07851" x2="175.29338" y1="213" x1="160" gradientUnits="userSpaceOnUse" id="linearGradient5696" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5728" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5730" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5750" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5752" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="311.07904" x2="698.26788" y1="303.70065" x1="693.27899" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" id="linearGradient5777" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="311.81979" x2="696.86676" y1="306.07037" x1="693.40259" gradientTransform="translate(-0.999998,-0.937496)" gradientUnits="userSpaceOnUse" id="linearGradient5779" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="213" x2="176" y1="213" x1="160" gradientTransform="translate(-147.4999,-94.5)" gradientUnits="userSpaceOnUse" id="linearGradient5841" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="218.54164" x2="173.72397" y1="209.14064" x1="163.85936" gradientTransform="matrix(1.102855,0,0,1.148517,-164.5451,-124.7814)" gradientUnits="userSpaceOnUse" id="linearGradient5844" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="217.25519" x2="173.03127" y1="207.75523" x1="161.28645" gradientTransform="matrix(1.102855,0,0,1.148517,-165.0966,-125.3557)" gradientUnits="userSpaceOnUse" id="linearGradient5846" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient4798" r="9.4159403" fy="-2729.78" fx="-293.81201" cy="-2729.78" cx="-293.81201" gradientTransform="matrix(1.20758,0.0165454,0.27747,1.03554,1573.42,3294.03)" gradientUnits="userSpaceOnUse" id="radialGradient4365" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4935" gradientTransform="matrix(1.00712,0,0,1.00712,16.0574,-204.726)" y2="96.397003" x2="-14.7622" y1="107.85" x1="-0.53531498" gradientUnits="userSpaceOnUse" id="linearGradient4246" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" gradientTransform="matrix(1.062197,0,0,0.9973142,-1261.924,1.593331)" gradientUnits="userSpaceOnUse" y2="308.5" x2="536.5" y1="308.5" x1="522.99103" id="linearGradient9331" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="214.02989" x2="1095.3198" y1="180.82251" x1="1095.3066" gradientTransform="matrix(0.9891733,0,0,0.9571849,-1182.248,9.280945)" gradientUnits="userSpaceOnUse" id="linearGradient4415" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="206.95731" x2="1095.3199" y1="178.1412" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.51422)" gradientUnits="userSpaceOnUse" id="linearGradient4428" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="213.17517" x2="1095.3199" y1="180.16138" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" gradientUnits="userSpaceOnUse" id="linearGradient4437" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="214.28058" x2="1095.3199" y1="177.79276" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.22875)" gradientUnits="userSpaceOnUse" id="linearGradient4447" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="209.16811" x2="1096.5184" y1="181.33076" x1="1096.5184" gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" gradientUnits="userSpaceOnUse" id="linearGradient4453" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="175.6769" x2="1095.3199" y1="207.02328" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,107.4099)" gradientUnits="userSpaceOnUse" id="linearGradient4501" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="178.569" x2="1095.3806" y1="203.09409" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,258.5598)" gradientUnits="userSpaceOnUse" id="linearGradient4507" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="179.91225" x2="1095.3199" y1="205.18626" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,264.5598)" gradientUnits="userSpaceOnUse" id="linearGradient4521" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1610" y2="178.569" x2="1095.3806" y1="203.09409" x1="1095.3199" gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,101.4099)" gradientUnits="userSpaceOnUse" id="linearGradient4523" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4826" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="509.04944" x2="354.9541" y1="500.71857" x1="368.34299" gradientUnits="userSpaceOnUse" id="linearGradient5184" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4820" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="532.95105" x2="348.70596" y1="510.14041" x1="359.71457" gradientUnits="userSpaceOnUse" id="linearGradient5187" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient4832" gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" y2="481.67661" x2="373.99606" y1="508.15683" x1="348.70596" gradientUnits="userSpaceOnUse" id="linearGradient5190" inkscape:collect="always" /> -<clipPath id="cieClip" clipPathUnits="userSpaceOnUse"> -<path style="fill:none;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 8.3599997,47.759998 C 7.7515743,47.515279 7.222277,46.901819 6.7843235,46.39273 5.6082715,45.025655 4.9648259,43.302806 4.3800001,41.630001 3.4463938,38.959561 2.6271155,36.199224 2.1141648,33.410416 1.4157915,29.613502 0.61298459,25.784236 0.39598041,21.942782 0.20936341,18.639248 -0.03673501,15.098988 0.67000002,11.99 1.0212715,10.444727 2.3352289,8.406245 3.5699999,7.98 4.6660199,7.6016521 6.4569453,8.7469868 7.6985305,9.5047548 9.5843038,10.655686 11.337786,12.013685 12.995799,13.4917 17.541311,17.54374 21.813011,21.891764 26.139096,26.173982 29.192346,29.196273 32.227767,32.236821 35.27,35.27 26.3,39.433333 17.33,43.596666 8.3599997,47.759998 z" id="path2430" sodipodi:nodetypes="cssssssssscc" /> -</clipPath> -<radialGradient xlink:href="#linearGradient5724" r="11.5" fy="216.47368" fx="778" cy="216.47368" cx="778" gradientTransform="matrix(1,0,0,0.826087,0,38.17391)" gradientUnits="userSpaceOnUse" id="radialGradient8472" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient5724" r="11.5" fy="209.35001" fx="777" cy="209.35001" cx="777" gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)" gradientUnits="userSpaceOnUse" id="radialGradient8474" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient8482" gradientUnits="userSpaceOnUse" y2="214.25" x2="783" y1="200.25" x1="770.5" id="linearGradient5633" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient8482" gradientUnits="userSpaceOnUse" y2="218.25" x2="782" y1="216.875" x1="763" id="linearGradient5637" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6206" id="linearGradient6212" x1="-15.4575" y1="94.606689" x2="-0.95749998" y2="109.60669" gradientUnits="userSpaceOnUse" /> -<clipPath clipPathUnits="userSpaceOnUse" id="clipoutline1"> -<path id="outline1" d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z" /> -</clipPath> -<linearGradient xlink:href="#WhiteTransparent" y2="76" x2="0" y1="128" x1="0" gradientUnits="userSpaceOnUse" id="linearGradient3731" inkscape:collect="always" /> -<linearGradient id="WhiteTransparent" gradientUnits="userSpaceOnUse"> -<stop style="stop-color:white;stop-opacity:1" offset="0" id="stop7" /> -<stop style="stop-color:white;stop-opacity:0" offset="1" id="stop9" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient3391" y2="40" x2="60" y1="20" x1="80" gradientUnits="userSpaceOnUse" id="linearGradient3733" inkscape:collect="always" /> -<linearGradient gradientUnits="userSpaceOnUse" id="linearGradient3391"> -<stop id="stop3393" offset="0" style="stop-color:white;stop-opacity:1" /> -<stop id="stop3395" offset="1" style="stop-color:white;stop-opacity:0" /> -</linearGradient> -<linearGradient xlink:href="#WhiteTransparent" y2="60" x2="58" y1="35" x1="33" gradientUnits="userSpaceOnUse" id="linearGradient3735" inkscape:collect="always" /> -<linearGradient xlink:href="#BlackTransparent" y2="64" x2="0" y1="128" x1="0" gradientUnits="userSpaceOnUse" id="linearGradient3737" inkscape:collect="always" /> -<linearGradient id="BlackTransparent" gradientUnits="userSpaceOnUse"> -<stop style="stop-color:black;stop-opacity:1" offset="0" id="stop12" /> -<stop style="stop-color:black;stop-opacity:0" offset="1" id="stop14" /> -</linearGradient> -<linearGradient xlink:href="#WhiteTransparent" y2="50" x2="90" y1="20" x1="60" gradientUnits="userSpaceOnUse" id="linearGradient3739" inkscape:collect="always" /> -<linearGradient id="eraserFill"> -<stop id="stop5742_1" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744_1" offset="1.0000000" style="stop-color:#f3b698;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient xlink:href="#eraserFill" y2="234.00311" x2="112.20101" y1="221.06877" x1="101.09393" gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" gradientUnits="userSpaceOnUse" id="linearGradient7424" inkscape:collect="always" /> -<linearGradient xlink:href="#eraserFill" y2="188.41277" x2="176.86269" y1="157.82079" x1="144.08243" gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" gradientUnits="userSpaceOnUse" id="linearGradient7426" inkscape:collect="always" /> -<clipPath clipPathUnits="userSpaceOnUse" id="clipPath5905"> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="rect5907" width="11.98896" height="11.88748" x="375.8356" y="138.7635" /> -</clipPath> -<linearGradient xlink:href="#linearGradient5704" y2="167.55257" x2="123.97673" y1="149.37389" x1="113.7436" gradientUnits="userSpaceOnUse" id="linearGradient5389" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5734" y2="21.160408" x2="279.47864" y1="25.257681" x1="283.98041" gradientUnits="userSpaceOnUse" id="linearGradient5391" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="25.592152" x2="283.10538" y1="22.038395" x1="279.64499" gradientUnits="userSpaceOnUse" id="linearGradient5393" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" gradientUnits="userSpaceOnUse" id="linearGradient5609" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.74544" x2="17.688465" y1="221.11246" x1="19.511591" gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" gradientUnits="userSpaceOnUse" id="linearGradient5611" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="222.86086" x2="17.284773" y1="213.24774" x1="14.873261" gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" gradientUnits="userSpaceOnUse" id="linearGradient5613" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5663" y2="521.09827" x2="36.868645" y1="509.99991" x1="26.000011" gradientTransform="translate(937,-210.99991)" gradientUnits="userSpaceOnUse" id="linearGradient5617" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="174.99881" x2="-40.941547" y1="192.33638" x1="-29" gradientTransform="translate(714.9212,-135)" gradientUnits="userSpaceOnUse" id="linearGradient5619" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.90157" x2="16.946434" y1="219.05171" x1="22.009026" gradientTransform="matrix(1,0,0,1.66306,-4.001611,-151.8935)" gradientUnits="userSpaceOnUse" id="linearGradient5677" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.80258" x2="17.498137" y1="213.23509" x1="14.827456" gradientTransform="matrix(0.752624,0,0,0.996445,0.561763,-7.22312)" gradientUnits="userSpaceOnUse" id="linearGradient5680" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="260.24765" x2="361.73392" y1="264.55298" x1="365.23157" gradientTransform="matrix(0.455219,0,0,0.501233,377.5466,-100.7998)" gradientUnits="userSpaceOnUse" id="linearGradient5682" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="32.713181" x2="544.94995" y1="27.955364" x1="542.19043" gradientTransform="matrix(0.997993,0,0,0.99958,1.061475,-0.0495296)" gradientUnits="userSpaceOnUse" id="linearGradient5685" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="85.673454" x2="495.94803" y1="74.943916" x1="482.62952" gradientUnits="userSpaceOnUse" id="linearGradient5687" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient10585" y2="78.522537" x2="493.33023" y1="77.8489" x1="491.43066" gradientUnits="userSpaceOnUse" id="linearGradient5689" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="29.518064" x2="276.83484" y1="24.096111" x1="272.95816" gradientTransform="translate(0.5,1.547499)" gradientUnits="userSpaceOnUse" id="linearGradient5766" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="28.991222" x2="278.52783" y1="24.153297" x1="273.12143" gradientTransform="translate(0,0.047499)" gradientUnits="userSpaceOnUse" id="linearGradient5768" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.80444" y1="182.46863" x1="974.19751" gradientUnits="userSpaceOnUse" id="linearGradient5770" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="184.62659" x2="977.40314" y1="180.79343" x1="967.65063" gradientUnits="userSpaceOnUse" id="linearGradient5772" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient500" y2="182.08299" x2="979.23187" y1="178.03139" x1="968.25732" gradientTransform="translate(0,-7)" gradientUnits="userSpaceOnUse" id="linearGradient5775" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="184.71498" x2="974.57471" y1="178.93727" x1="967.73901" gradientTransform="translate(0,-7)" gradientUnits="userSpaceOnUse" id="linearGradient5780" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="178.53358" x2="964.1427" y1="180" x1="974.64948" gradientTransform="translate(0,-2)" gradientUnits="userSpaceOnUse" id="linearGradient5782" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="181.08876" x2="976.5202" y1="177.34041" x1="966.51788" gradientTransform="translate(0,-2)" gradientUnits="userSpaceOnUse" id="linearGradient5784" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="184.8026" x2="979.80444" y1="182.46863" x1="974.19751" gradientUnits="userSpaceOnUse" id="linearGradient5787" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="181.70978" x2="977.93347" y1="178.31856" x1="968.88806" gradientUnits="userSpaceOnUse" id="linearGradient5789" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient5791" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient5793" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="218.54164" x2="173.72397" y1="209.14064" x1="163.85936" gradientTransform="matrix(1.102855,0,0,1.148517,-167.5042,-41.73143)" gradientUnits="userSpaceOnUse" id="linearGradient5795" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="217.25519" x2="173.03127" y1="207.75523" x1="161.28645" gradientTransform="matrix(1.102855,0,0,1.148517,-168.0557,-42.30568)" gradientUnits="userSpaceOnUse" id="linearGradient5797" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="213" x2="176" y1="213" x1="160" gradientTransform="translate(-150.459,-11.45)" gradientUnits="userSpaceOnUse" id="linearGradient5799" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.60497" x2="18.584427" y1="205.44775" x1="11.87961" gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" gradientUnits="userSpaceOnUse" id="linearGradient5801" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.74544" x2="17.688465" y1="218.28853" x1="20.177799" gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" gradientUnits="userSpaceOnUse" id="linearGradient5803" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.83746" x2="17.884754" y1="213.24774" x1="14.873261" gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" gradientUnits="userSpaceOnUse" id="linearGradient5805" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="211.87985" x2="15.652736" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" gradientUnits="userSpaceOnUse" id="linearGradient5807" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.87958" x2="17.502275" y1="218.10548" x1="19.63879" gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" gradientUnits="userSpaceOnUse" id="linearGradient5809" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.19952" x2="17.852816" y1="212.71106" x1="14.855348" gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" gradientUnits="userSpaceOnUse" id="linearGradient5811" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="210.87169" x2="16.804146" y1="205.44775" x1="11.87961" gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" gradientUnits="userSpaceOnUse" id="linearGradient5813" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="212.95068" x2="10.294251" y1="219.11699" x1="21.809561" gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" gradientUnits="userSpaceOnUse" id="linearGradient5815" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="218.2771" x2="17.988022" y1="213.65869" x1="16.814611" gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" gradientUnits="userSpaceOnUse" id="linearGradient5817" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="210.5" x2="111.68652" y1="210.5" x1="99.313484" gradientUnits="userSpaceOnUse" id="linearGradient5819" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="206.99658" x2="101.19292" y1="215.4819" x1="108.35131" gradientUnits="userSpaceOnUse" id="linearGradient5821" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="212.99005" x2="108.8156" y1="205.19197" x1="101.75068" gradientUnits="userSpaceOnUse" id="linearGradient5823" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="218.39743" x2="22.042753" y1="214.00838" x1="15.156842" gradientTransform="matrix(1.124777,0,0,1.399469,339.507,-41.54364)" gradientUnits="userSpaceOnUse" id="linearGradient5825" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="218.81555" x2="20.989225" y1="215.0097" x1="17.483265" gradientTransform="matrix(1.165669,0,0,1.655559,338.7499,-97.1359)" gradientUnits="userSpaceOnUse" id="linearGradient5827" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="214.38213" x2="16.109276" y1="219.69438" x1="19.085964" gradientTransform="matrix(0.87731,0,0,0.991952,344.0693,46.88201)" gradientUnits="userSpaceOnUse" id="linearGradient5829" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="179.49295" x2="-24.431232" y1="179.49295" x1="-47.741638" gradientTransform="matrix(1,0,0,0.957993,-0.0384184,13.49742)" gradientUnits="userSpaceOnUse" id="linearGradient5831" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="181.08862" x2="-29.504631" y1="181.08862" x1="-44.417458" gradientTransform="matrix(1,0,0,0.963346,-0.0384184,12.50071)" gradientUnits="userSpaceOnUse" id="linearGradient5833" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="175.99083" x2="-29.013157" y1="175.99083" x1="-37.778763" gradientTransform="translate(-8.989043,0)" gradientUnits="userSpaceOnUse" id="linearGradient5835" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="179.49295" x2="-27.038502" y1="179.49295" x1="-48.429123" gradientTransform="matrix(1,0,0,0.957993,0,7.509185)" gradientUnits="userSpaceOnUse" id="linearGradient5837" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="181.64502" x2="-29.63546" y1="181.54939" x1="-44.36454" gradientTransform="matrix(1,0,0,0.963346,0,6.51247)" gradientUnits="userSpaceOnUse" id="linearGradient5839" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="181.99083" x2="-29.000008" y1="181.99083" x1="-37.500759" gradientTransform="matrix(1.592997,0,0,1,11.72818,4)" gradientUnits="userSpaceOnUse" id="linearGradient5842" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="255.5" x2="12.50002" y1="249.821" x1="10.192928" gradientUnits="userSpaceOnUse" id="linearGradient5845" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="255.53125" x2="12.53125" y1="251.03125" x1="9.03125" gradientUnits="userSpaceOnUse" id="linearGradient5847" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="221.69243" x2="20.358622" y1="214.00838" x1="15.156842" gradientTransform="matrix(0.625152,0,0,1.007875,-0.61217,35.29459)" gradientUnits="userSpaceOnUse" id="linearGradient5849" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="217.01157" x2="19.156134" y1="215.67207" x1="17.075911" gradientTransform="matrix(0.501399,0,0,1.00217,1.674173,36.50449)" gradientUnits="userSpaceOnUse" id="linearGradient5851" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="215.46176" x2="16.232185" y1="220.34328" x1="19.762522" gradientTransform="matrix(0.377364,0,0,0.600465,3.962295,123.6837)" gradientUnits="userSpaceOnUse" id="linearGradient5853" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient2888" r="7.4696794" fy="153.06299" fx="171.77553" cy="153.06299" cx="171.77553" gradientTransform="matrix(1.122233,1.252981,-2.05495,1.830229,297.3402,-339.2527)" gradientUnits="userSpaceOnUse" id="radialGradient5855" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="138.5" x2="36.186733" y1="132.94643" x1="31.372471" gradientUnits="userSpaceOnUse" id="linearGradient5857" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="137.47379" x2="42.183006" y1="137.51648" x1="34.519402" gradientTransform="translate(-1.5,7.5244)" gradientUnits="userSpaceOnUse" id="linearGradient5859" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7772" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7778" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7780" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7786" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7788" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7794" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7796" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7802" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7804" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7810" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7812" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7818" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7820" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7826" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7828" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7834" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient7836" gradientUnits="userSpaceOnUse" r="1.111868" fy="137.9821" fx="375.09409" cy="137.9821" cx="375.09409" id="radialGradient7842" inkscape:collect="always" /> -<linearGradient id="linearGradient2485-9"> -<stop id="stop2486-3" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000" /> -<stop id="stop2487-1" offset="1.0000000" style="stop-color:#aaaaaa;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient3480-8"> -<stop id="stop3482-9" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" /> -<stop id="stop3484-6" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient2485-9" inkscape:collect="always" id="linearGradient6465" gradientUnits="userSpaceOnUse" x1="61.447762" y1="236.41119" x2="64.518303" y2="240.354" gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" /> -<linearGradient xlink:href="#linearGradient3480-8" inkscape:collect="always" id="linearGradient6467" gradientUnits="userSpaceOnUse" x1="59" y1="235.13409" x2="62.5" y2="239.4902" gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" /> -<linearGradient xlink:href="#linearGradient5704" y2="183.32233" x2="117.8272" y1="174.4991" x1="109.99998" gradientTransform="matrix(1.004126,0,0,0.991974,339.87424,1.2094952)" gradientUnits="userSpaceOnUse" id="linearGradient5936" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6679" y2="178.00641" x2="452.4859" y1="187.25432" x1="456.73318" gradientTransform="matrix(0.99757006,0,0,1.0029938,1.4214297,-0.28443454)" gradientUnits="userSpaceOnUse" id="linearGradient5939" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6679" y2="180.20343" x2="454.03549" y1="190.85718" x1="464.50012" gradientTransform="matrix(0.99757006,0,0,1.0029938,1.4214297,-0.28443454)" gradientUnits="userSpaceOnUse" id="linearGradient5941" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6679-6" gradientUnits="userSpaceOnUse" y2="191.23259" x2="98.80204" y1="197.65771" x1="102.72185" id="linearGradient6636-2" inkscape:collect="always" /> -<linearGradient id="linearGradient6679-6"> -<stop style="stop-color:#ffeb74;stop-opacity:1;" offset="0" id="stop6681-6" /> -<stop style="stop-color:#ffffff;stop-opacity:1;" offset="1" id="stop6683-7" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient6679-6" gradientUnits="userSpaceOnUse" y2="190.28522" x2="99.931625" y1="199.97221" x1="109.28288" id="linearGradient6625-4" inkscape:collect="always" /> -<radialGradient xlink:href="#linearGradient5602" r="0.75" fy="222.75" fx="842.75342" cy="222.75" cx="842.25" gradientTransform="matrix(1,0,0,1.666667,0,-148.5)" gradientUnits="userSpaceOnUse" id="radialGradient5496" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5769" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5771" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5773" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5781" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5899" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5783" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5899" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5785" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5792" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6679" y2="217.85341" x2="19.328152" y1="215.13246" x1="18.130821" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5794" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6679" y2="212.91974" x2="16.019382" y1="217.4612" x1="18.528841" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5796" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" gradientUnits="userSpaceOnUse" id="linearGradient5798" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" gradientUnits="userSpaceOnUse" id="linearGradient5800" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" gradientUnits="userSpaceOnUse" id="linearGradient5802" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.376547,0,0,0.715004,987.5221,390.567)" gradientUnits="userSpaceOnUse" id="linearGradient5804" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(2.832796,0,0,1.012546,969.5753,320.266)" gradientUnits="userSpaceOnUse" id="linearGradient5806" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(2.13203,0,0,0.606678,982.5022,408.3478)" gradientUnits="userSpaceOnUse" id="linearGradient5808" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.876376,0,0,0.566024,994.7794,429.2398)" gradientUnits="userSpaceOnUse" id="linearGradient5810" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(2.163766,0,0,0.677519,981.9622,400.4873)" gradientUnits="userSpaceOnUse" id="linearGradient5812" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(1.628503,0,0,0.405944,991.836,459.4251)" gradientUnits="userSpaceOnUse" id="linearGradient5814" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.760936,0,0,0.714541,964.9956,383.6551)" gradientUnits="userSpaceOnUse" id="linearGradient5816" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(1.999772,0,0,0.998752,953.4881,316.2596)" gradientUnits="userSpaceOnUse" id="linearGradient5818" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(1.505077,0,0,0.598412,962.6137,403.1414)" gradientUnits="userSpaceOnUse" id="linearGradient5820" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5519" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5521" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5523" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.750568,0,0,1.002646,-133.3919,-18.49926)" gradientUnits="userSpaceOnUse" id="linearGradient5525" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.20985" x2="17.752359" y1="218.97954" x1="18.846861" gradientTransform="matrix(3.333119,0,0,1.671823,-155.1792,-171.7462)" gradientUnits="userSpaceOnUse" id="linearGradient5527" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.82336" x2="17.310535" y1="213.21643" x1="16.04734" gradientTransform="matrix(2.508587,0,0,1.001693,-139.9689,-26.31358)" gradientUnits="userSpaceOnUse" id="linearGradient5529" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="218.60168" x2="20.615379" y1="212.62971" x1="13.844337" gradientTransform="matrix(0.751237,0,0,1.001998,-38.40231,-39.41679)" gradientUnits="userSpaceOnUse" id="linearGradient5531" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="219.01349" x2="20.659096" y1="215.0097" x1="17.627459" gradientTransform="matrix(0.669342,0,0,1.001998,-36.88229,-39.41679)" gradientUnits="userSpaceOnUse" id="linearGradient5533" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient6684" y2="213.66304" x2="15.985496" y1="219.52322" x1="19.473742" gradientTransform="matrix(0.503763,0,0,0.600361,-33.82784,47.74752)" gradientUnits="userSpaceOnUse" id="linearGradient5535" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.373757,0,0,0.715969,-52.92573,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5537" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.537676,0,0,1.000883,-61.45158,-22.13894)" gradientUnits="userSpaceOnUse" id="linearGradient5539" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.157292,0,0,0.59969,-54.4347,64.92824)" gradientUnits="userSpaceOnUse" id="linearGradient5541" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.125329,0,0,1.002646,-66.82105,-25.5096)" gradientUnits="userSpaceOnUse" id="linearGradient5543" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.20985" x2="17.752359" y1="218.97954" x1="18.846861" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.82336" x2="17.310535" y1="213.21643" x1="16.04734" gradientTransform="matrix(1.88093,0,0,1.001693,-70.83858,-33.32392)" gradientUnits="userSpaceOnUse" id="linearGradient5547" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.114324,0,0,1.002646,-47.33758,-30.1841)" gradientUnits="userSpaceOnUse" id="linearGradient5549" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(2.026443,0,0,1.557511,-54.13118,-158.6166)" gradientUnits="userSpaceOnUse" id="linearGradient5551" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.525151,0,0,0.933201,-44.88385,-23.1282)" gradientUnits="userSpaceOnUse" id="linearGradient5553" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5204" y2="92.007393" x2="17.629627" y1="86.265739" x1="13.479776" gradientUnits="userSpaceOnUse" id="linearGradient5555" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="190.66341" x2="-31.903492" y1="182.98401" x1="-36.601665" gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" gradientUnits="userSpaceOnUse" id="linearGradient5557" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="190.66341" x2="-31.903492" y1="182.98401" x1="-36.601665" gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" gradientUnits="userSpaceOnUse" id="linearGradient5559" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.379581,0,0,0.714792,-52.98861,39.49312)" gradientUnits="userSpaceOnUse" id="linearGradient5561" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.540284,0,0,0.860045,-61.50452,2.251502)" gradientUnits="userSpaceOnUse" id="linearGradient5563" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.159256,0,0,0.515305,-54.47574,77.06717)" gradientUnits="userSpaceOnUse" id="linearGradient5565" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.128037,0,0,0.860357,-56.33685,-3.243876)" gradientUnits="userSpaceOnUse" id="linearGradient5567" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.20985" x2="17.752359" y1="218.97954" x1="18.846861" gradientTransform="matrix(1.171839,0,0,1.346914,-61.66084,-115.7031)" gradientUnits="userSpaceOnUse" id="linearGradient5569" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.82336" x2="17.310535" y1="213.21643" x1="16.04734" gradientTransform="matrix(0.881955,0,0,0.807019,-56.31336,1.465486)" gradientUnits="userSpaceOnUse" id="linearGradient5571" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.125329,0,0,0.860357,-66.82105,3.798256)" gradientUnits="userSpaceOnUse" id="linearGradient5573" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.20985" x2="17.752359" y1="218.97954" x1="18.846861" gradientTransform="matrix(2.499161,0,0,1.346914,-82.24308,-108.661)" gradientUnits="userSpaceOnUse" id="linearGradient5575" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.82336" x2="17.310535" y1="213.21643" x1="16.04734" gradientTransform="matrix(1.88093,0,0,0.807019,-70.83858,8.507618)" gradientUnits="userSpaceOnUse" id="linearGradient5577" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" gradientUnits="userSpaceOnUse" id="linearGradient5579" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.00882" x2="18.707569" y1="218.55678" x1="20.101318" gradientTransform="matrix(1.588886,0,0,1.000747,-62.51619,-22.10887)" gradientUnits="userSpaceOnUse" id="linearGradient5581" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(1.195834,0,0,0.599608,-55.26563,64.94646)" gradientUnits="userSpaceOnUse" id="linearGradient5583" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="190.66341" x2="-31.903492" y1="182.98401" x1="-36.601665" gradientUnits="userSpaceOnUse" id="linearGradient5585" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)" gradientUnits="userSpaceOnUse" id="linearGradient5599" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="215.20985" x2="17.752359" y1="218.97954" x1="18.846861" gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)" gradientUnits="userSpaceOnUse" id="linearGradient5601" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="217.82336" x2="17.310535" y1="213.21643" x1="16.04734" gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)" gradientUnits="userSpaceOnUse" id="linearGradient5603" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="190.66341" x2="-31.903492" y1="182.98401" x1="-36.601665" gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)" gradientUnits="userSpaceOnUse" id="linearGradient5605" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="-34.577286" x2="185.51312" y1="-32.760307" x1="191.40715" gradientUnits="userSpaceOnUse" id="linearGradient5607" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="-32.760307" x2="187.89511" y1="-35.833363" x1="184.75294" gradientUnits="userSpaceOnUse" id="linearGradient5610" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)" gradientUnits="userSpaceOnUse" id="linearGradient5614" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.65544" x2="18.823143" y1="219.93051" x1="20.216892" gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)" gradientUnits="userSpaceOnUse" id="linearGradient5616" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.67934" x2="17.946985" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)" gradientUnits="userSpaceOnUse" id="linearGradient5618" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" gradientUnits="userSpaceOnUse" id="linearGradient5727" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(1.166116,0,0,1.996022,1250.853,-109.4101)" gradientUnits="userSpaceOnUse" id="linearGradient5729" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(0.877647,0,0,1.195941,1256.174,64.2245)" gradientUnits="userSpaceOnUse" id="linearGradient5731" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(3.497619,0,0,4.978934,852.2632,-828.4634)" gradientUnits="userSpaceOnUse" id="linearGradient5733" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(2.632392,0,0,2.983189,868.2229,-395.3445)" gradientUnits="userSpaceOnUse" id="linearGradient5735" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(2.873378,0,0,2.426599,875.3153,-255.174)" gradientUnits="userSpaceOnUse" id="linearGradient5737" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" gradientUnits="userSpaceOnUse" id="linearGradient5739" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(1.166116,0,0,2.310495,1250.853,-177.6338)" gradientUnits="userSpaceOnUse" id="linearGradient5741" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(0.877647,0,0,1.384362,1256.174,23.35694)" gradientUnits="userSpaceOnUse" id="linearGradient5743" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" gradientUnits="userSpaceOnUse" id="linearGradient5745" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" gradientUnits="userSpaceOnUse" id="linearGradient5747" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" gradientUnits="userSpaceOnUse" id="linearGradient5749" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" gradientUnits="userSpaceOnUse" id="linearGradient5751" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" gradientUnits="userSpaceOnUse" id="linearGradient5753" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" gradientUnits="userSpaceOnUse" id="linearGradient5755" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.874592,0,0,1.427199,885.7444,-52.79294)" gradientUnits="userSpaceOnUse" id="linearGradient5757" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="214.55122" x2="17.150238" y1="218.88832" x1="18.508638" gradientTransform="matrix(2.163921,0,0,2.660263,872.8832,-331.8032)" gradientUnits="userSpaceOnUse" id="linearGradient5759" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="219.41841" x2="19.382519" y1="213.87196" x1="15.741557" gradientTransform="matrix(1.62862,0,0,1.593929,882.7572,-100.3862)" gradientUnits="userSpaceOnUse" id="linearGradient5762" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="209.27737" x2="14.010839" y1="203.36577" x1="10.041666" gradientTransform="matrix(1.629558,0,0,0.429186,88.20441,232.3331)" gradientUnits="userSpaceOnUse" id="linearGradient5764" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="220.34749" x2="18.528904" y1="213.66309" x1="15.242482" gradientTransform="matrix(1.387116,0,0,0.200828,86.1208,278.4604)" gradientUnits="userSpaceOnUse" id="linearGradient5767" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5663" y2="57.5" x2="865.5" y1="66" x1="872" gradientTransform="translate(20,0)" gradientUnits="userSpaceOnUse" id="linearGradient5824" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2485" y2="30.793854" x2="917.36914" y1="19.192101" x1="905.46747" gradientTransform="matrix(1.159934,0,0,1.224222,-143.4594,-12.87852)" gradientUnits="userSpaceOnUse" id="linearGradient5826" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5704" y2="27.323721" x2="922.55713" y1="20.452709" x1="915.07013" gradientUnits="userSpaceOnUse" id="linearGradient5828" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient700" inkscape:collect="always" id="linearGradient7059" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" x1="606.96155" y1="220.36362" x2="602.06982" y2="221.20036" /> -<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7062" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" x1="593.18744" y1="195.51875" x2="599.23779" y2="204.91603" /> -<linearGradient xlink:href="#linearGradient700" inkscape:collect="always" id="linearGradient7065" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" x1="587.95508" y1="222.34782" x2="582.49353" y2="220.8004" /> -<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7069" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" x1="593.31616" y1="186.63638" x2="597.30682" y2="188.54939" /> -<linearGradient xlink:href="#linearGradient2888" inkscape:collect="always" id="linearGradient7072" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,34.899768)" x1="594.81122" y1="213.19025" x2="594.86096" y2="216.79137" /> -<linearGradient xlink:href="#linearGradient800" inkscape:collect="always" id="linearGradient7074" gradientUnits="userSpaceOnUse" x1="609.57257" y1="215.40201" x2="612.25781" y2="216.40329" /> -<linearGradient xlink:href="#linearGradient3480" inkscape:collect="always" id="linearGradient7102" gradientUnits="userSpaceOnUse" x1="591.38523" y1="198.57608" x2="592.86562" y2="198.57608" /> -<linearGradient xlink:href="#linearGradient1887" y2="350.16364" x2="130.35223" y1="343.25803" x1="121.11774" gradientUnits="userSpaceOnUse" id="linearGradient2876" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient5740" y2="46.339005" x2="414.26022" y1="46.338985" x1="404.67871" gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" gradientUnits="userSpaceOnUse" id="linearGradient2878" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient2888" y2="216.79137" x2="594.86096" y1="213.19025" x1="594.81122" gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.55597,-101.43481)" gradientUnits="userSpaceOnUse" id="linearGradient2880" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="188.54939" x2="597.30682" y1="186.63638" x1="593.31616" gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" gradientUnits="userSpaceOnUse" id="linearGradient2882" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient700" y2="220.8004" x2="582.49353" y1="222.34782" x1="587.95508" gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" gradientUnits="userSpaceOnUse" id="linearGradient2884" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="204.91603" x2="599.23779" y1="195.51875" x1="593.18744" gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" gradientUnits="userSpaceOnUse" id="linearGradient2886" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient700" y2="221.20036" x2="602.06982" y1="220.36362" x1="606.96155" gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" gradientUnits="userSpaceOnUse" id="linearGradient2889" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient800" y2="216.40329" x2="612.25781" y1="215.40201" x1="609.57257" gradientUnits="userSpaceOnUse" id="linearGradient2891" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient3480" y2="198.57608" x2="592.86562" y1="198.57608" x1="591.38523" gradientUnits="userSpaceOnUse" id="linearGradient2893" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887" y2="132.82727" x2="906.64484" y1="116.86476" x1="899.69342" gradientUnits="userSpaceOnUse" id="linearGradient3740" inkscape:collect="always" /> -<linearGradient x1="348.60065" y1="338.07721" x2="375.36154" y2="318.01028" id="linearGradient6466-2" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(19.052029,-3.0895185)" /> -<linearGradient x1="348.60065" y1="338.07721" x2="375.36154" y2="318.01028" id="linearGradient6468-0" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(4.119358,37.589137)" /> -<linearGradient x1="348.60065" y1="338.07721" x2="375.36154" y2="318.01028" id="linearGradient6563-3" xlink:href="#linearGradient6618" gradientUnits="userSpaceOnUse" gradientTransform="translate(28.320583,70.029077)" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient6618" id="linearGradient5783-6-3" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.8269532,0,0,0.8236011,90.718402,44.233294)" x1="348.60065" y1="338.07721" x2="375.36154" y2="318.01028" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient6618" id="linearGradient6583-7" x1="371.23682" y1="322.88614" x2="395.26917" y2="322.88614" gradientUnits="userSpaceOnUse" gradientTransform="translate(0.33790588,-0.16552734)" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient10585-7" id="linearGradient5209" gradientUnits="userSpaceOnUse" x1="5.6449146" y1="209.98189" x2="13.522233" y2="214.77893" /> -<linearGradient id="linearGradient10585-7"> -<stop style="stop-color:#d7d7d7;stop-opacity:1.0000000;" offset="0.0000000" id="stop10587-0" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop10595-2" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient10585-7" y2="214.77893" x2="13.522233" y1="209.98189" x1="5.6449146" gradientUnits="userSpaceOnUse" id="linearGradient8278-4" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient10585-7" y2="214.77893" x2="13.522233" y1="209.98189" x1="5.6449146" gradientUnits="userSpaceOnUse" id="linearGradient8276-2" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient10585-7" y2="214.77893" x2="13.522233" y1="209.98189" x1="5.6449146" gradientUnits="userSpaceOnUse" id="linearGradient8290-1" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient10585-7" y2="214.77893" x2="13.522233" y1="209.98189" x1="5.6449146" gradientUnits="userSpaceOnUse" id="linearGradient8288-3" inkscape:collect="always" /> -<linearGradient id="linearGradient5704-1"> -<stop id="stop5706-5" offset="0" style="stop-color:#5a5a5a;stop-opacity:1;" /> -<stop id="stop5708-0" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient6684-6"> -<stop id="stop6686-3" offset="0.0000000" style="stop-color:#ffbf00;stop-opacity:1.0000000;" /> -<stop id="stop6688-7" offset="1.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient24464"> -<stop id="stop24466" offset="0" style="stop-color:#499204;stop-opacity:1" /> -<stop id="stop24468" offset="1.0000000" style="stop-color:#a7e26e;stop-opacity:1" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient6684-6" id="linearGradient7067" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.0619426,0.61311287,-0.61311287,-1.0619426,1168.341,499.52897)" x1="501.36981" y1="278.69318" x2="498.01834" y2="275.92883" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-1" id="linearGradient7070" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-1.0619426,0.61311287,-0.61311287,-1.0619426,1170.4728,499.78597)" x1="497.19922" y1="276.5925" x2="501.15674" y2="279.68689" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient24464" id="linearGradient7073" gradientUnits="userSpaceOnUse" gradientTransform="matrix(-0.90891476,0.82310731,-0.8530767,-0.94200831,659.33278,552.03151)" x1="99.279366" y1="121.4717" x2="95.750748" y2="118.64024" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8980" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient id="linearGradient5704-0"> -<stop style="stop-color:#5a5a5a;stop-opacity:1;" offset="0" id="stop5706-2" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5708-9" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8982" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient id="linearGradient5734-6"> -<stop id="stop5736-0" offset="0" style="stop-color:#8ab3df;stop-opacity:1;" /> -<stop id="stop5738-9" offset="1" style="stop-color:#ffffff" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8984" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient id="linearGradient5740-3"> -<stop id="stop5742-5" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744-4" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8986" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8988" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8990" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8772" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8774" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8776" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-0" id="linearGradient8766" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-6" id="linearGradient8768" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-3" id="linearGradient8770" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-3" id="linearGradient6608" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient id="linearGradient5704-3"> -<stop style="stop-color:#5a5a5a;stop-opacity:1;" offset="0" id="stop5706-7" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5708-90" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-2" id="linearGradient6610" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient id="linearGradient5734-2"> -<stop id="stop5736-3" offset="0" style="stop-color:#8ab3df;stop-opacity:1;" /> -<stop id="stop5738-99" offset="1" style="stop-color:#ffffff" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-7" id="linearGradient6612" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient id="linearGradient5740-7"> -<stop id="stop5742-0" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5704-3" id="linearGradient6614" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" x1="11.87961" y1="205.4478" x2="18.58443" y2="211.605" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5734-2" id="linearGradient6616" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" x1="16.3967" y1="214.8097" x2="21.32992" y2="218.8141" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5740-7" id="linearGradient6618-9" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" x1="15.64649" y1="214.5411" x2="17.49814" y2="218.8026" /> -<linearGradient xlink:href="#linearGradient5704-46" y2="351.125" x2="511.4375" y1="347.1808" x1="508.1888" gradientUnits="userSpaceOnUse" id="linearGradient5857-1" inkscape:collect="always" /> -<linearGradient id="linearGradient5704-46"> -<stop style="stop-color:#5a5a5a;stop-opacity:1;" offset="0" id="stop668" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5708-01" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient5704-48" y2="352.1231" x2="518.6993" y1="346.5179" x1="515.2157" gradientUnits="userSpaceOnUse" id="linearGradient5857-64" inkscape:collect="always" /> -<linearGradient id="linearGradient5704-48"> -<stop style="stop-color:#5a5a5a;stop-opacity:1;" offset="0" id="stop673" /> -<stop style="stop-color:#000000;stop-opacity:1.0000000;" offset="1.0000000" id="stop5708-16" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient4698-52" y2="350.407" x2="532.363" y1="347.4531" x1="529.5001" gradientUnits="userSpaceOnUse" id="linearGradient5621-6" inkscape:collect="always" /> -<linearGradient id="linearGradient4698-52"> -<stop id="stop4700-98" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" /> -<stop id="stop4702-1" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient4698-1" y2="350.5838" x2="538.064" y1="346.8714" x1="534.5285" gradientUnits="userSpaceOnUse" id="linearGradient5621-8" inkscape:collect="always" /> -<linearGradient id="linearGradient4698-1"> -<stop id="stop4700-5" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" /> -<stop id="stop4702-2" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-9" id="linearGradient12203" x1="515.9623" y1="349.3102" x2="523.4155" y2="346.7762" gradientUnits="userSpaceOnUse" /> -<linearGradient id="linearGradient3480-9"> -<stop id="stop3482-6" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" /> -<stop id="stop3484-0" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient3480-9" id="linearGradient12201" x1="519.4526" y1="354.5319" x2="521.2233" y2="351.8581" gradientUnits="userSpaceOnUse" /> -<linearGradient gradientTransform="matrix(0.9659258,0.258819,-0.258819,0.9659258,99.45088,-121.6787)" y2="351.8581" x2="521.2233" y1="354.5319" x1="519.4526" gradientUnits="userSpaceOnUse" id="linearGradient12220" xlink:href="#linearGradient3480-4" inkscape:collect="always" /> -<linearGradient id="linearGradient3480-4"> -<stop id="stop3482-7" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" /> -<stop id="stop3484-8" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient4698-8"> -<stop id="stop4700-6" offset="0" style="stop-color:#a2d3ff;stop-opacity:1" /> -<stop id="stop4702-24" offset="1.0000000" style="stop-color:#004c91;stop-opacity:1" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="linearGradient12388" gradientUnits="userSpaceOnUse" x1="31.37247" y1="132.9464" x2="36.18673" y2="138.5" /> -<radialGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="radialGradient12390" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1,0,0,0.153846,0,120.5976)" cx="35.25" cy="142.5244" fx="35.25" fy="142.5244" r="3.25" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient4698-8" id="linearGradient12392" gradientUnits="userSpaceOnUse" gradientTransform="translate(-1.5,7.5244)" x1="34.5194" y1="137.5165" x2="42.18301" y2="137.4738" /> -<linearGradient inkscape:collect="always" id="linearGradient5912"> -<stop style="stop-color:#000000;stop-opacity:1;" offset="0" id="stop5914" /> -<stop style="stop-color:#808080;stop-opacity:1" offset="1" id="stop5916" /> -</linearGradient> -<linearGradient id="linearGradient6784-4" inkscape:collect="always"> -<stop id="stop6786-7" offset="0" style="stop-color:#000000;stop-opacity:1;" /> -<stop id="stop6788-0" offset="1" style="stop-color:#808080;stop-opacity:1" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5912" id="linearGradient5918" x1="643.5" y1="311" x2="634.5" y2="299.5" gradientUnits="userSpaceOnUse" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient6784-4" id="linearGradient5918-3-6" x1="675.5" y1="310" x2="664.5" y2="297.5" gradientUnits="userSpaceOnUse" /> -<linearGradient inkscape:collect="always" id="linearGradient5926"> -<stop style="stop-color:#004c91;stop-opacity:1" offset="0" id="stop5928" /> -<stop style="stop-color:#91c5f3;stop-opacity:1" offset="1" id="stop5930" /> -</linearGradient> -<linearGradient inkscape:collect="always" id="linearGradient5926-0-9"> -<stop style="stop-color:#004c91;stop-opacity:1" offset="0" id="stop5928-3-1" /> -<stop style="stop-color:#91c5f3;stop-opacity:1" offset="1" id="stop5930-5-6" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5926" id="linearGradient5932" gradientUnits="userSpaceOnUse" x1="656.18744" y1="305.6875" x2="647" y2="293.5" /> -<linearGradient inkscape:collect="always" xlink:href="#linearGradient5926-0-9" id="linearGradient5932-9-2" gradientUnits="userSpaceOnUse" x1="686.5" y1="318.5" x2="677.5" y2="306.5" /> -<linearGradient inkscape:collect="always" xlink:href="#eraserFill-6" id="linearGradient10236" gradientUnits="userSpaceOnUse" gradientTransform="matrix(1.13356,0,0,1.133368,-243.44373,205.19827)" x1="101.09393" y1="221.06877" x2="112.20101" y2="234.00311" /> -<linearGradient id="eraserFill-6"> -<stop id="stop5742_1-1" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744_1-5" offset="1.0000000" style="stop-color:#f3b698;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient inkscape:collect="always" xlink:href="#eraserFill-6" id="linearGradient10238" gradientUnits="userSpaceOnUse" gradientTransform="matrix(0.809546,0,0,0.809417,-240.01913,332.47995)" x1="144.08243" y1="157.82079" x2="176.86269" y2="188.41277" /> -<linearGradient inkscape:collect="always" id="gray_to_white"> -<stop id="stop7750-9" offset="0" style="stop-color:#afafaf;stop-opacity:1" /> -<stop id="stop7748-6" offset="1" style="stop-color:#e6e6e6;stop-opacity:1" /> -</linearGradient> -<linearGradient y2="536.965" x2="217.426" y1="536.767" x1="263.478" gradientTransform="matrix(0.117347,0,0,0.117347,252.7175,248.3363)" gradientUnits="userSpaceOnUse" id="linearGradient7163" xlink:href="#gray_to_white" inkscape:collect="always" /> -<radialGradient r="62.3947" fy="542.529" fx="234.355" cy="542.529" cx="234.355" gradientTransform="matrix(1,0,0,0.263368,0,365.571)" gradientUnits="userSpaceOnUse" id="radialGradient7218" xlink:href="#BlackTransparent" inkscape:collect="always" /> -<radialGradient r="62.3947" fy="542.529" fx="234.355" cy="542.529" cx="234.355" gradientTransform="matrix(1,0,0,0.263368,0,365.571)" gradientUnits="userSpaceOnUse" id="radialGradient7220" xlink:href="#WhiteTransparent" inkscape:collect="always" /> -<linearGradient y2="376.4393" x2="-557.8917" y1="115.2545" x1="-815.2852" gradientTransform="matrix(1,0,0,0.997925,315.4232,-138.2771)" gradientUnits="userSpaceOnUse" id="linearGradient15270-5" xlink:href="#linearGradient3480-7-6" inkscape:collect="always" /> -<linearGradient id="linearGradient3480-7-6"> -<stop id="stop3482-77-2" offset="0.0000000" style="stop-color:#646464;stop-opacity:1.0000000;" /> -<stop id="stop3484-3-2" offset="1.0000000" style="stop-color:#000000;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient5740-1-4"> -<stop id="stop5742-8-4" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744-32-6" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient5740-1-4-4"> -<stop id="stop5742-8-4-5" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744-32-6-7" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient xlink:href="#linearGradient5740-1-4-6" y2="180.6826" x2="164.3598" y1="172.2059" x1="161.736" gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" gradientUnits="userSpaceOnUse" id="linearGradient5545-0-70" inkscape:collect="always" /> -<linearGradient id="linearGradient5740-1-4-6"> -<stop id="stop5742-8-4-8" offset="0.0000000" style="stop-color:#ffffff;stop-opacity:1.0000000;" /> -<stop id="stop5744-32-6-3" offset="1.0000000" style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient id="linearGradient1887-1"> -<stop id="stop1888-0" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889-9" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient10926" xlink:href="#linearGradient1887-1" inkscape:collect="always" /> -<linearGradient id="linearGradient1887-4"> -<stop id="stop1888-8" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889-7" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(0.533827,0,0,0.532126,-61.18771,-178.1669)" gradientUnits="userSpaceOnUse" id="linearGradient11010" xlink:href="#linearGradient1887-4" inkscape:collect="always" /> -<linearGradient id="linearGradient1887-1-0"> -<stop id="stop1888-0-6" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889-9-4" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11070" xlink:href="#linearGradient1887-1-0" inkscape:collect="always" /> -<linearGradient id="linearGradient1887-1-0-3"> -<stop id="stop1888-0-6-7" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889-9-4-2" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11130" xlink:href="#linearGradient1887-1-0-3" inkscape:collect="always" /> -<linearGradient xlink:href="#linearGradient1887-3" y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" gradientUnits="userSpaceOnUse" id="linearGradient15175-8" inkscape:collect="always" /> -<linearGradient id="linearGradient1887-3"> -<stop id="stop1888-2" offset="0.0000000" style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> -<stop id="stop1889-94" offset="1.0000000" style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> -</linearGradient> -<linearGradient y2="350.1636" x2="130.3522" y1="343.258" x1="121.1177" gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" gradientUnits="userSpaceOnUse" id="linearGradient11238" xlink:href="#linearGradient1887-3" inkscape:collect="always" /> -</defs> -<sodipodi:namedview inkscape:guide-bbox="true" inkscape:current-layer="svg1" inkscape:grid-bbox="true" inkscape:pageopacity="1.0000000" pagecolor="#e8e8e4" snaptoguides="true" showguides="true" inkscape:window-y="0" inkscape:window-x="0" inkscape:window-height="719" inkscape:window-width="1366" inkscape:cy="361.4759" inkscape:cx="366.2242" inkscape:zoom="6.686047" gridtolerance="6" snaptogrid="false" showgrid="false" id="base" inkscape:document-units="px" inkscape:grid-points="true" guidetolerance="8" fill="#8ab3de" stroke="#646464" inkscape:object-nodes="false" objecttolerance="11" inkscape:snap-bbox="false" inkscape:snap-nodes="true" inkscape:bbox-nodes="false" inkscape:bbox-paths="false" inkscape:snap-global="false" inkscape:snap-center="false" inkscape:snap-midpoints="false" inkscape:snap-intersection-paths="true" inkscape:object-paths="false" inkscape:snap-object-midpoints="true" inkscape:window-maximized="1" inkscape:snap-grids="true" inkscape:snap-smooth-nodes="false" inkscape:snap-text-baseline="false" inkscape:snap-page="true" inkscape:snap-bbox-midpoints="false" inkscape:snap-bbox-edge-midpoints="false"> -<inkscape:grid type="xygrid" id="grid9252" originx="0px" originy="0px" spacingx="0.5px" spacingy="0.5px" empspacing="2" visible="true" enabled="true" snapvisiblegridlinesonly="true" /> -<sodipodi:guide orientation="0,1" position="630.08101,968.02815" id="guide4946" /> -<sodipodi:guide orientation="0,1" position="618.47896,943.93157" id="guide4948" /> -</sodipodi:namedview> -<metadata id="metadata1810"> -<rdf:RDF> -<cc:Work rdf:about=""> -<dc:description>Created with Inkscape +<svg + xmlns:dc="http://purl.org/dc/elements/1.1/" + xmlns:cc="http://creativecommons.org/ns#" + xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#" + xmlns:svg="http://www.w3.org/2000/svg" + xmlns="http://www.w3.org/2000/svg" + xmlns:xlink="http://www.w3.org/1999/xlink" + xmlns:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd" + xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape" + inkscape:version="0.48.4 r9939" + sodipodi:docname="icons.svg" + height="540" + width="1250" + sodipodi:version="0.32" + id="svg1" + inkscape:output_extension="org.inkscape.output.svg.inkscape" + version="1.0"> + <defs + id="defs3"> + <linearGradient + id="linearGradient10331"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop10333" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop10335" /> + </linearGradient> + <linearGradient + id="linearGradient6206"> + <stop + style="stop-color:#8ab3df;stop-opacity:1" + offset="0" + id="stop6208" /> + <stop + style="stop-color:#5eba69;stop-opacity:1" + offset="1" + id="stop6210" /> + </linearGradient> + <linearGradient + id="linearGradient6618"> + <stop + offset="0" + style="stop-color:#1caf19;stop-opacity:1" + id="stop6620" /> + <stop + offset="1" + style="stop-color:#6df668;stop-opacity:1" + id="stop6622" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7836"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7838" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7840" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7828"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7830" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7832" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7820"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7822" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7824" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7812"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7814" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7816" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7804"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7806" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7808" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7796"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7798" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7800" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7788"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7790" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7792" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7780"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7782" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7784" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient7772"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop7774" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop7776" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5602"> + <stop + style="stop-color:#cccccc;stop-opacity:1" + offset="0" + id="stop5604" /> + <stop + style="stop-color:#000000;stop-opacity:1" + offset="1" + id="stop5606" /> + </linearGradient> + <linearGradient + id="linearGradient8482" + inkscape:collect="always"> + <stop + id="stop8484" + offset="0" + style="stop-color:#b3b3b3;stop-opacity:1" /> + <stop + id="stop8486" + offset="1" + style="stop-color:#000000;stop-opacity:1" /> + </linearGradient> + <linearGradient + id="linearGradient5724"> + <stop + style="stop-color:#fffdf8;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop5726" /> + <stop + id="stop5730" + offset="0.43478271" + style="stop-color:#fcfaf5;stop-opacity:1;" /> + <stop + style="stop-color:#cdccc7;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5728" /> + </linearGradient> + <inkscape:path-effect + effect="skeletal" + id="path-effect9860" + prop_scale="1.03" + pattern="m 758,-28 c -26.55889,13.730612 -40,22 -40,28 0,6 13.20914,26.0201 27.06843,28 8,-14 0.066,-35.97121 12.93157,-56 z m 16,8 c -11.84579,8.897493 -18.62895,30.776225 0,42 -11.25807,-24.4674498 -0.73954,-41.050051 0,-42 z m 20,6 c -13.1445,10.146986 -10,20 0,28 -6,-12 -0.74973,-27.90401 0,-28 z m 30,-5.06843 c -4.85511,1.157888 -6.99009,9.046883 -10,11.06843 -5.81619,3.906325 -10.10855,2.87331 -10.0246,7.98206971 C 804.08433,6.6105697 806.48108,4.5018511 814,8 c 2.34648,1.0916891 7.11389,10.516733 10,10.93157 -4,-14.0000002 -4,-26.0000002 0,-38 z" + scale_y_rel="true" + pattern-nodetypes="czcccccccccssscc" + is_visible="true" + deactivate_knotholder="false" + copytype="single_stretched" + spacing="0" + normal_offset="0" + tang_offset="0" + prop_units="false" + vertical_pattern="false" + fuse_tolerance="0" /> + <linearGradient + id="linearGradient4832" + inkscape:collect="always"> + <stop + id="stop4834" + offset="0" + style="stop-color:#8686bf;stop-opacity:1" /> + <stop + id="stop4836" + offset="1" + style="stop-color:#9191b6;stop-opacity:0" /> + </linearGradient> + <linearGradient + id="linearGradient4826" + inkscape:collect="always"> + <stop + id="stop4828" + offset="0" + style="stop-color:#d7d7ff;stop-opacity:1" /> + <stop + id="stop4830" + offset="1" + style="stop-color:#d7d7ff;stop-opacity:0" /> + </linearGradient> + <linearGradient + id="linearGradient4820" + inkscape:collect="always"> + <stop + id="stop4822" + offset="0" + style="stop-color:#393986;stop-opacity:1" /> + <stop + id="stop4824" + offset="1" + style="stop-color:#53536c;stop-opacity:0" /> + </linearGradient> + <linearGradient + id="linearGradient4798"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0" + id="stop4802" /> + <stop + style="stop-color:#5eba69;stop-opacity:1;" + offset="1" + id="stop4800" /> + </linearGradient> + <linearGradient + id="linearGradient4935"> + <stop + style="stop-color:#5eba69;stop-opacity:1;" + offset="0" + id="stop4939" /> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="1" + id="stop4937" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient700" + gradientTransform="matrix(-0.42698,-0.87201,0.87201,-0.42698,11.5331,-7.26288)" + y2="-0.473952" + x2="-16.435499" + y1="-1.11146" + x1="-30.512699" + gradientUnits="userSpaceOnUse" + id="linearGradient3352" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + id="linearGradient4721"> + <stop + style="stop-color:#f57900;stop-opacity:1" + offset="0" + id="stop4723" /> + <stop + style="stop-color:#73d216;stop-opacity:0;" + offset="1" + id="stop4725" /> + </linearGradient> + <linearGradient + id="linearGradient4709" + inkscape:collect="always"> + <stop + id="stop4711" + offset="0" + style="stop-color:#75507b;stop-opacity:1" /> + <stop + id="stop4713" + offset="1" + style="stop-color:#73d216;stop-opacity:0;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4696"> + <stop + style="stop-color:#73d216;stop-opacity:1;" + offset="0" + id="stop4698" /> + <stop + style="stop-color:#73d216;stop-opacity:0;" + offset="1" + id="stop4701" /> + </linearGradient> + <marker + inkscape:stockid="Arrow1Send" + orient="auto" + refY="0" + refX="0" + id="Arrow1Send"> + <path + id="path4834" + d="M 0,0 5,-5 -12.5,0 5,5 0,0 z" + style="fill-rule:evenodd;stroke:#000000;stroke-width:1pt;marker-start:none" + transform="matrix(-0.2,0,0,-0.2,-1.2,0)" /> + </marker> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-0.999998,-0.937496)" + gradientUnits="userSpaceOnUse" + y2="311.81979" + x2="696.86676" + y1="306.07037" + x1="693.40259" + id="linearGradient4618" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-0.999998,-0.937496)" + gradientUnits="userSpaceOnUse" + y2="311.07904" + x2="698.26788" + y1="303.70065" + x1="693.27899" + id="linearGradient4610" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="309.73383" + x2="698.72687" + y1="304.22421" + x1="695.0141" + id="linearGradient4649" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient16137" + y2="729.99908" + x2="60.495438" + y1="715.91296" + x1="54.463463" + gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" + gradientUnits="userSpaceOnUse" + id="linearGradient4849" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient16137" + y2="719.93756" + x2="54.737839" + y1="729.3028" + x1="64.23671" + gradientTransform="matrix(1.007189,0,0,0.98662,-0.460106,9.713565)" + gradientUnits="userSpaceOnUse" + id="linearGradient4859" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="125.31617" + x2="91.620605" + y1="125.31617" + x1="84.629395" + id="linearGradient4811" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="159" + x2="186.71693" + y1="159" + x1="171.28307" + id="linearGradient4819" + inkscape:collect="always" /> + <linearGradient + id="linearGradient12513"> + <stop + style="stop-color:black;stop-opacity:1;" + offset="0" + id="stop12515" /> + <stop + style="stop-color:#2a2a2a;stop-opacity:1;" + offset="1" + id="stop12517" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient12513" + gradientUnits="userSpaceOnUse" + y2="712.16724" + x2="61.995983" + y1="715.75946" + x1="64.608963" + id="linearGradient12519" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="244.67865" + x2="717.60321" + y1="249.98053" + x1="712.98596" + gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" + gradientUnits="userSpaceOnUse" + id="linearGradient12592" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="240.87608" + x2="717.6405" + y1="248.91472" + x1="713.50842" + gradientTransform="matrix(1.016495,0,0,-1,-11.43409,493.3688)" + gradientUnits="userSpaceOnUse" + id="linearGradient12555" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4528"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop4530" /> + <stop + id="stop4534" + offset="0.37719297" + style="stop-color:#d4e0ef;stop-opacity:1;" /> + <stop + style="stop-color:#98b6d3;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop4532" /> + </linearGradient> + <linearGradient + id="linearGradient6679"> + <stop + style="stop-color:#ffeb74;stop-opacity:1;" + offset="0" + id="stop6681" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop6683" /> + </linearGradient> + <linearGradient + id="linearGradient5899"> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="0" + id="stop5901" /> + <stop + style="stop-color:#ffacb5;stop-opacity:1;" + offset="1" + id="stop5903" /> + </linearGradient> + <linearGradient + id="linearGradient5858"> + <stop + style="stop-color:#ffa01e" + offset="0.0000000" + id="stop5860" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5862" /> + </linearGradient> + <linearGradient + id="linearGradient5740"> + <stop + id="stop5742" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient5734"> + <stop + id="stop5736" + offset="0" + style="stop-color:#8ab3df;stop-opacity:1;" /> + <stop + id="stop5738" + offset="1" + style="stop-color:#ffffff" /> + </linearGradient> + <linearGradient + id="linearGradient5704"> + <stop + style="stop-color:#5a5a5a;stop-opacity:1;" + offset="0" + id="stop5706" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5708" /> + </linearGradient> + <linearGradient + id="linearGradient16137"> + <stop + style="stop-color:#db5d00;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop16139" /> + <stop + style="stop-color:#ffd749;stop-opacity:1.0000000;" + offset="0.35076979" + id="stop16141" /> + <stop + style="stop-color:#fff593;stop-opacity:1.0000000;" + offset="0.59668732" + id="stop16143" /> + <stop + style="stop-color:#fff7c2;stop-opacity:1.0000000;" + offset="0.78382427" + id="stop16145" /> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop16147" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient14614"> + <stop + style="stop-color:#c80000" + offset="0" + id="stop14616" /> + <stop + style="stop-color:#bf0000;stop-opacity:0;" + offset="1" + id="stop14618" /> + </linearGradient> + <linearGradient + id="linearGradient5204"> + <stop + style="stop-color:#4e6e90;stop-opacity:1;" + offset="0" + id="stop5206" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5208" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient4343"> + <stop + style="stop-color:#fff9f9;stop-opacity:1;" + offset="0" + id="stop4345" /> + <stop + style="stop-color:#fff9f9;stop-opacity:0;" + offset="1" + id="stop4347" /> + </linearGradient> + <linearGradient + id="linearGradient6684"> + <stop + style="stop-color:#ffbf00;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop6686" /> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop6688" /> + </linearGradient> + <linearGradient + id="linearGradient6524"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000" + offset="0.0000000" + id="stop6526" /> + <stop + style="stop-color:#e2e1e1;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop6528" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5663"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5665" /> + <stop + style="stop-color:#000000;stop-opacity:0;" + offset="1" + id="stop5667" /> + </linearGradient> + <linearGradient + id="linearGradient10585"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop10587" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop10595" /> + </linearGradient> + <linearGradient + id="linearGradient3480"> + <stop + id="stop3482" + offset="0.0000000" + style="stop-color:#646464;stop-opacity:1.0000000;" /> + <stop + id="stop3484" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient3466"> + <stop + style="stop-color:#ffffff;stop-opacity:1.0000000" + offset="0.0000000" + id="stop3468" /> + <stop + style="stop-color:#a0a0a0;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop3470" /> + </linearGradient> + <linearGradient + id="linearGradient1887"> + <stop + id="stop1888" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient2485"> + <stop + id="stop2486" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000" /> + <stop + id="stop2487" + offset="1.0000000" + style="stop-color:#aaaaaa;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient2888"> + <stop + id="stop2889" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop2894" + offset="1" + style="stop-color:#8ab3de;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient1610"> + <stop + id="stop1611" + offset="0.0000000" + style="stop-color:#000000;stop-opacity:1.0000000" /> + <stop + id="stop3053" + offset="0.35076979" + style="stop-color:#7f7f7f;stop-opacity:1.0000000" /> + <stop + id="stop3054" + offset="0.59668732" + style="stop-color:#bfbfbf;stop-opacity:1.0000000" /> + <stop + id="stop3055" + offset="0.78382427" + style="stop-color:#dfdfdf;stop-opacity:1.0000000" /> + <stop + id="stop1612" + offset="1.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000" /> + </linearGradient> + <linearGradient + id="linearGradient500"> + <stop + id="stop1007" + offset="0.0000000" + style="stop-color:#e7eaf0;stop-opacity:1.0000000;" /> + <stop + id="stop1008" + offset="1.0000000" + style="stop-color:#bacadd;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient700"> + <stop + id="stop347" + offset="0" + style="stop-color:#376796;stop-opacity:1;" /> + <stop + id="stop348" + offset="1.0000000" + style="stop-color:#b0dde2;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient800"> + <stop + id="stop998" + offset="0" + style="stop-color:#f3ff49;stop-opacity:1;" /> + <stop + id="stop999" + offset="1" + style="stop-color:#ffa01e;stop-opacity:1;" /> + </linearGradient> + <linearGradient + id="linearGradient900"> + <stop + id="stop1014" + offset="0.0000000" + style="stop-color:#e4ffa6;stop-opacity:1.0000000;" /> + <stop + id="stop1015" + offset="1.0000000" + style="stop-color:#3a7801;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient5734" + gradientTransform="translate(1.863401,-1.999999)" + gradientUnits="userSpaceOnUse" + y2="164.95464" + x2="23.615282" + y1="170.37819" + x1="22.452934" + id="linearGradient3628" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4935" + gradientTransform="matrix(0.89781,0,0,0.89781,-0.81747,10.4227)" + gradientUnits="userSpaceOnUse" + y2="96.397003" + x2="-14.7622" + y1="107.85" + x1="-0.53531498" + id="linearGradient10520" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + gradientUnits="userSpaceOnUse" + y2="240.35397" + x2="64.518295" + y1="236.41124" + x1="61.447758" + id="linearGradient4005" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + gradientUnits="userSpaceOnUse" + y2="243.43013" + x2="62.515686" + y1="239.1431" + x1="59.432198" + id="linearGradient4013" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="239.27582" + x2="63.40303" + y1="236" + x1="58.952152" + id="linearGradient4072" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="239.49016" + x2="62.5" + y1="235.13408" + x1="59" + id="linearGradient4080" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(0,0.0207681)" + gradientUnits="userSpaceOnUse" + y2="257.66202" + x2="14.320742" + y1="251" + x1="8" + id="linearGradient4088" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="257.66202" + x2="14.320742" + y1="251" + x1="8" + gradientUnits="userSpaceOnUse" + id="linearGradient3208" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="186.1308" + x2="-35.449852" + y1="186.11075" + x1="-43.562527" + gradientTransform="matrix(0,1.686539,-1.016949,0,148.1771,249.4699)" + gradientUnits="userSpaceOnUse" + id="linearGradient6665" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(0,1.007194,-1.016949,0,148.1771,220.2629)" + y2="187" + x2="-30.049999" + y1="187" + x1="-43.950001" + gradientUnits="userSpaceOnUse" + id="linearGradient6667" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" + gradientUnits="userSpaceOnUse" + y2="187" + x2="-30.049999" + y1="187" + x1="-43.950001" + id="linearGradient7544" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="186.74951" + x2="-34.245693" + y1="183.3679" + x1="-42.133953" + gradientUnits="userSpaceOnUse" + id="linearGradient7548" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + gradientTransform="translate(-0.96863,1.05455)" + y2="182.35056" + x2="-34.677124" + y1="183.8118" + x1="-33.566422" + gradientUnits="userSpaceOnUse" + id="linearGradient10560" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + gradientTransform="translate(-139.9686,15.05455)" + gradientUnits="userSpaceOnUse" + y2="166.19142" + x2="110.12064" + y1="163.43726" + x1="107.94834" + id="linearGradient10579" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient10585" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.173327,0.323606,-0.837131,0.448376,121.9729,116.365)" + r="4.7721405" + fy="185.37962" + fx="-39.006454" + cy="185.37962" + cx="-39.006454" + id="radialGradient10597" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + gradientUnits="userSpaceOnUse" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + id="linearGradient10641" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + gradientTransform="matrix(1.02198,0,0,1,-8.949568,-1)" + gradientUnits="userSpaceOnUse" + y2="264.68918" + x2="366.09814" + y1="261.24731" + x1="361.70941" + id="linearGradient11815" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3466" + y2="126.52245" + x2="338.0838" + y1="117.24895" + x1="337.11661" + gradientTransform="matrix(0.707107,-0.707107,0.707107,0.707107,16.25566,275.4833)" + gradientUnits="userSpaceOnUse" + id="linearGradient11021" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.338959" + x2="414.62341" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(0.539989,0,0,0.883257,-125.2513,264.0607)" + gradientUnits="userSpaceOnUse" + id="linearGradient13469" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339054" + x2="415.16632" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(0.666914,0,0,0.896427,-159.6137,266.4372)" + gradientUnits="userSpaceOnUse" + id="linearGradient13473" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339008" + x2="415.20053" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(0.868799,0,0,0.896064,-239.3931,260.4497)" + gradientUnits="userSpaceOnUse" + id="linearGradient13477" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + gradientTransform="translate(41.00246,10.00003)" + gradientUnits="userSpaceOnUse" + y2="293" + x2="76.136215" + y1="293" + x1="70" + id="linearGradient14343" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5734" + gradientUnits="userSpaceOnUse" + y2="307.83109" + x2="80.622993" + y1="311.45078" + x1="83.829369" + id="linearGradient14389" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4528" + y2="76.983932" + x2="690" + y1="67.59227" + x1="705.22168" + gradientTransform="matrix(1.124999,0,0,1.125,-85.22497,-7.125909)" + gradientUnits="userSpaceOnUse" + id="linearGradient18352" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="174.93935" + x2="974.43518" + y1="172.44194" + x1="974.43518" + gradientTransform="matrix(0.7,0,0,1,311.2,8.5)" + gradientUnits="userSpaceOnUse" + id="linearGradient5644" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="185" + x2="992.73621" + y1="181.5609" + x1="994.15332" + id="linearGradient5658" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5663" + gradientTransform="translate(0.0706497,-0.23015)" + gradientUnits="userSpaceOnUse" + y2="179.19316" + x2="990.57349" + y1="185.18915" + x1="989.87738" + id="linearGradient5669" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="184.8026" + x2="979.80444" + y1="182.46863" + x1="974.19751" + gradientUnits="userSpaceOnUse" + id="linearGradient5693" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="184.71498" + x2="974.57471" + y1="178.93727" + x1="967.73901" + gradientUnits="userSpaceOnUse" + id="linearGradient5695" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="80.141884" + x2="250.66499" + y1="73.65818" + x1="256.89447" + gradientTransform="matrix(0.939394,0,0,1,15.63564,3.573014)" + gradientUnits="userSpaceOnUse" + id="linearGradient11197" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="79.5" + x2="269.54849" + y1="79.5" + x1="261.1073" + gradientTransform="translate(0.514439,0.573014)" + gradientUnits="userSpaceOnUse" + id="linearGradient11210" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-0.0158611,0.0730141)" + gradientUnits="userSpaceOnUse" + y2="77.990372" + x2="258.01514" + y1="70.980736" + x1="266.0303" + id="linearGradient11286" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-0.0158611,0.0730141)" + gradientUnits="userSpaceOnUse" + y2="78.836052" + x2="262.53848" + y1="74.382683" + x1="266.64761" + id="linearGradient11294" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(1,0,0,0.982332,-0.0158611,1.3452)" + gradientUnits="userSpaceOnUse" + y2="71.037422" + x2="256.5" + y1="69.714012" + x1="261.03427" + id="linearGradient11302" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + gradientUnits="userSpaceOnUse" + y2="103.55601" + x2="275.45453" + y1="95.677536" + x1="270.17175" + id="linearGradient11335" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient10585" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,1.033243,0,-3.241221)" + r="7.5203147" + fy="95.723427" + fx="269.96768" + cy="95.723427" + cx="269.96768" + id="radialGradient11343" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="103.55601" + x2="275.45453" + y1="95.677536" + x1="270.17175" + id="linearGradient11359" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(1,0,0,0.940296,0,5.373155)" + gradientUnits="userSpaceOnUse" + y2="93.16346" + x2="276.82553" + y1="90" + x1="271.21255" + id="linearGradient11367" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1.02198,0,139.2452,218.9968)" + gradientUnits="userSpaceOnUse" + id="linearGradient6573" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient900" + y2="264.46481" + x2="367.26514" + y1="261.24728" + x1="361.6976" + gradientTransform="matrix(1.02198,0,0,1,-8.921317,-0.991053)" + gradientUnits="userSpaceOnUse" + id="linearGradient6662" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1.02198,0,139.2735,219.0057)" + gradientUnits="userSpaceOnUse" + id="linearGradient6664" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + gradientUnits="userSpaceOnUse" + y2="190.23405" + x2="-41.620148" + y1="183.19646" + x1="-38.782421" + id="linearGradient6672" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + gradientUnits="userSpaceOnUse" + y2="183.81453" + x2="-40.58511" + y1="189.54932" + x1="-42.309338" + id="linearGradient6690" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" + gradientUnits="userSpaceOnUse" + y2="180.95" + x2="-32.95787" + y1="175.93307" + x1="-34.943748" + id="linearGradient6727" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1,0,145.0076,219.9968)" + gradientUnits="userSpaceOnUse" + id="linearGradient6731" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="184.4165" + x2="-32.04113" + y1="186.81528" + x1="-36.94574" + gradientUnits="userSpaceOnUse" + id="linearGradient6737" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1,0,145.0076,219.9968)" + gradientUnits="userSpaceOnUse" + id="linearGradient6739" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(1.003713,0,0,1,0.163202,0)" + y2="187" + x2="-30.049999" + y1="187" + x1="-43.950001" + gradientUnits="userSpaceOnUse" + id="linearGradient6743" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="matrix(1.003597,0,0,1,0.158094,0)" + y2="187" + x2="-30.049999" + y1="187" + x1="-43.950001" + gradientUnits="userSpaceOnUse" + id="linearGradient6745" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4343" + gradientTransform="translate(41.8634,-175.7596)" + gradientUnits="userSpaceOnUse" + y2="335.03082" + x2="-10.528212" + y1="332.07693" + x1="-13.059585" + id="linearGradient4349" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" + gradientUnits="userSpaceOnUse" + y2="178.02231" + x2="15.847412" + y1="174.94193" + x1="14.019764" + id="linearGradient4360" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5734" + gradientTransform="matrix(1,0,0,0.973548,1.5,3.761392)" + gradientUnits="userSpaceOnUse" + y2="175.94685" + x2="13.848969" + y1="177.44151" + x1="15" + id="linearGradient4369" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="30.793854" + x2="917.36914" + y1="19.211191" + x1="904.08301" + gradientTransform="matrix(0.839788,0,0,0.88527,150.222,-1.762836)" + gradientUnits="userSpaceOnUse" + id="linearGradient5494" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="30.793854" + x2="917.36914" + y1="15.860829" + x1="900.99268" + gradientTransform="matrix(0.791429,0,0,0.832948,188.7144,-7.002499)" + gradientUnits="userSpaceOnUse" + id="linearGradient5506" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + gradientTransform="matrix(1,0,0,0.900774,0,8.915579)" + gradientUnits="userSpaceOnUse" + y2="88.232635" + x2="499.03857" + y1="83.8125" + x1="494.3125" + id="linearGradient5761" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient900" + y2="266.84918" + x2="368.44751" + y1="259.15848" + x1="359.53757" + gradientTransform="matrix(1.270957,0,0,1.195374,110.6171,-279.6099)" + gradientUnits="userSpaceOnUse" + id="linearGradient6204" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + gradientUnits="userSpaceOnUse" + y2="28.370596" + x2="572.58508" + y1="26.23856" + x1="573.1181" + id="linearGradient6220" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="38.687935" + x2="575.87646" + y1="24.525126" + x1="558.07092" + id="linearGradient6255" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientUnits="userSpaceOnUse" + y2="28.218306" + x2="574.51764" + y1="22.431351" + x1="562.20056" + id="linearGradient6263" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="34.170109" + x2="570.16241" + y1="26.238558" + x1="566.24866" + gradientUnits="userSpaceOnUse" + id="linearGradient6330" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + y2="33.632038" + x2="576.5" + y1="28.644594" + x1="574.65735" + gradientTransform="translate(-6,0)" + gradientUnits="userSpaceOnUse" + id="linearGradient6332" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="120.57917" + x2="98.377357" + y1="120.625" + x1="95.237885" + gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" + gradientUnits="userSpaceOnUse" + id="linearGradient4723" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="128.70482" + x2="70.212822" + y1="132.3595" + x1="66.82119" + gradientTransform="matrix(0.845944,0,0,1,30.52281,-4.619314)" + gradientUnits="userSpaceOnUse" + id="linearGradient4726" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5858" + y2="120.82606" + x2="73.446037" + y1="122.50062" + x1="64.943275" + gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" + gradientUnits="userSpaceOnUse" + id="linearGradient4728" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + gradientUnits="userSpaceOnUse" + y2="125.95964" + x2="89.703491" + y1="125.87318" + x1="85.640419" + id="linearGradient5476" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + gradientUnits="userSpaceOnUse" + y2="118.8367" + x2="89.002983" + y1="120.64272" + x1="85.865807" + id="linearGradient5492" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + y2="41.695" + x2="-21.25" + y1="34.121754" + x1="-26.252876" + gradientTransform="translate(200,120)" + gradientUnits="userSpaceOnUse" + id="linearGradient5524" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + gradientUnits="userSpaceOnUse" + y2="146.119" + x2="172.70799" + y1="167.853" + x1="182.981" + id="linearGradient5536" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient16137" + gradientTransform="translate(-474.994,-196)" + y2="304.79916" + x2="496.69983" + y1="311.08139" + x1="503.46234" + gradientUnits="userSpaceOnUse" + id="linearGradient14646" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient700" + gradientTransform="translate(-474.994,-196)" + y2="298.38025" + x2="502.13275" + y1="299.7858" + x1="505.68192" + gradientUnits="userSpaceOnUse" + id="linearGradient14650" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-474.994,-196)" + y2="301.24585" + x2="503.20328" + y1="296.24222" + x1="494.79541" + gradientUnits="userSpaceOnUse" + id="linearGradient14652" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient14614" + gradientTransform="translate(-474.994,-196)" + y2="300.82486" + x2="500.25235" + y1="302.00549" + x1="503.90671" + gradientUnits="userSpaceOnUse" + id="linearGradient14654" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="213.66304" + x2="15.985496" + y1="219.52322" + x1="19.473742" + gradientTransform="matrix(0.75262,0,0,0.59916,3.63262,86.9905)" + gradientUnits="userSpaceOnUse" + id="linearGradient5679" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + gradientTransform="translate(-0.93075,0)" + gradientUnits="userSpaceOnUse" + y2="219.01349" + x2="20.659096" + y1="215.0097" + x1="17.627459" + id="linearGradient5694" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="304.59381" + x2="454.26642" + y1="293.79044" + x1="448.79019" + id="linearGradient5856" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5899" + y2="172.62581" + x2="129.23041" + y1="154.33151" + x1="113.17024" + gradientUnits="userSpaceOnUse" + id="linearGradient5907" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5899" + gradientUnits="userSpaceOnUse" + y2="180.11198" + x2="137.9319" + y1="156.459" + x1="115.92701" + id="linearGradient5915" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="167.55257" + x2="123.97673" + y1="149.37389" + x1="113.7436" + id="linearGradient6574" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="195.88911" + x2="101.69498" + y1="191.04416" + x1="98.531143" + id="linearGradient6644" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1,0,0,0.570788,0,88.2556)" + gradientUnits="userSpaceOnUse" + id="linearGradient6666" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.74545" + x2="17.095251" + y1="218.5388" + x1="19.645912" + gradientTransform="matrix(1.066601,0,0,0.654301,-5.23183,65.54498)" + gradientUnits="userSpaceOnUse" + id="linearGradient6668" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.83746" + x2="17.884754" + y1="213.24774" + x1="14.873261" + gradientTransform="matrix(0.80275,0,0,0.392032,-0.364526,122.4629)" + gradientUnits="userSpaceOnUse" + id="linearGradient6670" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.300191,0,0,0.432481,-3.154508,116.6655)" + gradientUnits="userSpaceOnUse" + id="linearGradient6696" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.00407" + x2="19.571228" + y1="210.29736" + x1="15.678634" + gradientTransform="matrix(1.103365,0,0,0.199883,-4.736921,163.6837)" + gradientUnits="userSpaceOnUse" + id="linearGradient6700" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="matrix(1,0,0,1.133349,0,-27.33777)" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientUnits="userSpaceOnUse" + id="linearGradient7596" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5734" + y2="218.81409" + x2="21.329924" + y1="214.80972" + x1="16.396698" + gradientTransform="matrix(1,0,0,1.980119,-4.001611,-220.1696)" + gradientUnits="userSpaceOnUse" + id="linearGradient7598" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.80258" + x2="17.498137" + y1="214.54108" + x1="15.646495" + gradientTransform="matrix(0.752624,0,0,1.186414,0.561763,-47.91824)" + gradientUnits="userSpaceOnUse" + id="linearGradient7600" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.124786,0,0,1.000669,344.0026,53.00302)" + gradientUnits="userSpaceOnUse" + id="linearGradient10394" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.07632" + x2="16.761377" + y1="218.81378" + x1="20.716461" + gradientTransform="matrix(1.165662,0,0,1.664561,338.7448,-99.07928)" + gradientUnits="userSpaceOnUse" + id="linearGradient10396" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.98761" + x2="17.047382" + y1="214.54108" + x1="15.646495" + gradientTransform="matrix(0.877306,0,0,0.997343,344.0641,45.72171)" + gradientUnits="userSpaceOnUse" + id="linearGradient10398" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="218.39743" + x2="22.042753" + y1="214.00838" + x1="15.156842" + gradientTransform="matrix(1.124777,0,0,1.798127,314.1438,-265.2068)" + gradientUnits="userSpaceOnUse" + id="linearGradient10434" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="218.81555" + x2="20.989225" + y1="215.0097" + x1="17.483265" + gradientTransform="matrix(1.165669,0,0,2.325584,313.3867,-379.6724)" + gradientUnits="userSpaceOnUse" + id="linearGradient10436" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="214.38213" + x2="16.109276" + y1="219.69438" + x1="19.085964" + gradientTransform="matrix(0.87731,0,0,1.393407,318.7061,-177.3687)" + gradientUnits="userSpaceOnUse" + id="linearGradient10438" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(7,0)" + gradientUnits="userSpaceOnUse" + y2="124.19406" + x2="336.84845" + y1="121.99369" + x1="332.87787" + id="linearGradient10450" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + gradientUnits="userSpaceOnUse" + y2="37.900738" + x2="201.25211" + y1="26.494753" + x1="192.96376" + id="linearGradient10473" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="189.90421" + x2="-39.058098" + y1="186.04233" + x1="-40.927143" + id="linearGradient10481" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="184.12981" + x2="-33.186855" + y1="182.3336" + x1="-34.910583" + id="linearGradient10489" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + gradientUnits="userSpaceOnUse" + y2="312.96082" + x2="102.04173" + y1="308.2066" + x1="94.932152" + id="linearGradient6001" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + gradientTransform="matrix(1,0,0,0.991519,0,2.569281)" + gradientUnits="userSpaceOnUse" + y2="313.38208" + x2="124.80454" + y1="306.54694" + x1="118.54871" + id="linearGradient6026" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + gradientUnits="userSpaceOnUse" + y2="316" + x2="119.9323" + y1="311.00522" + x1="114.09267" + id="linearGradient6034" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.87985" + x2="15.652736" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" + gradientUnits="userSpaceOnUse" + id="linearGradient6124" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.87958" + x2="17.502275" + y1="218.10548" + x1="19.63879" + gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" + gradientUnits="userSpaceOnUse" + id="linearGradient6126" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.78011" + x2="18.528898" + y1="212.90457" + x1="15.382778" + gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" + gradientUnits="userSpaceOnUse" + id="linearGradient6128" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="210.87169" + x2="16.804146" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" + gradientUnits="userSpaceOnUse" + id="linearGradient6138" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.11118" + x2="14.53613" + y1="219.22153" + x1="21.809561" + gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" + gradientUnits="userSpaceOnUse" + id="linearGradient6140" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.2771" + x2="17.988022" + y1="214.64738" + x1="16.352634" + gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" + gradientUnits="userSpaceOnUse" + id="linearGradient6142" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3466" + gradientUnits="userSpaceOnUse" + y2="78.5" + x2="258.91818" + y1="80.005852" + x1="256.3262" + id="linearGradient6187" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.87985" + x2="15.652736" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.249566,0,0,1.420757,477.3232,-211.4881)" + gradientUnits="userSpaceOnUse" + id="linearGradient6224" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.44499" + x2="16.37369" + y1="219.0054" + x1="21.884281" + gradientTransform="matrix(1.332493,0,0,2.661873,470.7912,-492.2235)" + gradientUnits="userSpaceOnUse" + id="linearGradient6226" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.19952" + x2="17.852816" + y1="214.66974" + x1="16.466093" + gradientTransform="matrix(1.002867,0,0,1.594894,476.8719,-260.6659)" + gradientUnits="userSpaceOnUse" + id="linearGradient6228" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="90.935608" + x2="497.23138" + y1="83.419342" + x1="490" + id="linearGradient5598" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5734" + gradientUnits="userSpaceOnUse" + y2="21.160408" + x2="279.47864" + y1="25.257681" + x1="283.98041" + id="linearGradient5612" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="25.592152" + x2="283.10538" + y1="22.038395" + x1="279.64499" + id="linearGradient5620" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="309.5" + x2="81.92466" + y1="306.83057" + x1="79.599174" + id="linearGradient5632" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(1,-1.24044)" + gradientUnits="userSpaceOnUse" + y2="169.57916" + x2="21.9317" + y1="167.06665" + x1="19.57576" + id="linearGradient5670" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5663" + gradientTransform="matrix(0.977549,-0.210707,0.210707,0.977549,-25.77315,22.51322)" + gradientUnits="userSpaceOnUse" + y2="120.93597" + x2="87.871544" + y1="124.96582" + x1="94.053925" + id="linearGradient6123" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="247.05618" + x2="497.45804" + y1="250.02412" + x1="500.09354" + gradientTransform="matrix(0.97755,-0.210707,0.210707,0.97755,-452.0637,-9.594324)" + gradientUnits="userSpaceOnUse" + id="linearGradient6168" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="121.33732" + x2="97.37693" + y1="118.01502" + x1="94.58905" + gradientTransform="matrix(0.97755,-0.210707,0.218379,1.013142,-30.17658,18.69473)" + gradientUnits="userSpaceOnUse" + id="linearGradient6170" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(0.30283,0.11441)" + gradientUnits="userSpaceOnUse" + y2="129.00923" + x2="86.020599" + y1="115.25341" + x1="75.092407" + id="linearGradient6189" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient700" + y2="118.64024" + x2="95.750748" + y1="121.4717" + x1="99.279366" + gradientTransform="matrix(0.97755,-0.211918,0.218379,1.018965,-62.10329,4.028774)" + gradientUnits="userSpaceOnUse" + id="linearGradient6325" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + gradientTransform="matrix(1,0,0,1.005747,-443,-167.4216)" + y2="275.92883" + x2="498.01834" + y1="278.69318" + x1="501.36981" + gradientUnits="userSpaceOnUse" + id="linearGradient5228" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="279.68689" + x2="501.15674" + y1="276.5925" + x1="497.19922" + gradientTransform="matrix(1,0,0,1.005747,-444.4008,-168.4784)" + gradientUnits="userSpaceOnUse" + id="linearGradient5230" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientUnits="userSpaceOnUse" + y2="109.46882" + x2="48.803055" + y1="98.276649" + x1="44.283833" + id="linearGradient5436" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" + gradientUnits="userSpaceOnUse" + id="linearGradient5774" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" + gradientUnits="userSpaceOnUse" + id="linearGradient5776" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" + gradientUnits="userSpaceOnUse" + id="linearGradient5778" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" + gradientUnits="userSpaceOnUse" + id="linearGradient5786" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" + gradientUnits="userSpaceOnUse" + id="linearGradient5788" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" + gradientUnits="userSpaceOnUse" + id="linearGradient5790" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="218.60168" + x2="20.615379" + y1="212.62971" + x1="13.844337" + gradientTransform="matrix(0.751237,0,0,1.394996,1124.637,-101.6946)" + gradientUnits="userSpaceOnUse" + id="linearGradient3702" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="219.01349" + x2="20.659096" + y1="215.0097" + x1="17.627459" + gradientTransform="matrix(0.669342,0,0,1.655859,1126.157,-158.3099)" + gradientUnits="userSpaceOnUse" + id="linearGradient3704" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="213.66304" + x2="15.985496" + y1="219.52322" + x1="19.473742" + gradientTransform="matrix(0.503763,0,0,0.992131,1129.211,-14.26594)" + gradientUnits="userSpaceOnUse" + id="linearGradient3706" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="218.60168" + x2="20.615379" + y1="212.62971" + x1="13.844337" + gradientTransform="matrix(1.123736,0,0,1.394996,1109.243,-88.69465)" + gradientUnits="userSpaceOnUse" + id="linearGradient3732" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="219.01349" + x2="20.659096" + y1="215.0097" + x1="17.627459" + gradientTransform="matrix(1.160002,0,0,1.655859,1108.567,-145.3099)" + gradientUnits="userSpaceOnUse" + id="linearGradient3734" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="213.66304" + x2="15.985496" + y1="219.52322" + x1="19.473742" + gradientTransform="matrix(0.873045,0,0,0.992131,1113.859,-1.26599)" + gradientUnits="userSpaceOnUse" + id="linearGradient3736" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(209.9854,0.409827)" + y2="38.280788" + x2="333.01724" + y1="34.560329" + x1="330.38608" + gradientUnits="userSpaceOnUse" + id="linearGradient4736" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(209.9854,0.409827)" + y2="39.123158" + x2="339.54184" + y1="33.542469" + x1="335.45627" + gradientUnits="userSpaceOnUse" + id="linearGradient4738" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="254.23909" + x2="359.69348" + y1="269.26901" + x1="368.91229" + gradientTransform="matrix(0.81842,0,0,0.200075,254.0602,-14.15959)" + gradientUnits="userSpaceOnUse" + id="linearGradient4740" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="259.75748" + x2="360.57736" + y1="265.38815" + x1="366.48358" + gradientTransform="matrix(0.181871,0,0,0.200075,474.8909,-14.15959)" + gradientUnits="userSpaceOnUse" + id="linearGradient4742" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + gradientTransform="translate(209.9854,0.409827)" + y2="31.666874" + x2="346" + y1="29.139771" + x1="344" + gradientUnits="userSpaceOnUse" + id="linearGradient4748" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="234.00311" + x2="112.20101" + y1="221.06877" + x1="101.09393" + gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" + gradientUnits="userSpaceOnUse" + id="linearGradient9254" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="188.41277" + x2="176.86269" + y1="157.82079" + x1="144.08243" + gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" + gradientUnits="userSpaceOnUse" + id="linearGradient9256" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="1.4910357" + x2="223.96594" + y1="15.97338" + x1="206.46887" + gradientTransform="matrix(1.006993,0,0,1,-1.456289,0.0155694)" + gradientUnits="userSpaceOnUse" + id="linearGradient6160" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient4528" + r="8" + fy="72.999352" + fx="717.99878" + cy="72.999352" + cx="717.99878" + gradientTransform="matrix(1.12634,-0.471221,0.445195,1.164731,-121.1975,328.3106)" + gradientUnits="userSpaceOnUse" + id="radialGradient4374" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6524" + y2="28.964588" + x2="843.9635" + y1="45.306683" + x1="860.23901" + gradientUnits="userSpaceOnUse" + id="linearGradient3749" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6524" + y2="28.964588" + x2="843.9635" + y1="45.306683" + x1="860.23901" + gradientUnits="userSpaceOnUse" + id="linearGradient3755" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + y2="153.34221" + x2="176.01361" + y1="167.85339" + x1="182.98134" + gradientUnits="userSpaceOnUse" + id="linearGradient8492" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + y2="37.219666" + x2="-23.224422" + y1="34.121754" + x1="-26.252876" + gradientTransform="translate(200,120)" + gradientUnits="userSpaceOnUse" + id="linearGradient8494" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="120.57917" + x2="98.377357" + y1="120.625" + x1="95.237885" + gradientTransform="matrix(0.833333,0,0,1,7.291667,1.125)" + gradientUnits="userSpaceOnUse" + id="linearGradient8496" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="117.85143" + x2="89.752335" + y1="119.8891" + x1="85.258904" + gradientUnits="userSpaceOnUse" + id="linearGradient8498" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5858" + y2="117.40206" + x2="75.142403" + y1="123.21288" + x1="65.277161" + gradientTransform="matrix(0.845944,0,0,1,30.563,-0.625005)" + gradientUnits="userSpaceOnUse" + id="linearGradient8500" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="125.95964" + x2="89.703491" + y1="125.87318" + x1="85.640419" + gradientUnits="userSpaceOnUse" + id="linearGradient8502" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4528" + y2="246.81923" + x2="683.84705" + y1="252.35779" + x1="673.64648" + gradientUnits="userSpaceOnUse" + id="linearGradient8709" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4528" + y2="251.91594" + x2="678.73236" + y1="256.07169" + x1="671.7674" + gradientUnits="userSpaceOnUse" + id="linearGradient8711" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient4218" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient4220" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient4249" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient4251" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5198" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5200" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="244.67865" + x2="717.60321" + y1="249.98053" + x1="712.98596" + gradientTransform="matrix(1,0,0,-1,0.453976,493.3688)" + gradientUnits="userSpaceOnUse" + id="linearGradient5218" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient12513" + y2="712.16724" + x2="61.995983" + y1="715.75946" + x1="64.608963" + gradientUnits="userSpaceOnUse" + id="linearGradient5220" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5944" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5946" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.87985" + x2="15.652736" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" + gradientUnits="userSpaceOnUse" + id="linearGradient5948" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.87958" + x2="17.502275" + y1="218.10548" + x1="19.63879" + gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" + gradientUnits="userSpaceOnUse" + id="linearGradient5950" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.19952" + x2="17.852816" + y1="212.71106" + x1="14.855348" + gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" + gradientUnits="userSpaceOnUse" + id="linearGradient5952" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="210.87169" + x2="16.804146" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" + gradientUnits="userSpaceOnUse" + id="linearGradient5954" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="212.95068" + x2="10.294251" + y1="219.11699" + x1="21.809561" + gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" + gradientUnits="userSpaceOnUse" + id="linearGradient5956" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.2771" + x2="17.988022" + y1="213.65869" + x1="16.814611" + gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" + gradientUnits="userSpaceOnUse" + id="linearGradient5958" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="264.68918" + x2="366.09814" + y1="261.24731" + x1="361.70941" + gradientTransform="matrix(1.02198,0,0,1,-306.8063,31.29639)" + gradientUnits="userSpaceOnUse" + id="linearGradient5960" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1.02198,0,-158.6115,251.2932)" + gradientUnits="userSpaceOnUse" + id="linearGradient5962" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="264.68918" + x2="366.09814" + y1="261.24731" + x1="361.70941" + gradientTransform="matrix(1.02198,0,0,1,-307.3063,52.7964)" + gradientUnits="userSpaceOnUse" + id="linearGradient6122" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="178.65753" + x2="-33.694717" + y1="187.86301" + x1="-37.330727" + gradientTransform="matrix(0,1,-1.02198,0,-159.1115,272.7932)" + gradientUnits="userSpaceOnUse" + id="linearGradient6125" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="212.95068" + x2="10.294251" + y1="219.11699" + x1="21.809561" + gradientTransform="matrix(1.66352,0,0,3.319677,33.71939,-404.9123)" + gradientUnits="userSpaceOnUse" + id="linearGradient6146" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.2771" + x2="17.988022" + y1="213.65869" + x1="16.814611" + gradientTransform="matrix(1.252006,0,0,1.989026,41.31058,-116.1321)" + gradientUnits="userSpaceOnUse" + id="linearGradient6148" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="210.87169" + x2="16.804146" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.49944,0,0,1.713117,42.76116,-42.5525)" + gradientUnits="userSpaceOnUse" + id="linearGradient6151" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.87958" + x2="17.502275" + y1="218.10548" + x1="19.63879" + gradientTransform="matrix(1.165662,0,0,1.995259,38.42262,-122.5159)" + gradientUnits="userSpaceOnUse" + id="linearGradient6154" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.19952" + x2="17.852816" + y1="212.71106" + x1="14.855348" + gradientTransform="matrix(0.877306,0,0,1.195484,43.74192,51.05256)" + gradientUnits="userSpaceOnUse" + id="linearGradient6156" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.87985" + x2="15.652736" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.124786,0,0,1.142472,43.68042,71.69251)" + gradientUnits="userSpaceOnUse" + id="linearGradient6159" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientTransform="matrix(1,0,0,0.996869,180.9431,-216.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient6369" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + gradientTransform="translate(158,-105)" + gradientUnits="userSpaceOnUse" + id="linearGradient6371" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + gradientTransform="translate(158,-105)" + gradientUnits="userSpaceOnUse" + id="linearGradient6436" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientTransform="matrix(0.735355,0,0,0.733012,215.5241,-110.6465)" + gradientUnits="userSpaceOnUse" + id="linearGradient15119" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + gradientTransform="translate(158,-105)" + gradientUnits="userSpaceOnUse" + id="linearGradient15121" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + gradientTransform="translate(158,-105)" + gradientUnits="userSpaceOnUse" + id="linearGradient15135" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientTransform="matrix(0.533827,0,0,0.532126,226.8053,-40.17395)" + gradientUnits="userSpaceOnUse" + id="linearGradient15141" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient15175" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="215.9465" + x2="143.22507" + y1="214.81735" + x1="148" + gradientTransform="translate(158,-105)" + gradientUnits="userSpaceOnUse" + id="linearGradient15213" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientTransform="matrix(1,0,0,0.996869,215.9431,-248.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient4689" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4696" + gradientTransform="matrix(0.898695,0,0,0.466666,34.08168,53.63336)" + gradientUnits="userSpaceOnUse" + y2="107.40817" + x2="334.49628" + y1="86.635468" + x1="334.40353" + id="linearGradient4703" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4709" + y2="107.40817" + x2="334.49628" + y1="86.635468" + x1="334.40353" + gradientTransform="matrix(0.898695,0,0,0.933333,38.74835,6.266664)" + gradientUnits="userSpaceOnUse" + id="linearGradient4707" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4721" + y2="107.40817" + x2="334.49628" + y1="86.635468" + x1="334.40353" + gradientTransform="matrix(0.898695,0,0,0.666666,43.41501,33.33337)" + gradientUnits="userSpaceOnUse" + id="linearGradient4718" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5684" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5686" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-105,-15)" + y2="213" + x2="176" + y1="213" + x1="160" + gradientUnits="userSpaceOnUse" + id="linearGradient5692" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + gradientTransform="translate(-105,-15)" + y2="213.07851" + x2="175.29338" + y1="213" + x1="160" + gradientUnits="userSpaceOnUse" + id="linearGradient5696" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5728" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5730" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5750" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5752" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="311.07904" + x2="698.26788" + y1="303.70065" + x1="693.27899" + gradientTransform="translate(-0.999998,-0.937496)" + gradientUnits="userSpaceOnUse" + id="linearGradient5777" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="311.81979" + x2="696.86676" + y1="306.07037" + x1="693.40259" + gradientTransform="translate(-0.999998,-0.937496)" + gradientUnits="userSpaceOnUse" + id="linearGradient5779" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="213" + x2="176" + y1="213" + x1="160" + gradientTransform="translate(-147.4999,-94.5)" + gradientUnits="userSpaceOnUse" + id="linearGradient5841" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="218.54164" + x2="173.72397" + y1="209.14064" + x1="163.85936" + gradientTransform="matrix(1.102855,0,0,1.148517,-164.5451,-124.7814)" + gradientUnits="userSpaceOnUse" + id="linearGradient5844" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="217.25519" + x2="173.03127" + y1="207.75523" + x1="161.28645" + gradientTransform="matrix(1.102855,0,0,1.148517,-165.0966,-125.3557)" + gradientUnits="userSpaceOnUse" + id="linearGradient5846" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient4798" + r="9.4159403" + fy="-2729.78" + fx="-293.81201" + cy="-2729.78" + cx="-293.81201" + gradientTransform="matrix(1.20758,0.0165454,0.27747,1.03554,1573.42,3294.03)" + gradientUnits="userSpaceOnUse" + id="radialGradient4365" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4935" + gradientTransform="matrix(1.00712,0,0,1.00712,16.0574,-204.726)" + y2="96.397003" + x2="-14.7622" + y1="107.85" + x1="-0.53531498" + gradientUnits="userSpaceOnUse" + id="linearGradient4246" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + gradientTransform="matrix(1.062197,0,0,0.9973142,-1261.924,1.593331)" + gradientUnits="userSpaceOnUse" + y2="308.5" + x2="536.5" + y1="308.5" + x1="522.99103" + id="linearGradient9331" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="214.02989" + x2="1095.3198" + y1="180.82251" + x1="1095.3066" + gradientTransform="matrix(0.9891733,0,0,0.9571849,-1182.248,9.280945)" + gradientUnits="userSpaceOnUse" + id="linearGradient4415" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="206.95731" + x2="1095.3199" + y1="178.1412" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.51422)" + gradientUnits="userSpaceOnUse" + id="linearGradient4428" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="213.17517" + x2="1095.3199" + y1="180.16138" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" + gradientUnits="userSpaceOnUse" + id="linearGradient4437" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="214.28058" + x2="1095.3199" + y1="177.79276" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.22875)" + gradientUnits="userSpaceOnUse" + id="linearGradient4447" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="209.16811" + x2="1096.5184" + y1="181.33076" + x1="1096.5184" + gradientTransform="matrix(0.6644326,0,0,0.6364719,-764.818,59.2438)" + gradientUnits="userSpaceOnUse" + id="linearGradient4453" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="175.6769" + x2="1095.3199" + y1="207.02328" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,107.4099)" + gradientUnits="userSpaceOnUse" + id="linearGradient4501" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="178.569" + x2="1095.3806" + y1="203.09409" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,258.5598)" + gradientUnits="userSpaceOnUse" + id="linearGradient4507" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="179.91225" + x2="1095.3199" + y1="205.18626" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,-0.4062185,-764.818,264.5598)" + gradientUnits="userSpaceOnUse" + id="linearGradient4521" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1610" + y2="178.569" + x2="1095.3806" + y1="203.09409" + x1="1095.3199" + gradientTransform="matrix(0.6644326,0,0,0.4062185,-764.818,101.4099)" + gradientUnits="userSpaceOnUse" + id="linearGradient4523" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4826" + gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" + y2="509.04944" + x2="354.9541" + y1="500.71857" + x1="368.34299" + gradientUnits="userSpaceOnUse" + id="linearGradient5184" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4820" + gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" + y2="532.95105" + x2="348.70596" + y1="510.14041" + x1="359.71457" + gradientUnits="userSpaceOnUse" + id="linearGradient5187" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient4832" + gradientTransform="matrix(0.7598957,0,0,0.7598957,329.9618,-256.886)" + y2="481.67661" + x2="373.99606" + y1="508.15683" + x1="348.70596" + gradientUnits="userSpaceOnUse" + id="linearGradient5190" + inkscape:collect="always" /> + <clipPath + id="cieClip" + clipPathUnits="userSpaceOnUse"> + <path + style="fill:none;stroke:#000000;stroke-width:0.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8.3599997,47.759998 C 7.7515743,47.515279 7.222277,46.901819 6.7843235,46.39273 5.6082715,45.025655 4.9648259,43.302806 4.3800001,41.630001 3.4463938,38.959561 2.6271155,36.199224 2.1141648,33.410416 1.4157915,29.613502 0.61298459,25.784236 0.39598041,21.942782 0.20936341,18.639248 -0.03673501,15.098988 0.67000002,11.99 1.0212715,10.444727 2.3352289,8.406245 3.5699999,7.98 4.6660199,7.6016521 6.4569453,8.7469868 7.6985305,9.5047548 9.5843038,10.655686 11.337786,12.013685 12.995799,13.4917 17.541311,17.54374 21.813011,21.891764 26.139096,26.173982 29.192346,29.196273 32.227767,32.236821 35.27,35.27 26.3,39.433333 17.33,43.596666 8.3599997,47.759998 z" + id="path2430" + sodipodi:nodetypes="cssssssssscc" /> + </clipPath> + <radialGradient + xlink:href="#linearGradient5724" + r="11.5" + fy="216.47368" + fx="778" + cy="216.47368" + cx="778" + gradientTransform="matrix(1,0,0,0.826087,0,38.17391)" + gradientUnits="userSpaceOnUse" + id="radialGradient8472" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient5724" + r="11.5" + fy="209.35001" + fx="777" + cy="209.35001" + cx="777" + gradientTransform="matrix(1.434932,0,0,0.608696,-337.9418,82.56952)" + gradientUnits="userSpaceOnUse" + id="radialGradient8474" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient8482" + gradientUnits="userSpaceOnUse" + y2="214.25" + x2="783" + y1="200.25" + x1="770.5" + id="linearGradient5633" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient8482" + gradientUnits="userSpaceOnUse" + y2="218.25" + x2="782" + y1="216.875" + x1="763" + id="linearGradient5637" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6206" + id="linearGradient6212" + x1="-15.4575" + y1="94.606689" + x2="-0.95749998" + y2="109.60669" + gradientUnits="userSpaceOnUse" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipoutline1"> + <path + id="outline1" + d="M 54.1,12.5 12.9,54.7 C -2.7,70.3 23,69 32.3,74.9 36.6,77.7 18.5,81.3 22.2,85 c 3.6,3.7 21.7,7.1 25.3,10.7 3.6,3.7 -7.3,7.6 -3.7,11.3 3.5,3.7 11.9,0.2 13.4,8.6 1.1,6.2 15.4,3.1 21.8,-2.2 4,-3.4 -6.9,-3.4 -3.3,-7.1 9,-9.1 17,-4.1 20.3,-12.5 1.8,-4.5 -13.6,-7.7 -9.5,-10.6 9.8,-6.9 45.8,-10.4 29.2,-27 L 73,12.5 c -5.3,-5 -14,-5 -18.9,0 z m -9.9,64.7 c 0.9,0 30.8,4 19.3,7.1 -4.4,1.2 -24.6,-7.1 -19.3,-7.1 z m 57.2,16.6 c 0,2.1 16.3,3.3 15.4,-0.5 -1.3,-6.4 -13.6,-5.9 -15.4,0.5 z m -69.5,11.1 c 3.7,3.2 9.3,-0.7 11.1,-5.2 -3.6,-4.7 -16.9,0.3 -11.1,5.2 z m 67.5,-6.7 c -4.6,4.2 0.8,8.6 5.3,5.7 1.2,-0.8 -0.1,-4.7 -5.3,-5.7 z" /> + </clipPath> + <linearGradient + xlink:href="#WhiteTransparent" + y2="76" + x2="0" + y1="128" + x1="0" + gradientUnits="userSpaceOnUse" + id="linearGradient3731" + inkscape:collect="always" /> + <linearGradient + id="WhiteTransparent" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:white;stop-opacity:1" + offset="0" + id="stop7" /> + <stop + style="stop-color:white;stop-opacity:0" + offset="1" + id="stop9" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient3391" + y2="40" + x2="60" + y1="20" + x1="80" + gradientUnits="userSpaceOnUse" + id="linearGradient3733" + inkscape:collect="always" /> + <linearGradient + gradientUnits="userSpaceOnUse" + id="linearGradient3391"> + <stop + id="stop3393" + offset="0" + style="stop-color:white;stop-opacity:1" /> + <stop + id="stop3395" + offset="1" + style="stop-color:white;stop-opacity:0" /> + </linearGradient> + <linearGradient + xlink:href="#WhiteTransparent" + y2="60" + x2="58" + y1="35" + x1="33" + gradientUnits="userSpaceOnUse" + id="linearGradient3735" + inkscape:collect="always" /> + <linearGradient + xlink:href="#BlackTransparent" + y2="64" + x2="0" + y1="128" + x1="0" + gradientUnits="userSpaceOnUse" + id="linearGradient3737" + inkscape:collect="always" /> + <linearGradient + id="BlackTransparent" + gradientUnits="userSpaceOnUse"> + <stop + style="stop-color:black;stop-opacity:1" + offset="0" + id="stop12" /> + <stop + style="stop-color:black;stop-opacity:0" + offset="1" + id="stop14" /> + </linearGradient> + <linearGradient + xlink:href="#WhiteTransparent" + y2="50" + x2="90" + y1="20" + x1="60" + gradientUnits="userSpaceOnUse" + id="linearGradient3739" + inkscape:collect="always" /> + <linearGradient + id="eraserFill"> + <stop + id="stop5742_1" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744_1" + offset="1.0000000" + style="stop-color:#f3b698;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + xlink:href="#eraserFill" + y2="234.00311" + x2="112.20101" + y1="221.06877" + x1="101.09393" + gradientTransform="matrix(1.13356,0,0,1.133368,339.5737,-131.407)" + gradientUnits="userSpaceOnUse" + id="linearGradient7424" + inkscape:collect="always" /> + <linearGradient + xlink:href="#eraserFill" + y2="188.41277" + x2="176.86269" + y1="157.82079" + x1="144.08243" + gradientTransform="matrix(0.809546,0,0,0.809417,342.9983,-4.125322)" + gradientUnits="userSpaceOnUse" + id="linearGradient7426" + inkscape:collect="always" /> + <clipPath + clipPathUnits="userSpaceOnUse" + id="clipPath5905"> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="rect5907" + width="11.98896" + height="11.88748" + x="375.8356" + y="138.7635" /> + </clipPath> + <linearGradient + xlink:href="#linearGradient5704" + y2="167.55257" + x2="123.97673" + y1="149.37389" + x1="113.7436" + gradientUnits="userSpaceOnUse" + id="linearGradient5389" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5734" + y2="21.160408" + x2="279.47864" + y1="25.257681" + x1="283.98041" + gradientUnits="userSpaceOnUse" + id="linearGradient5391" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="25.592152" + x2="283.10538" + y1="22.038395" + x1="279.64499" + gradientUnits="userSpaceOnUse" + id="linearGradient5393" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" + gradientUnits="userSpaceOnUse" + id="linearGradient5609" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.74544" + x2="17.688465" + y1="221.11246" + x1="19.511591" + gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" + gradientUnits="userSpaceOnUse" + id="linearGradient5611" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="222.86086" + x2="17.284773" + y1="213.24774" + x1="14.873261" + gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" + gradientUnits="userSpaceOnUse" + id="linearGradient5613" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5663" + y2="521.09827" + x2="36.868645" + y1="509.99991" + x1="26.000011" + gradientTransform="translate(937,-210.99991)" + gradientUnits="userSpaceOnUse" + id="linearGradient5617" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="174.99881" + x2="-40.941547" + y1="192.33638" + x1="-29" + gradientTransform="translate(714.9212,-135)" + gradientUnits="userSpaceOnUse" + id="linearGradient5619" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.90157" + x2="16.946434" + y1="219.05171" + x1="22.009026" + gradientTransform="matrix(1,0,0,1.66306,-4.001611,-151.8935)" + gradientUnits="userSpaceOnUse" + id="linearGradient5677" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.80258" + x2="17.498137" + y1="213.23509" + x1="14.827456" + gradientTransform="matrix(0.752624,0,0,0.996445,0.561763,-7.22312)" + gradientUnits="userSpaceOnUse" + id="linearGradient5680" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="260.24765" + x2="361.73392" + y1="264.55298" + x1="365.23157" + gradientTransform="matrix(0.455219,0,0,0.501233,377.5466,-100.7998)" + gradientUnits="userSpaceOnUse" + id="linearGradient5682" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="32.713181" + x2="544.94995" + y1="27.955364" + x1="542.19043" + gradientTransform="matrix(0.997993,0,0,0.99958,1.061475,-0.0495296)" + gradientUnits="userSpaceOnUse" + id="linearGradient5685" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="85.673454" + x2="495.94803" + y1="74.943916" + x1="482.62952" + gradientUnits="userSpaceOnUse" + id="linearGradient5687" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient10585" + y2="78.522537" + x2="493.33023" + y1="77.8489" + x1="491.43066" + gradientUnits="userSpaceOnUse" + id="linearGradient5689" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="29.518064" + x2="276.83484" + y1="24.096111" + x1="272.95816" + gradientTransform="translate(0.5,1.547499)" + gradientUnits="userSpaceOnUse" + id="linearGradient5766" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="28.991222" + x2="278.52783" + y1="24.153297" + x1="273.12143" + gradientTransform="translate(0,0.047499)" + gradientUnits="userSpaceOnUse" + id="linearGradient5768" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="184.8026" + x2="979.80444" + y1="182.46863" + x1="974.19751" + gradientUnits="userSpaceOnUse" + id="linearGradient5770" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="184.62659" + x2="977.40314" + y1="180.79343" + x1="967.65063" + gradientUnits="userSpaceOnUse" + id="linearGradient5772" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient500" + y2="182.08299" + x2="979.23187" + y1="178.03139" + x1="968.25732" + gradientTransform="translate(0,-7)" + gradientUnits="userSpaceOnUse" + id="linearGradient5775" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="184.71498" + x2="974.57471" + y1="178.93727" + x1="967.73901" + gradientTransform="translate(0,-7)" + gradientUnits="userSpaceOnUse" + id="linearGradient5780" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="178.53358" + x2="964.1427" + y1="180" + x1="974.64948" + gradientTransform="translate(0,-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient5782" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="181.08876" + x2="976.5202" + y1="177.34041" + x1="966.51788" + gradientTransform="translate(0,-2)" + gradientUnits="userSpaceOnUse" + id="linearGradient5784" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="184.8026" + x2="979.80444" + y1="182.46863" + x1="974.19751" + gradientUnits="userSpaceOnUse" + id="linearGradient5787" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="181.70978" + x2="977.93347" + y1="178.31856" + x1="968.88806" + gradientUnits="userSpaceOnUse" + id="linearGradient5789" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient5791" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient5793" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="218.54164" + x2="173.72397" + y1="209.14064" + x1="163.85936" + gradientTransform="matrix(1.102855,0,0,1.148517,-167.5042,-41.73143)" + gradientUnits="userSpaceOnUse" + id="linearGradient5795" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="217.25519" + x2="173.03127" + y1="207.75523" + x1="161.28645" + gradientTransform="matrix(1.102855,0,0,1.148517,-168.0557,-42.30568)" + gradientUnits="userSpaceOnUse" + id="linearGradient5797" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="213" + x2="176" + y1="213" + x1="160" + gradientTransform="translate(-150.459,-11.45)" + gradientUnits="userSpaceOnUse" + id="linearGradient5799" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.60497" + x2="18.584427" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1,0,0,0.570788,0,88.25561)" + gradientUnits="userSpaceOnUse" + id="linearGradient5801" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.74544" + x2="17.688465" + y1="218.28853" + x1="20.177799" + gradientTransform="matrix(0.997569,0,0,0.654301,-3.963176,65.55004)" + gradientUnits="userSpaceOnUse" + id="linearGradient5803" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.83746" + x2="17.884754" + y1="213.24774" + x1="14.873261" + gradientTransform="matrix(0.750795,0,0,0.392032,0.589107,122.468)" + gradientUnits="userSpaceOnUse" + id="linearGradient5805" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="211.87985" + x2="15.652736" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.124786,0,0,1.142472,-6.359476,-29.34859)" + gradientUnits="userSpaceOnUse" + id="linearGradient5807" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.87958" + x2="17.502275" + y1="218.10548" + x1="19.63879" + gradientTransform="matrix(1.165662,0,0,1.995259,-11.61728,-223.557)" + gradientUnits="userSpaceOnUse" + id="linearGradient5809" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.19952" + x2="17.852816" + y1="212.71106" + x1="14.855348" + gradientTransform="matrix(0.877306,0,0,1.195484,-6.297976,-49.98854)" + gradientUnits="userSpaceOnUse" + id="linearGradient5811" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="210.87169" + x2="16.804146" + y1="205.44775" + x1="11.87961" + gradientTransform="matrix(1.49944,0,0,1.713117,-7.27874,-143.5936)" + gradientUnits="userSpaceOnUse" + id="linearGradient5813" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="212.95068" + x2="10.294251" + y1="219.11699" + x1="21.809561" + gradientTransform="matrix(1.66352,0,0,3.319677,-16.32051,-505.9534)" + gradientUnits="userSpaceOnUse" + id="linearGradient5815" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="218.2771" + x2="17.988022" + y1="213.65869" + x1="16.814611" + gradientTransform="matrix(1.252006,0,0,1.989026,-8.72932,-217.1732)" + gradientUnits="userSpaceOnUse" + id="linearGradient5817" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="210.5" + x2="111.68652" + y1="210.5" + x1="99.313484" + gradientUnits="userSpaceOnUse" + id="linearGradient5819" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="206.99658" + x2="101.19292" + y1="215.4819" + x1="108.35131" + gradientUnits="userSpaceOnUse" + id="linearGradient5821" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="212.99005" + x2="108.8156" + y1="205.19197" + x1="101.75068" + gradientUnits="userSpaceOnUse" + id="linearGradient5823" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="218.39743" + x2="22.042753" + y1="214.00838" + x1="15.156842" + gradientTransform="matrix(1.124777,0,0,1.399469,339.507,-41.54364)" + gradientUnits="userSpaceOnUse" + id="linearGradient5825" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="218.81555" + x2="20.989225" + y1="215.0097" + x1="17.483265" + gradientTransform="matrix(1.165669,0,0,1.655559,338.7499,-97.1359)" + gradientUnits="userSpaceOnUse" + id="linearGradient5827" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="214.38213" + x2="16.109276" + y1="219.69438" + x1="19.085964" + gradientTransform="matrix(0.87731,0,0,0.991952,344.0693,46.88201)" + gradientUnits="userSpaceOnUse" + id="linearGradient5829" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="179.49295" + x2="-24.431232" + y1="179.49295" + x1="-47.741638" + gradientTransform="matrix(1,0,0,0.957993,-0.0384184,13.49742)" + gradientUnits="userSpaceOnUse" + id="linearGradient5831" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="181.08862" + x2="-29.504631" + y1="181.08862" + x1="-44.417458" + gradientTransform="matrix(1,0,0,0.963346,-0.0384184,12.50071)" + gradientUnits="userSpaceOnUse" + id="linearGradient5833" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="175.99083" + x2="-29.013157" + y1="175.99083" + x1="-37.778763" + gradientTransform="translate(-8.989043,0)" + gradientUnits="userSpaceOnUse" + id="linearGradient5835" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="179.49295" + x2="-27.038502" + y1="179.49295" + x1="-48.429123" + gradientTransform="matrix(1,0,0,0.957993,0,7.509185)" + gradientUnits="userSpaceOnUse" + id="linearGradient5837" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="181.64502" + x2="-29.63546" + y1="181.54939" + x1="-44.36454" + gradientTransform="matrix(1,0,0,0.963346,0,6.51247)" + gradientUnits="userSpaceOnUse" + id="linearGradient5839" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="181.99083" + x2="-29.000008" + y1="181.99083" + x1="-37.500759" + gradientTransform="matrix(1.592997,0,0,1,11.72818,4)" + gradientUnits="userSpaceOnUse" + id="linearGradient5842" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="255.5" + x2="12.50002" + y1="249.821" + x1="10.192928" + gradientUnits="userSpaceOnUse" + id="linearGradient5845" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="255.53125" + x2="12.53125" + y1="251.03125" + x1="9.03125" + gradientUnits="userSpaceOnUse" + id="linearGradient5847" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="221.69243" + x2="20.358622" + y1="214.00838" + x1="15.156842" + gradientTransform="matrix(0.625152,0,0,1.007875,-0.61217,35.29459)" + gradientUnits="userSpaceOnUse" + id="linearGradient5849" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="217.01157" + x2="19.156134" + y1="215.67207" + x1="17.075911" + gradientTransform="matrix(0.501399,0,0,1.00217,1.674173,36.50449)" + gradientUnits="userSpaceOnUse" + id="linearGradient5851" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="215.46176" + x2="16.232185" + y1="220.34328" + x1="19.762522" + gradientTransform="matrix(0.377364,0,0,0.600465,3.962295,123.6837)" + gradientUnits="userSpaceOnUse" + id="linearGradient5853" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient2888" + r="7.4696794" + fy="153.06299" + fx="171.77553" + cy="153.06299" + cx="171.77553" + gradientTransform="matrix(1.122233,1.252981,-2.05495,1.830229,297.3402,-339.2527)" + gradientUnits="userSpaceOnUse" + id="radialGradient5855" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="138.5" + x2="36.186733" + y1="132.94643" + x1="31.372471" + gradientUnits="userSpaceOnUse" + id="linearGradient5857" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="137.47379" + x2="42.183006" + y1="137.51648" + x1="34.519402" + gradientTransform="translate(-1.5,7.5244)" + gradientUnits="userSpaceOnUse" + id="linearGradient5859" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7772" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7778" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7780" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7786" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7788" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7794" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7796" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7802" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7804" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7810" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7812" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7818" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7820" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7826" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7828" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7834" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient7836" + gradientUnits="userSpaceOnUse" + r="1.111868" + fy="137.9821" + fx="375.09409" + cy="137.9821" + cx="375.09409" + id="radialGradient7842" + inkscape:collect="always" /> + <linearGradient + id="linearGradient2485-9"> + <stop + id="stop2486-3" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000" /> + <stop + id="stop2487-1" + offset="1.0000000" + style="stop-color:#aaaaaa;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient3480-8"> + <stop + id="stop3482-9" + offset="0.0000000" + style="stop-color:#646464;stop-opacity:1.0000000;" /> + <stop + id="stop3484-6" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient2485-9" + inkscape:collect="always" + id="linearGradient6465" + gradientUnits="userSpaceOnUse" + x1="61.447762" + y1="236.41119" + x2="64.518303" + y2="240.354" + gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" /> + <linearGradient + xlink:href="#linearGradient3480-8" + inkscape:collect="always" + id="linearGradient6467" + gradientUnits="userSpaceOnUse" + x1="59" + y1="235.13409" + x2="62.5" + y2="239.4902" + gradientTransform="matrix(1.743698,0,0,1.75,717.0189,-377.6785)" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="183.32233" + x2="117.8272" + y1="174.4991" + x1="109.99998" + gradientTransform="matrix(1.004126,0,0,0.991974,339.87424,1.2094952)" + gradientUnits="userSpaceOnUse" + id="linearGradient5936" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6679" + y2="178.00641" + x2="452.4859" + y1="187.25432" + x1="456.73318" + gradientTransform="matrix(0.99757006,0,0,1.0029938,1.4214297,-0.28443454)" + gradientUnits="userSpaceOnUse" + id="linearGradient5939" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6679" + y2="180.20343" + x2="454.03549" + y1="190.85718" + x1="464.50012" + gradientTransform="matrix(0.99757006,0,0,1.0029938,1.4214297,-0.28443454)" + gradientUnits="userSpaceOnUse" + id="linearGradient5941" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6679-6" + gradientUnits="userSpaceOnUse" + y2="191.23259" + x2="98.80204" + y1="197.65771" + x1="102.72185" + id="linearGradient6636-2" + inkscape:collect="always" /> + <linearGradient + id="linearGradient6679-6"> + <stop + style="stop-color:#ffeb74;stop-opacity:1;" + offset="0" + id="stop6681-6" /> + <stop + style="stop-color:#ffffff;stop-opacity:1;" + offset="1" + id="stop6683-7" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient6679-6" + gradientUnits="userSpaceOnUse" + y2="190.28522" + x2="99.931625" + y1="199.97221" + x1="109.28288" + id="linearGradient6625-4" + inkscape:collect="always" /> + <radialGradient + xlink:href="#linearGradient5602" + r="0.75" + fy="222.75" + fx="842.75342" + cy="222.75" + cx="842.25" + gradientTransform="matrix(1,0,0,1.666667,0,-148.5)" + gradientUnits="userSpaceOnUse" + id="radialGradient5496" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" + gradientUnits="userSpaceOnUse" + id="linearGradient5769" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" + gradientUnits="userSpaceOnUse" + id="linearGradient5771" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" + gradientUnits="userSpaceOnUse" + id="linearGradient5773" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" + gradientUnits="userSpaceOnUse" + id="linearGradient5781" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5899" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" + gradientUnits="userSpaceOnUse" + id="linearGradient5783" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5899" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" + gradientUnits="userSpaceOnUse" + id="linearGradient5785" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" + gradientUnits="userSpaceOnUse" + id="linearGradient5792" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6679" + y2="217.85341" + x2="19.328152" + y1="215.13246" + x1="18.130821" + gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" + gradientUnits="userSpaceOnUse" + id="linearGradient5794" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6679" + y2="212.91974" + x2="16.019382" + y1="217.4612" + x1="18.528841" + gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" + gradientUnits="userSpaceOnUse" + id="linearGradient5796" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.8752,0,0,0.854533,980.2863,352.892)" + gradientUnits="userSpaceOnUse" + id="linearGradient5798" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(3.494239,0,0,1.325753,957.3304,243.8052)" + gradientUnits="userSpaceOnUse" + id="linearGradient5800" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(2.629849,0,0,0.794339,973.2757,359.133)" + gradientUnits="userSpaceOnUse" + id="linearGradient5802" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.376547,0,0,0.715004,987.5221,390.567)" + gradientUnits="userSpaceOnUse" + id="linearGradient5804" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(2.832796,0,0,1.012546,969.5753,320.266)" + gradientUnits="userSpaceOnUse" + id="linearGradient5806" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(2.13203,0,0,0.606678,982.5022,408.3478)" + gradientUnits="userSpaceOnUse" + id="linearGradient5808" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.876376,0,0,0.566024,994.7794,429.2398)" + gradientUnits="userSpaceOnUse" + id="linearGradient5810" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(2.163766,0,0,0.677519,981.9622,400.4873)" + gradientUnits="userSpaceOnUse" + id="linearGradient5812" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(1.628503,0,0,0.405944,991.836,459.4251)" + gradientUnits="userSpaceOnUse" + id="linearGradient5814" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.760936,0,0,0.714541,964.9956,383.6551)" + gradientUnits="userSpaceOnUse" + id="linearGradient5816" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(1.999772,0,0,0.998752,953.4881,316.2596)" + gradientUnits="userSpaceOnUse" + id="linearGradient5818" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(1.505077,0,0,0.598412,962.6137,403.1414)" + gradientUnits="userSpaceOnUse" + id="linearGradient5820" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" + gradientUnits="userSpaceOnUse" + id="linearGradient5519" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.353254,0,0,1.000883,-58.18353,-22.13894)" + gradientUnits="userSpaceOnUse" + id="linearGradient5521" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.018492,0,0,0.59969,-52.00822,64.92824)" + gradientUnits="userSpaceOnUse" + id="linearGradient5523" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.750568,0,0,1.002646,-133.3919,-18.49926)" + gradientUnits="userSpaceOnUse" + id="linearGradient5525" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.20985" + x2="17.752359" + y1="218.97954" + x1="18.846861" + gradientTransform="matrix(3.333119,0,0,1.671823,-155.1792,-171.7462)" + gradientUnits="userSpaceOnUse" + id="linearGradient5527" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.82336" + x2="17.310535" + y1="213.21643" + x1="16.04734" + gradientTransform="matrix(2.508587,0,0,1.001693,-139.9689,-26.31358)" + gradientUnits="userSpaceOnUse" + id="linearGradient5529" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="218.60168" + x2="20.615379" + y1="212.62971" + x1="13.844337" + gradientTransform="matrix(0.751237,0,0,1.001998,-38.40231,-39.41679)" + gradientUnits="userSpaceOnUse" + id="linearGradient5531" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="219.01349" + x2="20.659096" + y1="215.0097" + x1="17.627459" + gradientTransform="matrix(0.669342,0,0,1.001998,-36.88229,-39.41679)" + gradientUnits="userSpaceOnUse" + id="linearGradient5533" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient6684" + y2="213.66304" + x2="15.985496" + y1="219.52322" + x1="19.473742" + gradientTransform="matrix(0.503763,0,0,0.600361,-33.82784,47.74752)" + gradientUnits="userSpaceOnUse" + id="linearGradient5535" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.373757,0,0,0.715969,-52.92573,45.42126)" + gradientUnits="userSpaceOnUse" + id="linearGradient5537" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.537676,0,0,1.000883,-61.45158,-22.13894)" + gradientUnits="userSpaceOnUse" + id="linearGradient5539" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.157292,0,0,0.59969,-54.4347,64.92824)" + gradientUnits="userSpaceOnUse" + id="linearGradient5541" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.125329,0,0,1.002646,-66.82105,-25.5096)" + gradientUnits="userSpaceOnUse" + id="linearGradient5543" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.20985" + x2="17.752359" + y1="218.97954" + x1="18.846861" + gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" + gradientUnits="userSpaceOnUse" + id="linearGradient5545" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.82336" + x2="17.310535" + y1="213.21643" + x1="16.04734" + gradientTransform="matrix(1.88093,0,0,1.001693,-70.83858,-33.32392)" + gradientUnits="userSpaceOnUse" + id="linearGradient5547" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.114324,0,0,1.002646,-47.33758,-30.1841)" + gradientUnits="userSpaceOnUse" + id="linearGradient5549" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(2.026443,0,0,1.557511,-54.13118,-158.6166)" + gradientUnits="userSpaceOnUse" + id="linearGradient5551" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.525151,0,0,0.933201,-44.88385,-23.1282)" + gradientUnits="userSpaceOnUse" + id="linearGradient5553" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5204" + y2="92.007393" + x2="17.629627" + y1="86.265739" + x1="13.479776" + gradientUnits="userSpaceOnUse" + id="linearGradient5555" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="190.66341" + x2="-31.903492" + y1="182.98401" + x1="-36.601665" + gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" + gradientUnits="userSpaceOnUse" + id="linearGradient5557" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="190.66341" + x2="-31.903492" + y1="182.98401" + x1="-36.601665" + gradientTransform="matrix(0.979208,0,0,1.000037,-0.74827,-0.0068457)" + gradientUnits="userSpaceOnUse" + id="linearGradient5559" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.379581,0,0,0.714792,-52.98861,39.49312)" + gradientUnits="userSpaceOnUse" + id="linearGradient5561" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.540284,0,0,0.860045,-61.50452,2.251502)" + gradientUnits="userSpaceOnUse" + id="linearGradient5563" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.159256,0,0,0.515305,-54.47574,77.06717)" + gradientUnits="userSpaceOnUse" + id="linearGradient5565" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.128037,0,0,0.860357,-56.33685,-3.243876)" + gradientUnits="userSpaceOnUse" + id="linearGradient5567" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.20985" + x2="17.752359" + y1="218.97954" + x1="18.846861" + gradientTransform="matrix(1.171839,0,0,1.346914,-61.66084,-115.7031)" + gradientUnits="userSpaceOnUse" + id="linearGradient5569" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.82336" + x2="17.310535" + y1="213.21643" + x1="16.04734" + gradientTransform="matrix(0.881955,0,0,0.807019,-56.31336,1.465486)" + gradientUnits="userSpaceOnUse" + id="linearGradient5571" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.125329,0,0,0.860357,-66.82105,3.798256)" + gradientUnits="userSpaceOnUse" + id="linearGradient5573" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.20985" + x2="17.752359" + y1="218.97954" + x1="18.846861" + gradientTransform="matrix(2.499161,0,0,1.346914,-82.24308,-108.661)" + gradientUnits="userSpaceOnUse" + id="linearGradient5575" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.82336" + x2="17.310535" + y1="213.21643" + x1="16.04734" + gradientTransform="matrix(1.88093,0,0,0.807019,-70.83858,8.507618)" + gradientUnits="userSpaceOnUse" + id="linearGradient5577" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.346661,0,0,0.715969,-52.65426,45.42126)" + gradientUnits="userSpaceOnUse" + id="linearGradient5579" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.00882" + x2="18.707569" + y1="218.55678" + x1="20.101318" + gradientTransform="matrix(1.588886,0,0,1.000747,-62.51619,-22.10887)" + gradientUnits="userSpaceOnUse" + id="linearGradient5581" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(1.195834,0,0,0.599608,-55.26563,64.94646)" + gradientUnits="userSpaceOnUse" + id="linearGradient5583" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="190.66341" + x2="-31.903492" + y1="182.98401" + x1="-36.601665" + gradientUnits="userSpaceOnUse" + id="linearGradient5585" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.635962,0,0,1.002646,-132.1469,-17.5056)" + gradientUnits="userSpaceOnUse" + id="linearGradient5599" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="215.20985" + x2="17.752359" + y1="218.97954" + x1="18.846861" + gradientTransform="matrix(3.19424,0,0,1.671823,-153.0264,-170.7525)" + gradientUnits="userSpaceOnUse" + id="linearGradient5601" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="217.82336" + x2="17.310535" + y1="213.21643" + x1="16.04734" + gradientTransform="matrix(2.404063,0,0,1.001693,-138.4499,-25.31992)" + gradientUnits="userSpaceOnUse" + id="linearGradient5603" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="190.66341" + x2="-31.903492" + y1="182.98401" + x1="-36.601665" + gradientTransform="matrix(0.761633,0,0,0.73832,-7.689547,50.44869)" + gradientUnits="userSpaceOnUse" + id="linearGradient5605" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="-34.577286" + x2="185.51312" + y1="-32.760307" + x1="191.40715" + gradientUnits="userSpaceOnUse" + id="linearGradient5607" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="-32.760307" + x2="187.89511" + y1="-35.833363" + x1="184.75294" + gradientUnits="userSpaceOnUse" + id="linearGradient5610" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.275458,0,0,0.617087,-51.07375,65.67334)" + gradientUnits="userSpaceOnUse" + id="linearGradient5614" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.65544" + x2="18.823143" + y1="219.93051" + x1="20.216892" + gradientTransform="matrix(1.427647,0,0,0.862651,-58.98949,7.443876)" + gradientUnits="userSpaceOnUse" + id="linearGradient5616" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.67934" + x2="17.946985" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.074481,0,0,0.516867,-52.4747,82.48618)" + gradientUnits="userSpaceOnUse" + id="linearGradient5618" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" + gradientUnits="userSpaceOnUse" + id="linearGradient5727" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(1.166116,0,0,1.996022,1250.853,-109.4101)" + gradientUnits="userSpaceOnUse" + id="linearGradient5729" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(0.877647,0,0,1.195941,1256.174,64.2245)" + gradientUnits="userSpaceOnUse" + id="linearGradient5731" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(3.497619,0,0,4.978934,852.2632,-828.4634)" + gradientUnits="userSpaceOnUse" + id="linearGradient5733" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(2.632392,0,0,2.983189,868.2229,-395.3445)" + gradientUnits="userSpaceOnUse" + id="linearGradient5735" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(2.873378,0,0,2.426599,875.3153,-255.174)" + gradientUnits="userSpaceOnUse" + id="linearGradient5737" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.122046,0,0,1.141686,1256.157,85.12902)" + gradientUnits="userSpaceOnUse" + id="linearGradient5739" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(1.166116,0,0,2.310495,1250.853,-177.6338)" + gradientUnits="userSpaceOnUse" + id="linearGradient5741" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(0.877647,0,0,1.384362,1256.174,23.35694)" + gradientUnits="userSpaceOnUse" + id="linearGradient5743" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" + gradientUnits="userSpaceOnUse" + id="linearGradient5745" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" + gradientUnits="userSpaceOnUse" + id="linearGradient5747" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" + gradientUnits="userSpaceOnUse" + id="linearGradient5749" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(1.845525,0,0,3.663228,882.7464,-542.9603)" + gradientUnits="userSpaceOnUse" + id="linearGradient5751" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.388986,0,0,2.194866,891.1676,-224.2946)" + gradientUnits="userSpaceOnUse" + id="linearGradient5753" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.633329,0,0,1.857722,893.2793,-136.2796)" + gradientUnits="userSpaceOnUse" + id="linearGradient5755" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.874592,0,0,1.427199,885.7444,-52.79294)" + gradientUnits="userSpaceOnUse" + id="linearGradient5757" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="214.55122" + x2="17.150238" + y1="218.88832" + x1="18.508638" + gradientTransform="matrix(2.163921,0,0,2.660263,872.8832,-331.8032)" + gradientUnits="userSpaceOnUse" + id="linearGradient5759" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="219.41841" + x2="19.382519" + y1="213.87196" + x1="15.741557" + gradientTransform="matrix(1.62862,0,0,1.593929,882.7572,-100.3862)" + gradientUnits="userSpaceOnUse" + id="linearGradient5762" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="209.27737" + x2="14.010839" + y1="203.36577" + x1="10.041666" + gradientTransform="matrix(1.629558,0,0,0.429186,88.20441,232.3331)" + gradientUnits="userSpaceOnUse" + id="linearGradient5764" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="220.34749" + x2="18.528904" + y1="213.66309" + x1="15.242482" + gradientTransform="matrix(1.387116,0,0,0.200828,86.1208,278.4604)" + gradientUnits="userSpaceOnUse" + id="linearGradient5767" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5663" + y2="57.5" + x2="865.5" + y1="66" + x1="872" + gradientTransform="translate(20,0)" + gradientUnits="userSpaceOnUse" + id="linearGradient5824" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2485" + y2="30.793854" + x2="917.36914" + y1="19.192101" + x1="905.46747" + gradientTransform="matrix(1.159934,0,0,1.224222,-143.4594,-12.87852)" + gradientUnits="userSpaceOnUse" + id="linearGradient5826" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5704" + y2="27.323721" + x2="922.55713" + y1="20.452709" + x1="915.07013" + gradientUnits="userSpaceOnUse" + id="linearGradient5828" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient700" + inkscape:collect="always" + id="linearGradient7059" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" + x1="606.96155" + y1="220.36362" + x2="602.06982" + y2="221.20036" /> + <linearGradient + xlink:href="#linearGradient800" + inkscape:collect="always" + id="linearGradient7062" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" + x1="593.18744" + y1="195.51875" + x2="599.23779" + y2="204.91603" /> + <linearGradient + xlink:href="#linearGradient700" + inkscape:collect="always" + id="linearGradient7065" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" + x1="587.95508" + y1="222.34782" + x2="582.49353" + y2="220.8004" /> + <linearGradient + xlink:href="#linearGradient800" + inkscape:collect="always" + id="linearGradient7069" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,33.807458)" + x1="593.31616" + y1="186.63638" + x2="597.30682" + y2="188.54939" /> + <linearGradient + xlink:href="#linearGradient2888" + inkscape:collect="always" + id="linearGradient7072" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,34.899768)" + x1="594.81122" + y1="213.19025" + x2="594.86096" + y2="216.79137" /> + <linearGradient + xlink:href="#linearGradient800" + inkscape:collect="always" + id="linearGradient7074" + gradientUnits="userSpaceOnUse" + x1="609.57257" + y1="215.40201" + x2="612.25781" + y2="216.40329" /> + <linearGradient + xlink:href="#linearGradient3480" + inkscape:collect="always" + id="linearGradient7102" + gradientUnits="userSpaceOnUse" + x1="591.38523" + y1="198.57608" + x2="592.86562" + y2="198.57608" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="350.16364" + x2="130.35223" + y1="343.25803" + x1="121.11774" + gradientUnits="userSpaceOnUse" + id="linearGradient2876" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient5740" + y2="46.339005" + x2="414.26022" + y1="46.338985" + x1="404.67871" + gradientTransform="matrix(1.001797,0,0,0.906445,-290.1978,295.2598)" + gradientUnits="userSpaceOnUse" + id="linearGradient2878" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient2888" + y2="216.79137" + x2="594.86096" + y1="213.19025" + x1="594.81122" + gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.55597,-101.43481)" + gradientUnits="userSpaceOnUse" + id="linearGradient2880" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="188.54939" + x2="597.30682" + y1="186.63638" + x1="593.31616" + gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" + gradientUnits="userSpaceOnUse" + id="linearGradient2882" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient700" + y2="220.8004" + x2="582.49353" + y1="222.34782" + x1="587.95508" + gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" + gradientUnits="userSpaceOnUse" + id="linearGradient2884" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="204.91603" + x2="599.23779" + y1="195.51875" + x1="593.18744" + gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" + gradientUnits="userSpaceOnUse" + id="linearGradient2886" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient700" + y2="221.20036" + x2="602.06982" + y1="220.36362" + x1="606.96155" + gradientTransform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.88457,-102.25897)" + gradientUnits="userSpaceOnUse" + id="linearGradient2889" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient800" + y2="216.40329" + x2="612.25781" + y1="215.40201" + x1="609.57257" + gradientUnits="userSpaceOnUse" + id="linearGradient2891" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient3480" + y2="198.57608" + x2="592.86562" + y1="198.57608" + x1="591.38523" + gradientUnits="userSpaceOnUse" + id="linearGradient2893" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887" + y2="132.82727" + x2="906.64484" + y1="116.86476" + x1="899.69342" + gradientUnits="userSpaceOnUse" + id="linearGradient3740" + inkscape:collect="always" /> + <linearGradient + x1="348.60065" + y1="338.07721" + x2="375.36154" + y2="318.01028" + id="linearGradient6466-2" + xlink:href="#linearGradient6618" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(19.052029,-3.0895185)" /> + <linearGradient + x1="348.60065" + y1="338.07721" + x2="375.36154" + y2="318.01028" + id="linearGradient6468-0" + xlink:href="#linearGradient6618" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(4.119358,37.589137)" /> + <linearGradient + x1="348.60065" + y1="338.07721" + x2="375.36154" + y2="318.01028" + id="linearGradient6563-3" + xlink:href="#linearGradient6618" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(28.320583,70.029077)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6618" + id="linearGradient5783-6-3" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.8269532,0,0,0.8236011,90.718402,44.233294)" + x1="348.60065" + y1="338.07721" + x2="375.36154" + y2="318.01028" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6618" + id="linearGradient6583-7" + x1="371.23682" + y1="322.88614" + x2="395.26917" + y2="322.88614" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(0.33790588,-0.16552734)" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10585-7" + id="linearGradient5209" + gradientUnits="userSpaceOnUse" + x1="5.6449146" + y1="209.98189" + x2="13.522233" + y2="214.77893" /> + <linearGradient + id="linearGradient10585-7"> + <stop + style="stop-color:#d7d7d7;stop-opacity:1.0000000;" + offset="0.0000000" + id="stop10587-0" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop10595-2" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient10585-7" + y2="214.77893" + x2="13.522233" + y1="209.98189" + x1="5.6449146" + gradientUnits="userSpaceOnUse" + id="linearGradient8278-4" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient10585-7" + y2="214.77893" + x2="13.522233" + y1="209.98189" + x1="5.6449146" + gradientUnits="userSpaceOnUse" + id="linearGradient8276-2" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient10585-7" + y2="214.77893" + x2="13.522233" + y1="209.98189" + x1="5.6449146" + gradientUnits="userSpaceOnUse" + id="linearGradient8290-1" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient10585-7" + y2="214.77893" + x2="13.522233" + y1="209.98189" + x1="5.6449146" + gradientUnits="userSpaceOnUse" + id="linearGradient8288-3" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5704-1"> + <stop + id="stop5706-5" + offset="0" + style="stop-color:#5a5a5a;stop-opacity:1;" /> + <stop + id="stop5708-0" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient6684-6"> + <stop + id="stop6686-3" + offset="0.0000000" + style="stop-color:#ffbf00;stop-opacity:1.0000000;" /> + <stop + id="stop6688-7" + offset="1.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient24464"> + <stop + id="stop24466" + offset="0" + style="stop-color:#499204;stop-opacity:1" /> + <stop + id="stop24468" + offset="1.0000000" + style="stop-color:#a7e26e;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6684-6" + id="linearGradient7067" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.0619426,0.61311287,-0.61311287,-1.0619426,1168.341,499.52897)" + x1="501.36981" + y1="278.69318" + x2="498.01834" + y2="275.92883" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-1" + id="linearGradient7070" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-1.0619426,0.61311287,-0.61311287,-1.0619426,1170.4728,499.78597)" + x1="497.19922" + y1="276.5925" + x2="501.15674" + y2="279.68689" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient24464" + id="linearGradient7073" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(-0.90891476,0.82310731,-0.8530767,-0.94200831,659.33278,552.03151)" + x1="99.279366" + y1="121.4717" + x2="95.750748" + y2="118.64024" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-0" + id="linearGradient8980" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + id="linearGradient5704-0"> + <stop + style="stop-color:#5a5a5a;stop-opacity:1;" + offset="0" + id="stop5706-2" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5708-9" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-6" + id="linearGradient8982" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + id="linearGradient5734-6"> + <stop + id="stop5736-0" + offset="0" + style="stop-color:#8ab3df;stop-opacity:1;" /> + <stop + id="stop5738-9" + offset="1" + style="stop-color:#ffffff" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-3" + id="linearGradient8984" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + id="linearGradient5740-3"> + <stop + id="stop5742-5" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744-4" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-0" + id="linearGradient8986" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-6" + id="linearGradient8988" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-3" + id="linearGradient8990" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-0" + id="linearGradient8772" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-6" + id="linearGradient8774" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-3" + id="linearGradient8776" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-0" + id="linearGradient8766" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-6" + id="linearGradient8768" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-3" + id="linearGradient8770" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-3" + id="linearGradient6608" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + id="linearGradient5704-3"> + <stop + style="stop-color:#5a5a5a;stop-opacity:1;" + offset="0" + id="stop5706-7" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5708-90" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-2" + id="linearGradient6610" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + id="linearGradient5734-2"> + <stop + id="stop5736-3" + offset="0" + style="stop-color:#8ab3df;stop-opacity:1;" /> + <stop + id="stop5738-99" + offset="1" + style="stop-color:#ffffff" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-7" + id="linearGradient6612" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + id="linearGradient5740-7"> + <stop + id="stop5742-0" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744-3" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5704-3" + id="linearGradient6614" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.209494,0,0,1.382055,-12.2469,758.2004)" + x1="11.87961" + y1="205.4478" + x2="18.58443" + y2="211.605" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5734-2" + id="linearGradient6616" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.306645,0,0,2.608597,-18.88425,480.9675)" + x1="16.3967" + y1="214.8097" + x2="21.32992" + y2="218.8141" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5740-7" + id="linearGradient6618-9" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.9834125,0,0,1.562975,-12.92154,707.8904)" + x1="15.64649" + y1="214.5411" + x2="17.49814" + y2="218.8026" /> + <linearGradient + xlink:href="#linearGradient5704-46" + y2="351.125" + x2="511.4375" + y1="347.1808" + x1="508.1888" + gradientUnits="userSpaceOnUse" + id="linearGradient5857-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5704-46"> + <stop + style="stop-color:#5a5a5a;stop-opacity:1;" + offset="0" + id="stop668" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5708-01" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient5704-48" + y2="352.1231" + x2="518.6993" + y1="346.5179" + x1="515.2157" + gradientUnits="userSpaceOnUse" + id="linearGradient5857-64" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5704-48"> + <stop + style="stop-color:#5a5a5a;stop-opacity:1;" + offset="0" + id="stop673" /> + <stop + style="stop-color:#000000;stop-opacity:1.0000000;" + offset="1.0000000" + id="stop5708-16" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient4698-52" + y2="350.407" + x2="532.363" + y1="347.4531" + x1="529.5001" + gradientUnits="userSpaceOnUse" + id="linearGradient5621-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4698-52"> + <stop + id="stop4700-98" + offset="0" + style="stop-color:#a2d3ff;stop-opacity:1" /> + <stop + id="stop4702-1" + offset="1.0000000" + style="stop-color:#004c91;stop-opacity:1" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient4698-1" + y2="350.5838" + x2="538.064" + y1="346.8714" + x1="534.5285" + gradientUnits="userSpaceOnUse" + id="linearGradient5621-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient4698-1"> + <stop + id="stop4700-5" + offset="0" + style="stop-color:#a2d3ff;stop-opacity:1" /> + <stop + id="stop4702-2" + offset="1.0000000" + style="stop-color:#004c91;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3480-9" + id="linearGradient12203" + x1="515.9623" + y1="349.3102" + x2="523.4155" + y2="346.7762" + gradientUnits="userSpaceOnUse" /> + <linearGradient + id="linearGradient3480-9"> + <stop + id="stop3482-6" + offset="0.0000000" + style="stop-color:#646464;stop-opacity:1.0000000;" /> + <stop + id="stop3484-0" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient3480-9" + id="linearGradient12201" + x1="519.4526" + y1="354.5319" + x2="521.2233" + y2="351.8581" + gradientUnits="userSpaceOnUse" /> + <linearGradient + gradientTransform="matrix(0.9659258,0.258819,-0.258819,0.9659258,99.45088,-121.6787)" + y2="351.8581" + x2="521.2233" + y1="354.5319" + x1="519.4526" + gradientUnits="userSpaceOnUse" + id="linearGradient12220" + xlink:href="#linearGradient3480-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3480-4"> + <stop + id="stop3482-7" + offset="0.0000000" + style="stop-color:#646464;stop-opacity:1.0000000;" /> + <stop + id="stop3484-8" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient4698-8"> + <stop + id="stop4700-6" + offset="0" + style="stop-color:#a2d3ff;stop-opacity:1" /> + <stop + id="stop4702-24" + offset="1.0000000" + style="stop-color:#004c91;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4698-8" + id="linearGradient12388" + gradientUnits="userSpaceOnUse" + x1="31.37247" + y1="132.9464" + x2="36.18673" + y2="138.5" /> + <radialGradient + inkscape:collect="always" + xlink:href="#linearGradient4698-8" + id="radialGradient12390" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1,0,0,0.153846,0,120.5976)" + cx="35.25" + cy="142.5244" + fx="35.25" + fy="142.5244" + r="3.25" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient4698-8" + id="linearGradient12392" + gradientUnits="userSpaceOnUse" + gradientTransform="translate(-1.5,7.5244)" + x1="34.5194" + y1="137.5165" + x2="42.18301" + y2="137.4738" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5912"> + <stop + style="stop-color:#000000;stop-opacity:1;" + offset="0" + id="stop5914" /> + <stop + style="stop-color:#808080;stop-opacity:1" + offset="1" + id="stop5916" /> + </linearGradient> + <linearGradient + id="linearGradient6784-4" + inkscape:collect="always"> + <stop + id="stop6786-7" + offset="0" + style="stop-color:#000000;stop-opacity:1;" /> + <stop + id="stop6788-0" + offset="1" + style="stop-color:#808080;stop-opacity:1" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5912" + id="linearGradient5918" + x1="643.5" + y1="311" + x2="634.5" + y2="299.5" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient6784-4" + id="linearGradient5918-3-6" + x1="675.5" + y1="310" + x2="664.5" + y2="297.5" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + id="linearGradient5926"> + <stop + style="stop-color:#004c91;stop-opacity:1" + offset="0" + id="stop5928" /> + <stop + style="stop-color:#91c5f3;stop-opacity:1" + offset="1" + id="stop5930" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + id="linearGradient5926-0-9"> + <stop + style="stop-color:#004c91;stop-opacity:1" + offset="0" + id="stop5928-3-1" /> + <stop + style="stop-color:#91c5f3;stop-opacity:1" + offset="1" + id="stop5930-5-6" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5926" + id="linearGradient5932" + gradientUnits="userSpaceOnUse" + x1="656.18744" + y1="305.6875" + x2="647" + y2="293.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient5926-0-9" + id="linearGradient5932-9-2" + gradientUnits="userSpaceOnUse" + x1="686.5" + y1="318.5" + x2="677.5" + y2="306.5" /> + <linearGradient + inkscape:collect="always" + xlink:href="#eraserFill-6" + id="linearGradient10236" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(1.13356,0,0,1.133368,-243.44373,205.19827)" + x1="101.09393" + y1="221.06877" + x2="112.20101" + y2="234.00311" /> + <linearGradient + id="eraserFill-6"> + <stop + id="stop5742_1-1" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744_1-5" + offset="1.0000000" + style="stop-color:#f3b698;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + inkscape:collect="always" + xlink:href="#eraserFill-6" + id="linearGradient10238" + gradientUnits="userSpaceOnUse" + gradientTransform="matrix(0.809546,0,0,0.809417,-240.01913,332.47995)" + x1="144.08243" + y1="157.82079" + x2="176.86269" + y2="188.41277" /> + <linearGradient + inkscape:collect="always" + id="gray_to_white"> + <stop + id="stop7750-9" + offset="0" + style="stop-color:#afafaf;stop-opacity:1" /> + <stop + id="stop7748-6" + offset="1" + style="stop-color:#e6e6e6;stop-opacity:1" /> + </linearGradient> + <linearGradient + y2="536.965" + x2="217.426" + y1="536.767" + x1="263.478" + gradientTransform="matrix(0.117347,0,0,0.117347,252.7175,248.3363)" + gradientUnits="userSpaceOnUse" + id="linearGradient7163" + xlink:href="#gray_to_white" + inkscape:collect="always" /> + <radialGradient + r="62.3947" + fy="542.529" + fx="234.355" + cy="542.529" + cx="234.355" + gradientTransform="matrix(1,0,0,0.263368,0,365.571)" + gradientUnits="userSpaceOnUse" + id="radialGradient7218" + xlink:href="#BlackTransparent" + inkscape:collect="always" /> + <radialGradient + r="62.3947" + fy="542.529" + fx="234.355" + cy="542.529" + cx="234.355" + gradientTransform="matrix(1,0,0,0.263368,0,365.571)" + gradientUnits="userSpaceOnUse" + id="radialGradient7220" + xlink:href="#WhiteTransparent" + inkscape:collect="always" /> + <linearGradient + y2="376.4393" + x2="-557.8917" + y1="115.2545" + x1="-815.2852" + gradientTransform="matrix(1,0,0,0.997925,315.4232,-138.2771)" + gradientUnits="userSpaceOnUse" + id="linearGradient15270-5" + xlink:href="#linearGradient3480-7-6" + inkscape:collect="always" /> + <linearGradient + id="linearGradient3480-7-6"> + <stop + id="stop3482-77-2" + offset="0.0000000" + style="stop-color:#646464;stop-opacity:1.0000000;" /> + <stop + id="stop3484-3-2" + offset="1.0000000" + style="stop-color:#000000;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient5740-1-4"> + <stop + id="stop5742-8-4" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744-32-6" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient5740-1-4-4"> + <stop + id="stop5742-8-4-5" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744-32-6-7" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + xlink:href="#linearGradient5740-1-4-6" + y2="180.6826" + x2="164.3598" + y1="172.2059" + x1="161.736" + gradientTransform="matrix(2.499161,0,0,1.671823,-82.24308,-178.7565)" + gradientUnits="userSpaceOnUse" + id="linearGradient5545-0-70" + inkscape:collect="always" /> + <linearGradient + id="linearGradient5740-1-4-6"> + <stop + id="stop5742-8-4-8" + offset="0.0000000" + style="stop-color:#ffffff;stop-opacity:1.0000000;" /> + <stop + id="stop5744-32-6-3" + offset="1.0000000" + style="stop-color:#98b6d3;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + id="linearGradient1887-1"> + <stop + id="stop1888-0" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient10926" + xlink:href="#linearGradient1887-1" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-4"> + <stop + id="stop1888-8" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-7" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(0.533827,0,0,0.532126,-61.18771,-178.1669)" + gradientUnits="userSpaceOnUse" + id="linearGradient11010" + xlink:href="#linearGradient1887-4" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-1-0"> + <stop + id="stop1888-0-6" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9-4" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11070" + xlink:href="#linearGradient1887-1-0" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-1-0-3"> + <stop + id="stop1888-0-6-7" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-9-4-2" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11130" + xlink:href="#linearGradient1887-1-0-3" + inkscape:collect="always" /> + <linearGradient + xlink:href="#linearGradient1887-3" + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,165.9423,-181.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient15175-8" + inkscape:collect="always" /> + <linearGradient + id="linearGradient1887-3"> + <stop + id="stop1888-2" + offset="0.0000000" + style="stop-color:#fffdf8;stop-opacity:1.0000000;" /> + <stop + id="stop1889-94" + offset="1.0000000" + style="stop-color:#cdccc7;stop-opacity:1.0000000;" /> + </linearGradient> + <linearGradient + y2="350.1636" + x2="130.3522" + y1="343.258" + x1="121.1177" + gradientTransform="matrix(1,0,0,0.996869,-115.0577,-334.2098)" + gradientUnits="userSpaceOnUse" + id="linearGradient11238" + xlink:href="#linearGradient1887-3" + inkscape:collect="always" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10331" + id="linearGradient10337" + x1="255.513" + y1="92.579002" + x2="264.6582" + y2="83.394058" + gradientUnits="userSpaceOnUse" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10331" + id="linearGradient10372" + gradientUnits="userSpaceOnUse" + x1="255.513" + y1="92.579002" + x2="264.6582" + y2="83.394058" /> + <linearGradient + inkscape:collect="always" + xlink:href="#linearGradient10331" + id="linearGradient10399" + gradientUnits="userSpaceOnUse" + x1="255.513" + y1="92.579002" + x2="264.6582" + y2="83.394058" /> + </defs> + <sodipodi:namedview + inkscape:guide-bbox="true" + inkscape:current-layer="svg1" + inkscape:grid-bbox="true" + inkscape:pageopacity="1.0000000" + pagecolor="#e8e8e4" + snaptoguides="true" + showguides="true" + inkscape:window-y="27" + inkscape:window-x="0" + inkscape:window-height="709" + inkscape:window-width="1366" + inkscape:cy="417.94992" + inkscape:cx="364.82849" + inkscape:zoom="3.3430235" + gridtolerance="6" + snaptogrid="false" + showgrid="false" + id="base" + inkscape:document-units="px" + inkscape:grid-points="true" + guidetolerance="8" + fill="#8ab3de" + stroke="#646464" + inkscape:object-nodes="false" + objecttolerance="11" + inkscape:snap-bbox="false" + inkscape:snap-nodes="true" + inkscape:bbox-nodes="false" + inkscape:bbox-paths="false" + inkscape:snap-global="false" + inkscape:snap-center="false" + inkscape:snap-midpoints="false" + inkscape:snap-intersection-paths="true" + inkscape:object-paths="false" + inkscape:snap-object-midpoints="true" + inkscape:window-maximized="1" + inkscape:snap-grids="true" + inkscape:snap-smooth-nodes="false" + inkscape:snap-text-baseline="false" + inkscape:snap-page="true" + inkscape:snap-bbox-midpoints="false" + inkscape:snap-bbox-edge-midpoints="false"> + <inkscape:grid + type="xygrid" + id="grid9252" + originx="0px" + originy="0px" + spacingx="0.5px" + spacingy="0.5px" + empspacing="2" + visible="true" + enabled="true" + snapvisiblegridlinesonly="true" /> + <sodipodi:guide + orientation="0,1" + position="630.08101,968.02815" + id="guide4946" /> + <sodipodi:guide + orientation="0,1" + position="618.47896,943.93157" + id="guide4948" /> + </sodipodi:namedview> + <metadata + id="metadata1810"> + <rdf:RDF> + <cc:Work + rdf:about=""> + <dc:description>Created with Inkscape http://www.inkscape.org/</dc:description> -<dc:format>image/svg+xml</dc:format> -<dc:type rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> -<cc:license rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> -<dc:creator> -<cc:Agent> -<dc:title>Inkscape Developers</dc:title> -</cc:Agent> -</dc:creator> -<dc:rights> -<cc:Agent> -<dc:title>Inkscape Developers</dc:title> -</cc:Agent> -</dc:rights> -<dc:title /> -</cc:Work> -<cc:License rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> -<cc:permits rdf:resource="http://web.resource.org/cc/Reproduction" /> -<cc:permits rdf:resource="http://web.resource.org/cc/Distribution" /> -<cc:requires rdf:resource="http://web.resource.org/cc/Notice" /> -<cc:permits rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> -<cc:requires rdf:resource="http://web.resource.org/cc/ShareAlike" /> -<cc:requires rdf:resource="http://web.resource.org/cc/SourceCode" /> -</cc:License> -</rdf:RDF> -</metadata> -<use xlink:href="#g6790" inkscape:label="#use6796" height="1250" width="1250" transform="translate(49.67355,1.5750314)" id="draw-polygon" y="0" x="0" /> -<use xlink:href="#g6786" inkscape:label="#use6794" height="1250" width="1250" transform="translate(64.149513,-2.9231615)" id="draw-star" y="0" x="0" /> -<use xlink:href="#transform-skew-horizontal" inkscape:label="#use5772" height="1250" width="1250" transform="matrix(0,-1,1,0,608.00241,1037.0645)" id="transform-skew-vertical" y="0" x="0" /> -<g id="inkscape-logo" transform="matrix(0.1336824,0,0,0.1336824,329.5233,64.55912)" inkscape:label="#inkscape_options"> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.1;fill:none;stroke:none" id="use32" class="outline-big" /> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.2;fill:none;stroke:none" id="use34" class="outline-small" /> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use36" class="black;" /> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" style="opacity:0.2;fill:none;stroke:none" id="use38" class="stroke-highlight" clip-path="url(#clipoutline1)" /> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use40" class="specularity" style="opacity:0.5;fill:url(#linearGradient3731)" /> -<use xlink:href="#outline1" height="128" width="128" y="0" x="0" id="use42" class="low-specularity" style="opacity:0.25;fill:url(#linearGradient3733);fill-opacity:1" /> -<path class="specularity" style="opacity:0.5;fill:url(#linearGradient3735)" d="m 16.8,56.9 c -11.1,11 8.4,7.9 23.4,13.8 l 31,-54.5 c -4.7,-4.8 -10.7,-4.4 -15,0 z" id="path44" /> -<path style="fill:url(#linearGradient3737)" class="shade" d="m 8.9,61.7 c -2.6,9.4 13.4,9.2 22.3,12.7 1.5,-0.9 2.3,-2 1.2,-3 C 25.2,67.8 11,67.8 8.9,61.7 z m 111.1,1 c -2.7,8.9 -25.5,12.3 -33.4,17 -1.1,1.1 -0.4,2.1 0.9,3.1 9.8,-4.9 35.7,-8.7 32.5,-20.1 z m -75.7,11 c -3.2,0 -5.2,1.6 0.6,3.7 7.7,0.6 18.8,3.7 21.2,4.7 3.7,-6.6 -21,-8.4 -21.8,-8.4 z m -21.1,8.5 c -1.3,0.9 -2,1.9 -0.9,2.9 3.5,3.7 21.5,7.1 25.2,10.7 0.9,-1.2 1.2,-2.4 0.1,-3.6 -3.4,-3.4 -19.4,-6.6 -24.4,-10 z m 79.8,9.1 c -0.7,0.8 -1.3,1.7 -1.5,2.7 0,2.1 15.4,3.4 15.4,-0.6 -0.3,-0.7 -0.6,-1.4 -1.2,-2.1 -2.8,1.6 -9.7,1.2 -12.7,0 z m -7.4,0.4 c -3.4,7.1 -11.3,2.5 -19.8,11.1 -1.4,1.5 -0.6,2.3 0.7,3 8.7,-8.2 16.7,-2.9 19.7,-11.8 0.2,-0.9 0,-1.6 -0.6,-2.3 z m -54,7 c -2.4,3.2 -6.6,5.3 -9.6,2.7 -0.3,-0.2 -0.5,-0.5 -0.7,-0.8 -1.1,1.4 -1.1,2.9 0.7,4.5 3.6,3.1 9.3,-0.8 11,-5.2 -0.3,-0.5 -0.9,-0.9 -1.4,-1.2 z m 56.7,1 c -2.3,3.7 2.3,6.7 6.4,4.4 0.6,-0.7 0.5,-2.1 -0.6,-3.5 -2.4,1.2 -4.7,0.5 -5.8,-0.9 z m -54.4,3.9 c -0.9,1.1 -1.2,2.4 -0.1,3.6 3.6,3.6 12,0.1 13.5,8.6 1.1,6.1 14.7,2.9 21.5,-2 1.5,-1.64 0.8,-2.7 -0.5,-3.5 -7.1,4.8 -20,7.7 -21,1.9 -1.5,-8.5 -9.8,-5.1 -13.4,-8.6 z" id="path46" /> -<path id="icecap" class="full-specularity" style="fill:url(#linearGradient3739)" d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z" /> -</g> -<g transform="translate(839.0362,80.70908)" id="layer1" /> -<g style="stroke:#000000;stroke-opacity:1" transform="translate(-251.412,135.0283)" id="path-simplify" inkscape:label="#simplify"> -<path id="path10936" style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4" d="m 486.953,205.5 15,0 m 0,-4.0745 c -6.5,4.5 -8.5,-6.9713 -15,-1 m 0,-6.7577 c 2,5 2.1366,-2.0683 4,-3 2,-1 2.3412,3.0236 3,5 1,3 2,-3 4,-4 2.8284,-1.4142 0,7 4,3" /> -</g> -<g id="paint-none" transform="matrix(0.79999,0,0,0.799999,325.90376,309.79868)" inkscape:label="#fill_none"> -<rect y="11.50168" x="773.88013" height="24.99999" width="25" id="rect194" style="fill:none;stroke:none" /> -<path id="path2473" d="m 781.3777,19.00161 10.0031,10.00004" style="fill:none;stroke:#000000;stroke-width:2.95878911;stroke-linecap:round" /> -<path id="path2474" d="M 791.3808,19.00161 781.3777,29.00164" style="fill:none;stroke:#000000;stroke-width:2.95878911;stroke-linecap:round" /> -</g> -<g id="stroke-cap-butt" transform="translate(44.5,219.7886)" inkscape:label="#cap_butt"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect3854" width="24" height="24" x="899.5" y="158.25" /> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 903,181.7114 0,-13.9227 17,0 0,13.9227" id="path3844" sodipodi:nodetypes="cccc" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5734" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5736" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5738" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5741" y="0" x="0" /> -</g> -<g transform="translate(75.52,219.75)" id="stroke-cap-square" inkscape:label="#cap_square"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect3876" width="24" height="24" x="899.5" y="158.25" /> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 902.98,181.75 -0.04,-23 17.04,0 0.04,23" id="path3878" sodipodi:nodetypes="cccc" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5743" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5746" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5748" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5751" y="0" x="0" /> -</g> -<g transform="translate(105.56,219.75)" id="stroke-cap-round" inkscape:label="#cap_round"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect3904" width="24" height="24" x="899.5" y="158.25" /> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 902.94,181.75 0.04,-13 c 0,-6 2.5,-10 8.5,-10 6,0 8.5,4 8.54,10 l -0.04,13" id="path3906" sodipodi:nodetypes="ccscc" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,13)" id="use5753" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,9)" id="use5755" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,5)" id="use5759" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-9.999997,1)" id="use5761" y="0" x="0" /> -</g> -<g transform="translate(74.46,189.75)" id="stroke-join-bevel" inkscape:label="#join_bevel"> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 900.04,181.75 -0.04,-10.5 12,-12.5 11,0 0,17.5 -6,0 0,5.5" id="path3939" sodipodi:nodetypes="ccccccc" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect3918" width="24" height="24" x="899.5" y="158.25" /> -<path id="path3920" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 900.04,181.75 -0.04,-10.5 12,-12.5 11,0 m -6,23 0,-6 6,0" /> -<use xlink:href="#use5673" height="1250" width="1250" id="use5703" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997,0)" id="use5705" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997,0)" id="use5707" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,0)" id="use5709" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5711" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5713" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5715" y="0" x="0" /> -</g> -<g transform="translate(105.46,189.75)" id="stroke-join-round" inkscape:label="#join_round"> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 900.04,181.75 -0.04,-3 c 0,-12.5 7,-20 19.5,-20 l 3.5,0 0,17.5 -6,0 0,5.5" id="path3949" sodipodi:nodetypes="ccccccc" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect3951" width="24" height="24" x="899.5" y="158.25" /> -<path id="path3953" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 900.04,181.75 -0.04,-3 c 0,-12.5 7,-20 19.5,-20 l 3.5,0 m -6,23 0,-6 6,0" /> -<use xlink:href="#use5673" height="1250" width="1250" id="use5718" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997,0)" id="use5720" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997,0)" id="use5722" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,0)" id="use5724" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5726" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5728" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5731" y="0" x="0" /> -</g> -<g transform="matrix(0.791665,0,0,0.833336,428.27965,305.42141)" id="paint-unknown" inkscape:label="#fill_unset"> -<g id="g2496" transform="matrix(0.959998,0,0,0.96,344.8925,1.216355)"> -<rect style="fill:none;stroke-width:0.0520834" id="rect2499" width="25" height="24.99999" x="596.87488" y="15.62504" /> -</g> -<path id="text2490" d="m 930.6839,16.18176 c 1.9766,2e-5 3.7292,0.45218 5.2575,1.35647 1.7322,1.03622 2.5983,2.43037 2.5983,4.18246 0,1.46953 -0.5299,2.62818 -1.5895,3.47597 l -2.9039,2.22799 c -0.9578,0.58404 -0.9578,1.21518 -0.9578,2.27021 l -6.3682,0 c -0.3493,-2.58372 0.805,-3.29698 1.7016,-4.1071 0.2445,-0.22607 1.2746,-0.97345 2.4759,-1.9454 0.7489,-0.60583 1.345,-0.94198 1.345,-1.63907 0,-0.48982 -0.214,-0.88546 -0.6419,-1.18691 -0.4076,-0.30143 -0.8967,-0.45214 -1.4672,-0.45216 -0.6318,2e-5 -1.7183,0.22608 -1.7488,2.11948 l 0.0305,0.93258 -6.2968,0 c 0,-1.13038 0.2445,-2.61873 0.7336,-3.4477 0.4687,-0.84778 1.1717,-1.5637 2.1091,-2.14776 1.5488,-0.97965 3.1753,-1.63904 5.7226,-1.63906 m -3.8773,15.71245 6.2358,0 0,5.88748 -6.2358,0 0,-5.88748" style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Hegel-Black" sodipodi:nodetypes="ccsccccsssssccccscccccc" /> -</g> -<g id="align-horizontal-baseline" transform="matrix(-1,0,0,0.997921,1118.2063,-16.516926)" inkscape:label="#al_baselines_vert"> -<use xlink:href="#path5120" height="1250" width="1250" id="use5262" y="0" x="0" style="display:inline" transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" /> -<rect style="font-size:12px;fill:none;stroke:none" id="rect2758" width="24.049999" height="24" x="80.685799" y="-28.802999" transform="matrix(0,1,1,0,0,0)" /> -<path id="text3357" d="m -11.9668,90.11223 c -0.7787,-0.67701 -2.1025,-0.43431 -2.6929,0.34854 -0.9754,1.18561 -1.2575,2.70228 -1.6164,4.12145 -0.2662,1.21031 -0.4334,2.4394 -0.501,3.67318 -0.7883,-1.56023 -1.6965,-3.23606 -1.713,-4.99301 -0.0218,-0.88805 0.5124,-1.6408 0.8692,-2.42613 0.2947,-0.65823 -0.5167,-1.34316 -1.2125,-1.13198 -0.8522,0.16578 -0.9942,1.10615 -0.9696,1.78045 0.0896,2.00548 0.9121,3.97467 1.7444,5.80752 1.1795,2.42043 2.8678,4.66505 5.076,6.36815 0.8684,0.6241 3.0647,1.3479 4.1492,0.972 2,-0.9952 2,-2.9856 0,-2.9856 -0.7186,-0.3241 -2.5391,1.2439 -3.2752,1.2192 -1.2149,-0.009 -2.081,-1.0514 -2.4089,-2.0443 -0.3332,-1.31356 -0.0214,-2.6707 0.1844,-3.98039 0.3353,-1.70254 0.7126,-3.43957 1.5965,-4.97978 0.1808,-0.59819 1.5972,-0.95372 0.7698,-1.7493 z" style="font-size:19.23077393px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Baskerville-Nova" sodipodi:nodetypes="cccccsccccccccccc" /> -<path transform="scale(-1.036041,0.965213)" style="font-size:14.62716293px;font-style:normal;font-weight:normal;fill:url(#linearGradient5555);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" d="m 15.59046,88.20062 c -0.53328,0 -0.93563,0.09047 -1.20702,0.2714 -0.26665,0.18094 -0.39997,0.44758 -0.39997,0.79992 0,0.32378 0.10713,0.57852 0.3214,0.76421 0.21903,0.18094 0.52138,0.27141 0.90706,0.27141 0.4809,0 0.88562,-0.17141 1.21417,-0.51424 0.32853,-0.34758 0.4928,-0.78087 0.49281,-1.29987 l 0,-0.29283 -1.32844,0 m 3.90676,-0.96419 0,4.56384 -2.57832,0 0,-1.1856 c -0.34283,0.48567 -0.72851,0.8404 -1.15703,1.06418 -0.42854,0.21903 -0.94992,0.32854 -1.56414,0.32854 -0.82849,0 -1.50224,-0.24045 -2.02123,-0.72136 -0.51424,-0.48566 -0.77136,-1.11417 -0.77136,-1.88553 0,-0.938 0.3214,-1.62603 0.96419,-2.06409 0.64756,-0.43804 1.66175,-0.65707 3.04257,-0.65708 l 1.507,0 0,-0.19998 c -10e-6,-0.40471 -0.15952,-0.69992 -0.47853,-0.88563 -0.31902,-0.19045 -0.81659,-0.28568 -1.49271,-0.28568 -0.54757,0 -1.05705,0.05476 -1.52843,0.16427 -0.47138,0.10952 -0.90943,0.27379 -1.31416,0.49281 l 0,-1.94981 c 0.54757,-0.13332 1.09752,-0.23331 1.64985,-0.29998 0.55232,-0.07141 1.10465,-0.10712 1.65698,-0.10713 1.44271,1e-5 2.48309,0.2857 3.12113,0.85706 0.64278,0.56662 0.96418,1.49034 0.96419,2.77116" id="text5563" /> -</g> -<g transform="matrix(-1,0,0,1,1113.1812,14.063474)" id="align-vertical-baseline" inkscape:label="#al_baselines_hor"> -<use xlink:href="#use5843" height="1250" width="1250" id="use5850" y="0" x="0" transform="matrix(-1,0,0,1,1079.687,-98.5528)" /> -<rect transform="matrix(0,1,1,0,0,0)" y="-33.803001" x="79.963608" height="24" width="24" id="rect2784" style="font-size:12px;fill:none;stroke:none" /> -<use xlink:href="#text5563" height="1250" width="1250" id="use5253" y="0" x="0" transform="matrix(1,0,0,0.997921,-12.75291,5.405751)" /> -<use xlink:href="#text3357" height="1250" width="1250" id="use5256" y="0" x="0" transform="matrix(1,0,0,0.997921,-2.522537,-4.58035)" /> -</g> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1105,339 c 10.3967,0 12.8854,-20 6.4206,-20 -6.5472,0 -16.8424,16.0032 -6.3839,16.0032 10.3264,0 0.09,-16.0032 -6.432,-16.0032 -6.5223,0 -4.1844,20 6.3953,20 z" id="fill-rule-even-odd" sodipodi:nodetypes="ccccs" inkscape:label="#fillrule_evenodd" /> -<path sodipodi:nodetypes="ccccs" id="fill-rule-nonzero" d="m 1135,339 c 10.3966,0 12.8854,-20 6.4205,-20 -6.5472,0 -16.8424,16.0031 -6.3839,16.0031 10.3264,0 0.09,-16.0031 -6.4319,-16.0031 -6.5223,0 -4.1844,20 6.3953,20 z" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" inkscape:label="#fillrule_nonzero" /> -<g id="draw-rectangle" inkscape:label="#draw_rect"> -<rect y="115" x="450" height="24" width="24" id="rect4167" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> -<rect y="117.5082" x="452.5083" height="18.991779" width="18.991671" id="draw_rect1" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="118.5" x="453.5" height="17" width="17" id="rect5872" style="color:#000000;fill:url(#linearGradient9254);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9256);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="draw-spiral" inkscape:label="#draw_arc" transform="translate(365,55.03909)"> -<path id="path225" d="m 96.15762,162.8596 c 0.9734,-0.2466 1.42103,1.1976 1.25344,2.0538 -0.35048,1.7905 -2.20576,2.4131 -3.56363,1.8242 -2.11688,-0.9182 -2.80091,-3.9049 -1.91734,-6.147 1.2163,-3.0864 4.58912,-4.0434 7.12105,-2.5881 3.25106,1.8687 4.23186,6.6593 2.58126,10.2402 -2.02684,4.3972 -6.98766,5.6979 -10.67849,3.352 -4.39336,-2.7925 -5.67379,-9.4221 -3.24514,-14.3335 2.82541,-5.7137 9.39039,-7.3599 14.23593,-4.1158 5.5388,3.7082 7.1199,12.1879 3.909,18.4267 -0.0105,0.0204 -0.0211,0.0409 -0.0317,0.0612" style="font-size:12px;fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> -<rect y="150" x="85" height="24" width="24" id="rect4211" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -</g> -<g id="zoom" transform="translate(280,-64.96091)" inkscape:label="#draw_zoom"> -<path transform="matrix(1.087654,0,0,1.087684,-16.16957,-14.33312)" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" sodipodi:cx="179" id="path4199" style="color:#000000;fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:#c8c8c8;stroke-width:0.87048578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<rect y="150" x="170" height="24" width="24" id="rect4242" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" sodipodi:cx="179" id="path4272" style="color:#000000;fill:url(#linearGradient5536);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.93012607;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<path style="fill:url(#linearGradient5524);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 172,160 c 5,-1 4,-6 9,-7 -2,-2 -5.5,-1.1667 -7,0 -1.5,1.1667 -3,5 -2,7 z" id="path5507" sodipodi:nodetypes="cczc" /> -<g transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" id="g4696"> -<path style="fill:url(#linearGradient4723);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 85.625,124.8009 c 1.66667,-1 3.33333,-1 5,0 l -0.37872,-8.8418 c -1.34906,-0.6533 -2.61846,-0.4612 -4.16666,0 l -0.45462,8.8418 z" id="path4701" sodipodi:nodetypes="ccccc" /> -<path style="fill:url(#linearGradient5492);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4728);stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 90.62502,124.8009 -0.04238,-8.8198 c -0.84595,-1 -4.18514,-1.0458 -5.03108,-0.0458 l 0.07344,8.8656" id="path4709" sodipodi:nodetypes="cccc" /> -<path style="fill:url(#linearGradient5476);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4726);stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 85.625,124.8009 0.91846,1.7806 c 1.03983,-0.2114 2.01992,-0.173 3,0 l 1.08154,-1.7806 c -0.84594,-1 -4.15406,-1 -5,0 z" id="path4705" sodipodi:nodetypes="ccccc" /> -<path sodipodi:nodetypes="cc" id="path4711" d="m 86.62925,116.947 -0.0042,6.2357" style="fill:none;stroke:#ffffff;stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -</g> -<g id="draw-text" transform="translate(425,196.9756)" inkscape:label="#draw_text"> -<path sodipodi:nodetypes="ccccccccccccc" id="path604" d="m 41.91177,127.0244 0,3 2,0 0,18 -2,0 0,3 7,0 0,-3 -2,0 0,-18 2,0 0,-3 -7,0 z" style="fill:#ffffff;fill-rule:evenodd;stroke:none" /> -<path id="path598" d="m 45.41177,129.5 0,19.0369" style="fill:none;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> -<path id="path599" d="m 46.38747,128.5244 1.30813,-0.0111" style="fill:none;stroke:#000000;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path600" d="m 46.39879,149.5244 1.12625,0" style="fill:none;stroke:#000000;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> -<path id="path601" d="m 44.5,149.5244 -1.17647,0" style="fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> -<path id="path602" d="m 44.46788,128.5244 -1.15635,0" style="fill:none;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<rect y="127" x="25" height="24" width="24" id="rect5171" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g id="g3805"> -<path style="font-size:24px;fill:url(#linearGradient5857);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 33,129.5 5,0 6.5,18 -4,0 -1,-2.5 -8,0 -1,2.5 -4,0 6.5,-18 z m 5.5,12 -3,-8.5 -3,8.5 6,0 z" id="text2410" sodipodi:nodetypes="ccccccccccccc" /> -<path sodipodi:nodetypes="cc" id="path5817" d="M 33.5,130.5 28,146" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cc" id="path5828" d="m 38,142.5244 -5.5,0" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5859);stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g id="color-gradient" transform="translate(470,295)" inkscape:label="#draw_gradient"> -<rect y="90" x="-20" height="24" width="24" id="rect2808" style="color:#000000;fill:none;stroke:none;stroke-width:0.4532662;marker:none;display:inline" /> -<rect style="color:#000000;fill:url(#linearGradient4246);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.45326599;marker:none;display:inline" id="rect4244" width="22.1569" height="22.1569" x="-3.0785899" y="-113.076" transform="scale(-1,-1)" /> -<rect y="92.123901" x="-17.875999" height="19.7519" width="19.7519" id="rect3548" style="color:#000000;fill:url(#linearGradient10520);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.45326599;marker:none;display:inline" /> -<path sodipodi:nodetypes="cc" id="path3570" d="M -15.3527,96.3045 -0.647354,107.695" style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<rect y="94.8769" x="-16.184" height="4.0178599" width="4.0099001" id="rect3568" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#rect3568" height="1250" width="1250" transform="matrix(1,0,0,0.99644,12.2265,10.564)" id="use4906" y="0" x="0" /> -</g> -<g id="color-picker" transform="translate(439,260)" inkscape:label="#draw_dropper"> -<path style="fill:url(#linearGradient3628);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5670);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="M 28.8634,163 21,171 l -3,2 -1,-1 2,-3 7.8634,-8 2,2 z" id="path3620" sodipodi:nodetypes="ccccccc" /> -<rect y="155" x="11" height="24" width="24" id="rect3581" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:url(#linearGradient4369);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4360);stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 17.15103,173.5 c 0,0 -2.15103,1.6058 -2.15103,3.5529 0,1.9471 3,1.9471 3,0 0,-1.9471 -0.84897,-3.5529 -0.84897,-3.5529 z" id="path4352" sodipodi:nodetypes="czzc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 20,169 7,-7" id="path4372" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="ccccsccc" id="path3583" d="m 25,160 5,5 1,-1 -1.5,-1.5 c 3.5,-0.5 6.3634,-4.2596 4.3634,-6.2596 -2,-2 -5.8634,0.7596 -6.3634,4.2596 L 26,159 l -1,1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path style="fill:url(#linearGradient4349);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 28,160 c -0.40639,-0.2032 0.15657,-1.7676 1.5,-3 1.83949,-1.6846 3.33144,-1.1712 3.3634,-0.7596 C 33,158 30,161 28,160 z" id="path4341" sodipodi:nodetypes="csss" /> -</g> -<g id="node-join" transform="translate(586.95749,-119.97066)" inkscape:label="#node_join"> -<use xlink:href="#path4385" height="1250" width="1250" transform="translate(12,0)" id="use5652" y="0" x="0" /> -<rect y="175" x="-45" height="16" width="16" id="rect3630" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#646464;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.4762,177.4465 2,0" id="path4385" sodipodi:nodetypes="cc" /> -<rect y="175.5" x="-43.51186" height="3.9896359" width="3.0356951" id="rect3632" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.47804,188.5 c 13.97545,0 13.97545,0 13.97545,0" id="path4389" /> -<rect y="186.5" x="-39.457489" height="3.970665" width="3.9574931" id="rect4374" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path4376" d="m -38,180 1,0 -4e-6,2 L -35,182 -37.500004,185 -40,182 l 1.999996,0 4e-6,-2 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#rect3632" height="1250" width="1250" transform="translate(9.035664,-0.0534999)" id="use16129" y="0" x="0" /> -</g> -<g id="node-join-segment" transform="translate(608.95848,-119.91717)" style="display:inline" inkscape:label="#node_join_segment"> -<use xlink:href="#path4385" height="1250" width="1250" id="use5657" y="0" x="0" transform="translate(12,0)" /> -<use xlink:href="#path4385" height="1250" width="1250" id="use5654" y="0" x="0" /> -<rect y="175" x="-45" height="16" width="16" id="rect4393" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#path4389" height="1250" width="1250" id="use5727" y="0" x="0" transform="translate(0.0018391,-0.0534999)" /> -<rect y="186.4465" x="-43.458481" height="3.970665" width="2.982275" id="rect4411" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#rect3632" height="1250" width="1250" id="use17004" y="0" x="0" transform="translate(0.0356638,-0.0534999)" /> -<use xlink:href="#rect3632" height="1250" width="1250" id="use17007" y="0" x="0" transform="translate(9.035664,-0.0431358)" /> -<use xlink:href="#rect4411" style="fill:#e30000;fill-opacity:1" height="1250" width="1250" transform="translate(9.000001,0.0293315)" id="use17887" y="0" x="0" /> -<use xlink:href="#path4376" height="1250" width="1250" id="use5749" y="0" x="0" transform="translate(0.0238,-0.0535)" /> -</g> -<g id="node-delete-segment" transform="translate(629.95848,-119.9465)" style="display:inline" inkscape:label="#node_delete_segment"> -<use xlink:href="#path4385" height="1250" width="1250" id="use5662" y="0" x="0" transform="translate(12,11)" /> -<rect y="175" x="-45" height="16" width="16" id="rect4415" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#path4389" height="1250" width="1250" id="use5730" y="0" x="0" transform="translate(0.0018391,-11.0535)" /> -<use xlink:href="#rect3632" height="1250" width="1250" id="use17882" y="0" x="0" transform="translate(0.0356638,-0.0431358)" /> -<use xlink:href="#rect3632" height="1250" width="1250" id="use17885" y="0" x="0" transform="translate(8.999968,-0.0534999)" /> -<use xlink:href="#path4385" height="1250" width="1250" id="use5660" y="0" x="0" transform="translate(0,11)" /> -<use xlink:href="#use17887" height="1250" width="1250" id="use17891" y="0" x="0" style="display:inline" transform="translate(-9.000001,2.498039e-6)" /> -<use xlink:href="#use17887" height="1250" width="1250" id="use17894" y="0" x="0" style="display:inline" transform="translate(-0.0177254,2.498039e-6)" /> -<use xlink:href="#path4376" height="1250" width="1250" id="use5752" y="0" x="0" transform="translate(0.0238,0.9465)" /> -</g> -<g id="tool-pointer" transform="translate(560,-109.961)" inkscape:label="#draw_select"> -<rect y="135" x="-110" height="24" width="24" id="rect10522" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="csssssss" id="path730" d="m -104.4426,154.8912 c 0,0 -0.0575,-18.2662 -0.0575,-18.2662 0,0 12.04014,12.8752 12.04014,12.8752 0,0 -5.20198,-0.1182 -5.20198,-0.1182 0,0 3.4254,5.6771 3.4254,5.6771 0,0 -4.47307,2.1183 -4.47307,2.1183 0,0 -2.00879,-6.4587 -2.00879,-6.4587 0,0 -3.7242,4.1725 -3.7242,4.1725 z" style="font-size:12px;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> -</g> -<g id="tool-node-editor" transform="translate(560,-124.961)" inkscape:label="#draw_node"> -<rect y="180" x="-110" height="24" width="24" id="rect10524" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="csc" id="path10536" d="m -107.5,202 c -0.5,-8 0.6365,-12.357 3.9649,-15.4022 C -100.5976,183.9103 -96,182 -88,182.5" style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -<rect style="color:#000000;fill:#0000ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10534" width="6.1177049" height="5.9961362" x="-106.5" y="183.50391" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10541" width="3.9980321" height="3.9996819" x="-109.5" y="199.5" /> -<path sodipodi:nodetypes="cccc" id="path10543" d="m -103,187 9,16 6,-6 -15,-10 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<use xlink:href="#rect10541" height="1250" width="1250" transform="translate(19.00197,-19.03868)" id="use5791" y="0" x="0" /> -</g> -<g id="node-break" transform="translate(650.98228,-119.91717)" inkscape:label="#node_break"> -<use xlink:href="#path4385" height="1250" width="1250" id="use5666" y="0" x="0" transform="translate(11.9762,11)" /> -<use xlink:href="#path4385" height="1250" width="1250" id="use5664" y="0" x="0" transform="translate(-0.0238,11)" /> -<rect y="175" x="-45" height="16" width="16" id="rect10555" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#path4389" height="1250" width="1250" id="use5732" y="0" x="0" transform="translate(0.0025879,-11.0535)" /> -<use xlink:href="#rect4411" height="1250" width="1250" id="use5737" y="0" x="0" style="display:inline" transform="translate(-0.0237986,-2.327919e-6)" /> -<use xlink:href="#use5737" height="1250" width="1250" transform="translate(9,0)" id="use5740" y="0" x="0" /> -<use xlink:href="#path4376" height="1250" width="1250" id="use5754" y="0" x="0" transform="translate(0,0.9465)" /> -<use xlink:href="#use5791" height="1250" width="1250" id="use5793" y="0" x="0" transform="translate(51,-5.014501)" /> -</g> -<g id="node-add" transform="translate(545,-120.01641)" inkscape:label="#node_insert"> -<rect y="175" x="-45" height="16" width="16" id="rect10573" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.41109,187.5 c 14.91109,0 14.91109,0 14.91109,0" id="path10583" /> -<rect y="184.5076" x="-39.506001" height="5.9682379" width="5.0068879" id="rect10585" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path10587" d="m -38,175 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccccc" /> -</g> -<g transform="matrix(1,0,0,-1,566,421.98359)" id="node_insert_max_y"> -<rect width="16" height="16" x="-45" y="175" id="rect6085" style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path d="m -44.5,175.48359 c 0,0 2,3.49999 7.5,3.5 5.5,1e-5 7.5,-3.5 7.5,-3.5" id="path6087" style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="5.0060005" height="4.9759912" x="-39.506001" y="176.5076" id="rect6089" style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" id="path6091" style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g transform="translate(547,56)" id="node_insert_min_y"> -<rect width="16" height="16" x="-45" y="175" id="rect6115" style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path d="m -44.5,175.48359 c 0,0 2,3.5164 7.5,3.51641 5.5,1e-5 7.5,-3.51641 7.5,-3.51641" id="path6117" style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="5.0060005" height="4.9759912" x="-39.506001" y="176.5" id="rect6119" style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" id="path6121" style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g transform="matrix(0,-1,-1,0,730.99179,201.9918)" id="node_insert_min_x"> -<rect width="16" height="16" x="-45" y="175" id="rect6125" style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path d="m -44.5,175.48359 c 0,0 1.9918,3.50819 7.4918,3.5082 5.5,1e-5 7.5082,-3.5082 7.5082,-3.5082" id="path6128" style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="5.0060005" height="4.9759912" x="-39.514202" y="176.51579" id="rect6130" style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" id="path6132" style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g transform="matrix(0,1,1,0,384.00821,275.9918)" id="node_insert_max_x"> -<rect width="16" height="16" x="-45" y="175" id="rect6137" style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path d="m -44.5,175.48359 c 0,0 2.0082,3.50819 7.5082,3.5082 5.5,1e-5 7.4918,-3.5082 7.4918,-3.5082" id="path6139" style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="5.0060005" height="4.9759912" x="-39.491798" y="176.51579" id="rect6141" style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" id="path6143" style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g id="node-delete" transform="translate(566.006,-119.97584)" inkscape:label="#node_delete"> -<rect y="175" x="-45" height="16" width="16" id="rect10591" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#path10583" height="1250" width="1250" transform="translate(-0.0651068,-0.0534998)" id="use15253" y="0" x="0" /> -<rect y="184.5076" x="-39.506001" height="5.9682379" width="5.0068879" id="rect10595" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#8686e5;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path10597" d="m -33,178 0,2 -8,0 0,-2 8,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccc" /> -</g> -<g id="zoom-in" transform="matrix(1,0,0,0.997925,495,-162.4833)" inkscape:label="#zoom_in"> -<g id="g5796"> -<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.94033492;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.26512966;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path4220" sodipodi:cx="179" sodipodi:cy="159" sodipodi:rx="7" sodipodi:ry="7" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" transform="matrix(1.00786,0,0,1.007983,-167.1731,96.0569)" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect10601" width="16" height="16" x="5.0272999" y="248.02901" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 18.03125,259 16,261.0312 l 3,3 2.03125,-2.0312 -3,-3 z" id="path10605" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#radialGradient5855);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99317169;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path10607" sodipodi:cx="179" sodipodi:cy="159" sodipodi:rx="7" sodipodi:ry="7" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" transform="matrix(1.00786,0,0,1.007983,-167.8785,95.25998)" /> -</g> -<path sodipodi:nodetypes="ccccccccccccc" id="path10609" d="m 11,251.0208 2,0 0.0273,3 3,0.029 -0.0273,1.9938 -3,-0.0291 0.0273,3.0063 -2,0 -0.0273,-3.0063 -3.0273,0 0.0273,-1.9937 3.0273,0 -0.0273,-3 z" style="fill:url(#linearGradient4088);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g id="zoom-out" transform="translate(515.0312,-162.961)" inkscape:label="#zoom_out"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5803" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.06245,0.476586)" /> -<path sodipodi:nodetypes="ccccc" id="path10652" d="m 16.03125,253.971 -0.0039,2.029 -7.99605,0 0.00395,-2.029 7.99605,0 z" style="color:#000000;fill:url(#linearGradient3208);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> -</g> -<g id="zoom-half-size" inkscape:label="#g6895"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5818" y="0" x="0" transform="matrix(0.996399,0,0,0.997925,95.044487,-202.45778)" /> -<path style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 108.53664,50.5646 c 0.4982,-1.5 2.98919,-1.5 2.98919,0.5 0,2 -2.98919,2.5 -2.98919,4.5 l 2.98919,0" id="path10692" sodipodi:nodetypes="cccc" /> -<path d="m 103,49.5 1.5,0 0,6.5 m 1.5,-3.5 1,0 m -1,3 1,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3806" sodipodi:nodetypes="ccccccc" /> -</g> -<g id="zoom-fit-width" transform="matrix(0.996399,0,0,0.998403,95.11635,-102.5393)" inkscape:label="#zoom_pagewidth"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5834" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> -<path transform="translate(-49.99998,18)" style="color:#000000;fill:url(#linearGradient4013);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4072);stroke-width:1.00260663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 57.5,236.5 10,0 0.03137,6.0314 C 65.02942,245.251 59.78235,245.1882 57.5,242.4373 l 0,-5.9373 z" id="rect3056" sodipodi:nodetypes="ccccc" /> -</g> -<g id="zoom-fit-page" transform="matrix(0.996399,0,0,1,95.11635,-122.961)" inkscape:label="#zoom_page"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5826" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> -<path transform="translate(-49.99998,18)" style="color:#000000;fill:url(#linearGradient4005);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4080);stroke-width:1.00180554;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 59.5,233.5312 6,0 0,8 -6,0 0,-8 z" id="path3805" sodipodi:nodetypes="ccccc" /> -</g> -<g id="zoom-fit-selection" transform="matrix(0.996399,0,0,0.998404,95.11635,-162.5398)" inkscape:label="#zoom_select"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5822" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> -<rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3901" width="9" height="7" x="18" y="232" transform="translate(-9.99998,20)" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3873" width="1" height="1" x="18" y="232" transform="translate(-9.99998,20)" /> -<rect y="252" x="10.00002" height="1" width="1" id="rect3875" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3877" width="1" height="1" x="12.00002" y="252" /> -<rect y="252" x="14.00002" height="1" width="1" id="rect3879" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3881" width="1" height="1" x="16.000019" y="252" /> -<rect y="254" x="16.000019" height="1" width="1" id="rect3883" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3885" width="1" height="1" x="16.000019" y="256" /> -<rect y="258" x="16.000019" height="1" width="1" id="rect3887" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3889" width="1" height="1" x="14.00002" y="258" /> -<rect y="258" x="12.00002" height="1" width="1" id="rect3891" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3893" width="1" height="1" x="10.00002" y="258" /> -<rect y="258" x="8.00002" height="1" width="1" id="rect3895" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect3897" width="1" height="1" x="8.00002" y="256" /> -<rect y="254" x="8.00002" height="1" width="1" id="rect3899" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -</g> -<g id="zoom-fit-drawing" transform="matrix(0.996399,0,0,0.998403,95.11635,-142.5705)" inkscape:label="#zoom_draw"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5824" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.508815)" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 74,282 1,0 0,-2 2,0 0,-1 -3,0 0,3 z" id="path4192" sodipodi:nodetypes="ccccccc" transform="translate(-64.99998,-27)" /> -<g id="g5984"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5849);stroke-width:1.00260699;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4828" width="5.0003939" height="5.0406842" x="8.4587202" y="251.4922" /> -<rect style="color:#000000;fill:url(#linearGradient5851);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5853);stroke-width:1.00260735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4830" width="3.008755" height="3.010303" x="9.4499798" y="252.4818" /> -</g> -<use xlink:href="#g5984" height="1250" width="1250" transform="translate(3.000016,2.959313)" id="use5989" y="0" x="0" /> -</g> -<g id="zoom-previous" transform="matrix(0.996399,0,0,0.998404,95.11635,-82.57091)" inkscape:label="#zoom_previous"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5836" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.07212,0.508745)" /> -<g id="g6036"> -<path sodipodi:nodetypes="ccccccccc" id="path3974" d="m 9.53125,251.5312 0,0 0,4 5.92788,-4.0391 0,8 -5.92788,-3.9609 0,4 0,0 0,-8 z" style="color:#000000;fill:#ffd400;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5847);stroke-width:1.00260592;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cc" id="path4188" d="m 11.33756,255.4455 3.2458,-2.2227" style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g id="zoom-next" transform="matrix(0.996399,0,0,0.998404,95.08516,-62.56986)" inkscape:label="#zoom_next"> -<use xlink:href="#g5796" height="1250" width="1250" id="use5838" y="0" x="0" transform="matrix(1,0,0,0.997925,-0.04082,0.507716)" /> -<g id="g6043"> -<path sodipodi:nodetypes="ccccccccc" id="path3990" d="m 15.50002,251.5 0,0 0,8 0,0 0,-4 -6,4 0,-8 6,4 0,-4 z" style="color:#000000;fill:#ffd400;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5845);stroke-width:1.00260592;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cc" id="path4191" d="m 10.43978,257.6603 3.2458,-2.2228" style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g id="node-type-cusp" transform="translate(673.00979,-120.0032)" inkscape:label="#node_cusp"> -<rect y="175" x="-45" height="16" width="16" id="rect3216" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.50979,175.5032 c 6.98772,0 6.97087,9.1359 6.97087,11.1359 4.51512,-2.5192 7.51512,-5.6391 8.03482,-11.1359" id="path3226" sodipodi:nodetypes="ccc" /> -<rect y="103.5115" x="-160.3997" height="3.831147" width="3.7918439" id="rect3224" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510178;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0.7071088,-0.7071048,0.7071088,0.7071048,0,0)" /> -</g> -<g id="node-type-smooth" transform="translate(693.94349,-119.91716)" inkscape:label="#node_smooth"> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.41296,176.5635 c -0.52712,3.4524 0.87103,8.8935 6.87103,8.8935 6,0 7.55886,-5.5701 7.08598,-9.0225" id="path3254" sodipodi:nodetypes="csc" /> -<rect y="175" x="-45" height="16" width="16" id="rect3252" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use5742" y="0" x="0" transform="translate(0.0140001,-3.0535)" /> -</g> -<g id="node-type-symmetric" transform="translate(714.97991,-119.98321)" inkscape:label="#node_symmetric"> -<path id="path10667" style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.41296,176.5635 c -0.52712,3.4524 1.3869,9.5301 7.3869,9.5301 6,0 7.98876,-6.0777 7.51588,-9.5301 m -12.93758,9.634 10.89258,0" sodipodi:nodetypes="csccc" /> -<rect y="175" x="-45" height="16" width="16" id="rect10669" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="-39.479382" x="-188.48309" height="4.9501772" width="4.9663939" id="rect10671" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(2.790265e-6,-1,1,-2.867107e-6,0,0)" /> -<rect style="color:#000000;fill:#ffffff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10673" width="2.0676479" height="2.0177431" x="-44.54361" y="185.22279" ry="1.008872" rx="1.008872" /> -<rect style="color:#000000;fill:#ffffff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10675" width="2.022052" height="2.0266621" x="-31.531851" y="185.1983" ry="1.011026" rx="1.011026" /> -</g> -<g id="node-segment-curve" transform="translate(757.93369,-119.91717)" inkscape:label="#node_curve"> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -42.38772,188.4395 c 0,-7 3.97563,-10.8272 10.97563,-10.8272" id="path10679" sodipodi:nodetypes="cc" /> -<rect y="175" x="-45" height="16" width="16" id="rect10681" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use5745" y="0" x="0" transform="translate(-4.9762,-0.0534998)" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use5747" y="0" x="0" transform="translate(5.981293,-11.02417)" /> -</g> -<g id="node-segment-line" transform="translate(778.9762,-119.9465)" inkscape:label="#node_line"> -<path style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -42.5,188.5 11,-11" id="path4418" sodipodi:nodetypes="cc" /> -<rect y="175" x="-45" height="16" width="16" id="rect4420" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use5756" y="0" x="0" transform="translate(-5.018707,-0.0241656)" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use5758" y="0" x="0" transform="translate(6.0238,-11.02417)" /> -</g> -<g id="object-to-path" transform="translate(280.041,-149.9465)" inkscape:label="#object_tocurve"> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -37.0131,188.9855 c 2,4 9.20151,-0.6776 7.20151,-3.6776 -1.29515,-1.9427 -9.43,0.365 -12.7582,-1.8538 -3,-2 -2.55095,-8.4795 2.51639,-7.9119 4.63729,0.5239 1.42785,10.2184 3.0403,13.4433 z" id="path4438" sodipodi:nodetypes="cssss" /> -<rect y="175" x="-45" height="16" width="16" id="rect4440" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="-39.5126" x="-178.495" height="3.0235641" width="3.009614" id="rect4442" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(2.812379e-6,-1,1,-2.844556e-6,0,0)" /> -<use xlink:href="#rect4442" height="1250" width="1250" transform="translate(-4.027901,6.951345)" id="use6691" y="0" x="0" /> -<use xlink:href="#rect4442" height="1250" width="1250" transform="translate(6.948524,11.95135)" id="use6693" y="0" x="0" /> -</g> -<g id="stroke-to-path" transform="translate(280.0489,-129.9566)" inkscape:label="#stroke_tocurve"> -<path id="path4464" style="color:#000000;fill:#8ab3df;fill-opacity:0.58823529;fill-rule:evenodd;stroke:none;stroke-width:1.00000238;marker:none;display:inline" d="m -39.52195,190.3973 -4.92126,-1.9492 c -0.53904,-7.6303 5.46096,-13.5111 12.96096,-13.0111 l 1.9603,4.9603 c -7,0 -10,3 -10,10 z" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -44.43436,188.5363 c -0.53903,-7.6302 5.46097,-13.5111 12.96097,-13.0111" id="path4450" sodipodi:nodetypes="cc" /> -<rect y="175" x="-45" height="16" width="16" id="rect4452" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -39.5131,190.4855 c 0,-7 3,-10 10,-10" id="path4458" sodipodi:nodetypes="cc" /> -<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-7.0079,-11.98028)" id="use6695" y="0" x="0" /> -<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-11.98432,-6.989905)" id="use6698" y="0" x="0" /> -<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-8.0079,-2.989905)" id="use6700" y="0" x="0" /> -<use xlink:href="#use6693" height="1250" width="1250" transform="translate(-3.0079,-7.98028)" id="use6702" y="0" x="0" /> -</g> -<g id="selection-bottom" transform="translate(235.0423,10.04822)" style="display:inline" inkscape:label="#selection_bot"> -<rect y="175" x="-45" height="16" width="16" id="rect6698" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7653" y="0" x="0" style="display:inline" transform="translate(8.934884,-0.0391259)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7655" y="0" x="0" style="display:inline" transform="translate(8.9612,2.960874)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7657" y="0" x="0" style="display:inline" transform="translate(8.9612,5.960874)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7659" y="0" x="0" style="display:inline" transform="translate(8.934884,8.960874)" /> -<use xlink:href="#rect8574" height="1250" width="1250" id="use8586" y="0" x="0" style="display:inline" transform="translate(0,2.999993)" /> -<use xlink:href="#path10449" height="1250" width="1250" transform="matrix(1,0,0,-1,-10,364.9817)" id="use4704" y="0" x="0" /> -</g> -<g id="selection-top" transform="translate(235.0423,-9.96096)" style="display:inline" inkscape:label="#selection_top"> -<rect y="175" x="-45" height="16" width="16" id="rect10445" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path id="path10449" d="m -31,189.9908 -1,0 -3e-6,-8 -1.999997,0 2.499997,-3 2.500003,3 -2.000003,0 3e-6,8 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7645" y="0" x="0" style="display:inline" transform="translate(-0.0387999,3.97005)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7647" y="0" x="0" style="display:inline" transform="translate(-0.0387999,6.97005)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7649" y="0" x="0" style="display:inline" transform="translate(-0.0387999,9.97005)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7651" y="0" x="0" style="display:inline" transform="translate(-0.0387999,12.97005)" /> -<use xlink:href="#rect10479" height="1250" width="1250" id="use8534" y="0" x="0" style="display:inline" transform="translate(-0.0384184,-3.002595)" /> -</g> -<g id="selection-raise" transform="translate(235.0423,-49.96096)" style="display:inline" inkscape:label="#selection_up"> -<rect y="175" x="-45" height="16" width="16" id="rect10473" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:url(#linearGradient5835);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -43.97588,175.9908 c 4.97368,0 4.97368,0 4.97368,0" id="path10475" /> -<rect y="178.46091" x="-44.50185" height="2.002599" width="14.99927" id="rect10479" style="color:#000000;fill:url(#linearGradient5837);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5839);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:url(#linearGradient5842);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;display:inline" d="m -44.00221,185.9908 c 7.94048,0 7.94048,0 7.94048,0" id="path10483" /> -<use xlink:href="#path10475" height="1250" width="1250" transform="translate(-0.0387999,6.97005)" id="use7634" y="0" x="0" /> -<use xlink:href="#use7634" height="1250" width="1250" transform="translate(0,6)" id="use7636" y="0" x="0" /> -<use xlink:href="#path10505" height="1250" width="1250" id="use5413" y="0" x="0" style="display:inline" transform="matrix(-1,0,0,-1,-74.00271,364.9954)" /> -</g> -<g id="selection-lower" transform="translate(235.0423,-29.95179)" style="display:inline" inkscape:label="#selection_down"> -<rect y="175" x="-45" height="16" width="16" id="rect10501" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path id="path10505" d="m -42,177.9908 1,0 0,1 -1,0 -3e-6,1 2.000003,0 -2.500003,3 -2.499997,-3 1.999997,0 3e-6,-1 1,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccc" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7638" y="0" x="0" style="display:inline" transform="translate(8.934884,-0.0391201)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7641" y="0" x="0" style="display:inline" transform="translate(8.9612,5.96088)" /> -<use xlink:href="#path10475" height="1250" width="1250" id="use7643" y="0" x="0" style="display:inline" transform="translate(8.934884,12.96088)" /> -<rect y="184.4491" x="-44.540272" height="2.002599" width="14.99927" id="rect8574" style="color:#000000;fill:url(#linearGradient5831);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5833);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#path10483" height="1250" width="1250" id="use8589" y="0" x="0" style="display:inline" transform="translate(5.961212,-7.03912)" /> -</g> -<g id="object-flip-vertical" transform="translate(235.0013,89.99992)" style="display:inline" inkscape:label="#object_flip_ver"> -<rect y="175" x="-45" height="16" width="16" id="rect4332" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -43.5,182.5 1,0" id="path4335" sodipodi:nodetypes="cc" /> -<path style="color:#000000;fill:url(#linearGradient7544);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6743);stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -43.49833,184.5 13.04827,0 0,5 -13.04827,-5 z" id="rect4339" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:url(#linearGradient6727);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6745);stroke-width:0.89999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -43.49838,180.5 13.04676,0 0,-5 -13.04676,5 z" id="path5098" sodipodi:nodetypes="cccc" /> -<use xlink:href="#path4335" height="1250" width="1250" transform="translate(2.959,-0.0391199)" id="use7626" y="0" x="0" /> -<use xlink:href="#use7626" height="1250" width="1250" transform="translate(3,0)" id="use7628" y="0" x="0" /> -<use xlink:href="#use7628" height="1250" width="1250" transform="translate(3,0)" id="use7630" y="0" x="0" /> -<use xlink:href="#use7630" height="1250" width="1250" transform="translate(3,0)" id="use7632" y="0" x="0" /> -</g> -<g id="object-flip-horizontal" transform="translate(235.0423,70.03904)" style="display:inline" inkscape:label="#object_flip_hor"> -<rect y="175" x="-45" height="16" width="16" id="rect6649" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -37.49238,176.4968 0,1" id="path6651" sodipodi:nodetypes="cc" /> -<path style="color:#000000;fill:url(#linearGradient6665);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6667);stroke-width:0.89999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -39.45,176.45 0,13.0935 -5.08475,0 L -39.45,176.45 z" id="path6653" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:url(#linearGradient6737);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6739);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -35.49238,176.4968 0,13 5,0 -5,-13 z" id="path6655" sodipodi:nodetypes="cccc" /> -<use xlink:href="#path6651" height="1250" width="1250" transform="translate(-0.0486211,2.96407)" id="use7618" y="0" x="0" /> -<use xlink:href="#use7618" height="1250" width="1250" transform="translate(0,3)" id="use7620" y="0" x="0" /> -<use xlink:href="#use7620" height="1250" width="1250" transform="translate(0,3)" id="use7622" y="0" x="0" /> -<use xlink:href="#use7622" height="1250" width="1250" transform="translate(0,3)" id="use7624" y="0" x="0" /> -</g> -<g id="object-rotate-left" transform="matrix(-1,0,0,1,161.0423,50.03904)" style="display:inline" inkscape:label="#object_rotate_90_CCW"> -<rect y="175" x="-45" height="16" width="16" id="rect7457" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -37.5,175.5 0,15 -6,0 6,-15 z" id="path7459" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:url(#linearGradient6690);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6731);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -29.5,188.5 -15,0 0,-6 15,6 z" id="path7461" sodipodi:nodetypes="cccc" /> -<path sodipodi:nodetypes="cccccccc" id="use7610" d="m -36.03125,176.96875 0,1 3,0 1.0149,0.99215 1,0 -2.0149,-1.99217 -3,0 0,2e-5 z" style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" /> -<use xlink:href="#path7514" height="1250" width="1250" id="use5439" y="0" x="0" style="display:inline" transform="translate(0.070634,3.868655e-4)" /> -</g> -<g id="object-rotate-right" transform="translate(235.0423,30.03905)" style="display:inline" inkscape:label="#object_rotate_90_CW"> -<rect y="175" x="-45" height="16" width="16" id="rect7508" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -37.5,175.5 0,15 -6,0 6,-15 z" id="path7510" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:url(#linearGradient6672);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7548);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m -29.5,188.5 -15,0 0,-6 15,6 z" id="path7512" sodipodi:nodetypes="cccc" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 199,207 0,1 3,0 1.03125,1 0,3.03125 -2,0 2.5,3 2.5,-3 -2,0 0,-3.03125 -2.03125,-2 -3,0 z" transform="translate(-235.0423,-30.03905)" id="path7514" /> -</g> -<g id="dialog-fill-and-stroke" transform="translate(235,-150.0546)" style="display:inline" inkscape:label="#fill_and_stroke"> -<path style="fill:none;stroke:url(#linearGradient10473);stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 191,40 0,-14 14,0" id="path10465" sodipodi:nodetypes="ccc" transform="translate(-235,150.0546)" /> -<path style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" d="m -42.96863,177.0546 14,0 -14,14 0,-14 z" id="rect10562" sodipodi:nodetypes="cccc" /> -<rect y="175" x="-45" height="16" width="16" id="rect9766" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g id="g10509"> -<path transform="translate(-235,150.0546)" sodipodi:nodetypes="ccc" id="path10491" d="m 191.5,40.5 c 5.5,0 8.5,-0.5 9,-3.5 l 5,-3" style="opacity:0.3;fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cccc" id="path10571" d="m -33.36912,180.455 3,3 1.40049,-0.4004 0,-7" style="fill:url(#linearGradient10579);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<path sodipodi:nodetypes="cccc" id="path10544" d="m -44.46863,190.5546 c 3.46126,-2.1071 3.46863,-5.5546 7.23386,-6.1545 0.5,0.5 1.65555,1.8323 2.25703,2.0537 -0.22141,2.7786 -4.02226,4.1893 -9.49089,4.1008 z" style="fill:url(#radialGradient10597);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10481);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path sodipodi:nodetypes="ccccc" id="path10558" d="m -37.0151,184.4115 3.84491,-4.0888 c 1.06653,0.6673 2.1996,2 2.73385,3.2661 l -4.80016,2.9112 -1.7786,-2.0885 z" style="color:#000000;fill:url(#linearGradient10560);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10489);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cccc" id="path10568" d="m -29.65866,176.2759 c -1.39145,1.238 -2.56289,2.6544 -3.64461,4.1133 1.4214,0.8669 2.1109,2 2.73386,3.2661 0.76999,-0.289 0.56511,-0.1789 1.06941,-0.4679" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -</g> -</g> -<g id="dialog-text-and-font" transform="translate(140.041,-179.961)" inkscape:label="#object_font"> -<path sodipodi:nodetypes="ccccccccccccccccc" d="m 144,220 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path10616" /> -<path inkscape:label="#object_font" id="asda" d="m 146,220 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" style="fill:url(#linearGradient10641);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g transform="translate(-163.3209,-147.1542)" id="object-ungroup" inkscape:label="#selection_ungroup"> -<g id="g6068"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5825);stroke-width:1.00000048;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect9496" width="8.9967346" height="6.9991608" x="355.82739" y="258.65411" /> -<rect style="color:#000000;fill:url(#linearGradient5827);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5829);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect9498" width="6.994853" height="4.9729452" x="356.8273" y="259.6532" /> -</g> -<use xlink:href="#rect10765" height="1250" width="1250" id="use8598" y="0" x="0" transform="translate(4.959,-0.03898)" /> -<use xlink:href="#rect10765" height="1250" width="1250" id="use8601" y="0" x="0" transform="translate(13.959,-0.0389847)" /> -<use xlink:href="#rect10765" height="1250" width="1250" id="use8603" y="0" x="0" transform="translate(-0.0409897,3.96102)" /> -<use xlink:href="#use8603" height="1250" width="1250" transform="translate(13.99999,4.999995)" id="use8605" y="0" x="0" /> -<use xlink:href="#use8605" height="1250" width="1250" transform="translate(-1.99999,5.000005)" id="use8607" y="0" x="0" /> -<use xlink:href="#use8607" height="1250" width="1250" transform="translate(-12.00001,5.157472e-8)" id="use8609" y="0" x="0" /> -<use xlink:href="#use8598" height="1250" width="1250" transform="translate(5.073548e-8,9)" id="use9484" y="0" x="0" /> -<use xlink:href="#g10421" height="1250" width="1250" id="use10425" y="0" x="0" transform="translate(-0.0348992,-0.0284392)" /> -</g> -<g transform="translate(-163.3209,-167.1542)" id="object-group" inkscape:label="#selection_group"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient10394);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10382" width="8.9968081" height="7.0038061" x="355.8222" y="258.6503" /> -<rect style="color:#000000;fill:url(#linearGradient10396);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10398);stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10384" width="6.9948139" height="4.999979" x="356.8222" y="259.6496" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" id="rect10765" width="2.00001" height="1.999995" x="353.36319" y="252.1931" /> -<use xlink:href="#rect10765" height="1250" width="1250" transform="translate(13.959,-0.03898)" id="use8592" y="0" x="0" /> -<use xlink:href="#use8592" height="1250" width="1250" transform="translate(-14,14)" id="use8594" y="0" x="0" /> -<use xlink:href="#use8594" height="1250" width="1250" transform="translate(14,-5.001575e-6)" id="use8596" y="0" x="0" /> -<g transform="matrix(1,0,0,1.008019,335.3152,51.42912)" id="g10379" /> -<g id="g10421"> -<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:url(#linearGradient5819);stroke-width:1.37303555;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path10763" sodipodi:cx="105.5" sodipodi:cy="210.5" sodipodi:rx="5.5" sodipodi:ry="5.5" d="m 111,210.5 c 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 C 108.5376,205 111,207.4624 111,210.5 Z" transform="matrix(0.727881,0,0,0.728748,287.069,104.2892)" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient5821);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5823);stroke-width:1.82622421;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path10409" sodipodi:cx="105.5" sodipodi:cy="210.5" sodipodi:rx="5.5" sodipodi:ry="5.5" d="m 111,210.5 c 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 C 108.5376,205 111,207.4624 111,210.5 Z" transform="matrix(0.547085,0,0,0.548073,306.1137,142.2991)" /> -</g> -</g> -<g id="edit-duplicate" transform="translate(50.0399,-119.9404)" inkscape:label="#edit_duplicate"> -<g id="g6144"> -<rect y="205.4404" x="5.4601002" height="7.9962969" width="8.9968081" id="rect6120" style="color:#000000;fill:none;stroke:url(#linearGradient6124);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="206.4404" x="6.4601302" height="5.9933238" width="6.9948139" id="rect6122" style="color:#000000;fill:url(#linearGradient6126);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6128);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="208.4686" x="8.4778118" height="11.99031" width="11.99355" id="rect6134" style="color:#000000;fill:none;stroke:url(#linearGradient6138);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="209.4688" x="9.4778109" height="9.9715872" width="9.9823189" id="rect6136" style="color:#000000;fill:url(#linearGradient6140);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6142);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -</g> -<g transform="translate(-298.3567,-147.1852)" id="edit-clone" inkscape:label="#edit_clone"> -<g id="use6150" transform="translate(348.3966,47.24474)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5807);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5607" width="8.9968081" height="7.9962969" x="5.4601002" y="205.4404" /> -<rect style="color:#000000;fill:url(#linearGradient5809);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5811);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5609" width="6.9948139" height="5.9933238" x="6.4601302" y="206.4404" /> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5813);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5611" width="11.99355" height="11.99031" x="8.4778118" y="208.4686" /> -<rect style="color:#000000;fill:url(#linearGradient5815);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5817);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5613" width="9.9823189" height="9.9715872" x="9.4778109" y="209.4688" /> -</g> -<rect y="260.74731" x="359.909" height="4.0014329" width="5.9790282" id="rect10978" style="color:#000000;fill:url(#linearGradient11815);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6573);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 62.5,131.5 c 0,1 0,1 0,1" id="path6162" transform="translate(298.368,127.2036)" /> -<use xlink:href="#path6162" height="1250" width="1250" transform="translate(4,0)" id="use6164" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 63.5,130.5 2,0" id="path6167" transform="translate(298.368,127.2036)" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 360.8567,263.6852 0,-2 4,0" id="path5069" /> -</g> -<g transform="translate(-298.3836,-127.1851)" id="edit-clone-unlink" inkscape:label="#edit_unlink_clone"> -<use xlink:href="#use6150" height="1250" width="1250" id="use5649" y="0" x="0" transform="translate(0.0269001,-4.867687e-6)" /> -<rect y="260.7562" x="359.93729" height="4.0014329" width="5.9790282" id="rect6638" style="color:#000000;fill:url(#linearGradient6662);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6664);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#path6167" height="1250" width="1250" id="use6169" y="0" x="0" transform="translate(0.0156,0)" /> -<use xlink:href="#use6164" height="1250" width="1250" id="use6172" y="0" x="0" transform="translate(0.0156,0)" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 360.8836,263.6851 0,-2 4,0" id="path6005" /> -</g> -<g id="dialog-align-and-distribute" transform="matrix(0.997443,0,0,0.995359,234.9271,130.8863)" style="display:inline" inkscape:label="#object_align"> -<rect y="175" x="-45" height="16" width="16" id="rect11819" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g id="g6628" transform="matrix(1.249506,0,0,1.001998,-55.66558,-19.47412)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient6666);stroke-width:0.89694059;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6630" width="7.9986801" height="3.9950161" x="10.5083" y="205.55811" /> -<rect style="color:#000000;fill:url(#linearGradient6668);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6670);stroke-width:0.89694053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6632" width="6.4003801" height="1.965379" x="11.30936" y="206.5531" /> -</g> -<g style="display:inline" id="g6675" transform="matrix(1.000856,0,0,1.001998,-53.05186,-30.53742)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5801);stroke-width:1.00218284;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6677" width="5.4917002" height="3.9950161" x="10.5083" y="205.55811" /> -<rect style="color:#000000;fill:url(#linearGradient5803);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5805);stroke-width:1.00218272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6679" width="3.4925649" height="1.965379" x="11.50743" y="206.5582" /> -</g> -<g style="display:inline" id="g6690" transform="matrix(1.249506,0,0,0.994331,-55.62604,-22.92368)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient6696);stroke-width:0.90039229;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6692" width="10.39982" height="3.0269899" x="10.50829" y="205.5446" /> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient6700);stroke-width:0.90039212;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6694" width="8.7972002" height="1.002073" x="11.30861" y="206.55811" /> -</g> -<path style="fill:none;stroke:#c80000;stroke-width:1.00361276px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m -44.541,175.4264 0,15.03" id="path5730" /> -</g> -<g id="dialog-xml-editor" inkscape:label="#xml_editor"> -<g transform="matrix(1,0,0,0.996869,-60.05772,-144.2098)" id="g5620"> -<rect y="338.80829" x="115.5577" height="11.99987" width="14.99917" id="rect5622" style="color:#000000;fill:url(#linearGradient5684);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5624" style="color:#000000;fill:url(#linearGradient5686);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<path id="path14887" d="m 62,196 -4,3 4,3" style="fill:none;stroke:url(#linearGradient5696);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="ccc" /> -<path id="path14889" d="m 64,196 4,3 -4,3" style="fill:none;stroke:url(#linearGradient5692);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="ccc" /> -</g> -<g id="document-import" transform="translate(4.95909,-151.05)" inkscape:label="#file_import"> -<g id="g5577"> -<path sodipodi:nodetypes="cccccc" id="path4679" d="m 9.54091,196.55 7,0 4,4 0,11 -11,0 0,-15 z" style="color:#000000;fill:url(#linearGradient5795);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5797);stroke-width:1.00000107;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cccc" id="path4681" d="m 16.54091,196.55 4,4 -4,0 0,-4 z" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5799);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path id="path5602" d="m 10.54091,210.55 9,0 0,-9" style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -<path id="path4685" d="m 5.04091,204.05 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" sodipodi:nodetypes="cccccccc" /> -</g> -<g id="document-export" inkscape:label="#file_export"> -<use xlink:href="#g5577" height="1250" width="1250" id="use5582" y="0" x="0" transform="translate(0.959089,-131.05)" /> -<use xlink:href="#path4685" height="1250" width="1250" id="use5585" y="0" x="0" transform="translate(10.95909,-131.05)" /> -</g> -<g transform="translate(-54.95913,90.03912)" id="path-outset" inkscape:label="#outset_path"> -<path style="color:#000000;fill:#99b6d4;fill-opacity:0.58999999;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" d="m 290.5,170.5 0,-8 c 4,0 8,4 8,8 l -8,0 z" id="path10754" sodipodi:nodetypes="cccc" /> -<path style="fill:#99b7d4;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 290.5,155.5 0,7 c 4,0 8,4 8,8 l 7,0 c 0,-8 -7,-15 -15,-15 z" id="path10752" sodipodi:nodetypes="ccccc" /> -<path sodipodi:nodetypes="cc" id="path10741" d="m 290.5,155.5 c 8,0 15,7 15,15" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cc" id="path10743" d="m 290.5,162.5 c 4,0 8,4 8,8" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0" /> -<path id="path10745" d="m 299.5,161.5 -4,0 4,4 0,-4 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -<g transform="translate(-54.95913,110.039)" id="path-inset" inkscape:label="#inset_path"> -<use xlink:href="#path10752" height="1250" width="1250" id="use5684" y="0" x="0" transform="translate(-0.04087,-0.039)" /> -<use xlink:href="#path10754" height="1250" width="1250" id="use5692" y="0" x="0" transform="translate(-0.04087,-0.039)" /> -<path sodipodi:nodetypes="cc" id="path10769" d="m 290.5,155.5 c 8,0 15,7 15,15" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cc" id="path10771" d="m 290.5,162.5 c 4,0 8,4 8,8" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> -<path id="path10773" d="m 297.5,163.5 4,0 -4,-4 0,4 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -<g transform="translate(-54.95913,130.039)" id="path-offset-dynamic" inkscape:label="#dynamic_offset"> -<path style="fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 290.5,155.5 0,8 c 3,0 7,4 7,7 l 8,0 c 0,-8 -7,-15 -15,-15 z" id="path10779" sodipodi:nodetypes="ccccc" /> -<path sodipodi:nodetypes="cc" id="path10783" d="m 290.7799,163.2201 c 3,0 7,4 7,7" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0" /> -<path sodipodi:nodetypes="cc" id="path10787" d="m 290.5,159.5 c 5,0 11,5 11,11" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#rect4442" height="1250" width="1250" id="use5699" y="0" x="0" transform="translate(335.9487,-14.03415)" /> -<use xlink:href="#path10769" height="1250" width="1250" transform="translate(-0.04087,-0.039)" id="use5710" y="0" x="0" /> -<use xlink:href="#path10754" height="1250" width="1250" id="use5695" y="0" x="0" transform="translate(-0.04087,-0.039)" /> -</g> -<g id="path-offset-linked" inkscape:label="#linked_offset" transform="translate(-109.959,155.039)"> -<use xlink:href="#path10754" height="1250" width="1250" id="use5697" y="0" x="0" transform="translate(54.959,-5.039)" /> -<use xlink:href="#path10752" height="1250" width="1250" id="use5690" y="0" x="0" transform="translate(54.959,-5.039)" /> -<use xlink:href="#path10741" height="1250" width="1250" id="use5714" y="0" x="0" transform="translate(54.959,-5.039)" /> -<use xlink:href="#rect4442" height="1250" width="1250" id="use5702" y="0" x="0" transform="translate(393.9721,-22.02453)" /> -<use xlink:href="#path10771" height="1250" width="1250" transform="translate(54.959,-5.039)" id="use5717" y="0" x="0" /> -</g> -<g id="path-reverse" transform="translate(-149.459,195.539)" inkscape:label="#selection_reverse"> -<path style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 385,165 c 0,-5 2.5,-7.5 7.5,-7.5 4,0 7.5,-2.5 7.5,-7.5" id="path10967" sodipodi:nodetypes="csc" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 386.5,151.5 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 0,-1 z" id="path10971" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#rect4442" height="1250" width="1250" id="use5704" y="0" x="0" transform="translate(430.4721,-19.53415)" /> -<use xlink:href="#path10971" height="1250" width="1250" transform="matrix(-1,0,0,-1,784.959,314.961)" id="use3760" y="0" x="0" /> -</g> -<g id="path-break-apart" transform="translate(-79.87527,15.9917)" style="fill:#8ab3df;fill-opacity:0.58823529;stroke:#0000ff;stroke-opacity:1" inkscape:label="#selection_break"> -<path style="color:#000000;fill:#99b6d4;fill-opacity:0.7;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 235.5312,230.5312 0,9.9688 10.0938,0 0,-3.9688 c -0.1703,0.016 -0.3256,0.0313 -0.5,0.0313 -3.0445,0 -5.5313,-2.4773 -5.5313,-5.5313 0,-0.167 0.0168,-0.3367 0.0313,-0.5 l -4.0938,0 z" transform="translate(79.87527,-15.9917)" id="rect10834" /> -<path transform="matrix(1.103062,0,0,1.10649,-36.96118,-22.90202)" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" sodipodi:ry="5" sodipodi:rx="5" sodipodi:cy="215" sodipodi:cx="328" id="path5724" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -</g> -<g id="path-combine" transform="translate(-79.87527,-3.958721)" inkscape:label="#selection_combine"> -<path id="rect10868" style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 315.4161,214.5498 10.0839,0 0,9.948 -10.0839,0 0,-9.948 z m 15.0839,0.4827 c 0,3.0539 -2.4709,5.5324 -5.5153,5.5324 -3.0445,0 -5.5153,-2.4785 -5.5153,-5.5324 0,-3.054 2.4708,-5.5325 5.5153,-5.5325 3.0444,0 5.5153,2.4785 5.5153,5.5325 z" /> -</g> -<g id="path-union" transform="translate(-79.87527,-123.961)" style="fill:#8ea7c4;fill-opacity:1" inkscape:label="#union"> -<path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 225.0625,150.5 c -2.8791,0 -5.1577,2.2389 -5.4063,5.0625 l -4.1562,0 0,9.9375 10.0937,0 0,-4.0313 c 2.7853,-0.2784 5,-2.5707 5,-5.4375 0,-3.0539 -2.4867,-5.5312 -5.5312,-5.5312 z" transform="translate(99.91614,59)" id="rect10877" /> -</g> -<g id="path-difference" transform="translate(-79.87527,-103.961)" inkscape:label="#difference"> -<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" id="path10888" sodipodi:cx="229.5" sodipodi:cy="155.5" sodipodi:rx="5.5" sodipodi:ry="5.5" d="m 235,155.5 c 0,3.0376 -2.4624,5.5 -5.5,5.5 -3.0376,0 -5.5,-2.4624 -5.5,-5.5 0,-3.0376 2.4624,-5.5 5.5,-5.5 C 232.5376,150 235,152.4624 235,155.5 Z" transform="translate(95.41614,59.5)" /> -<path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" transform="translate(94.91614,59)" id="rect10884" /> -</g> -<g id="draw-eraser-delete-objects" transform="translate(167.14615,270.59555)" inkscape:label="#delete_object"> -<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect10920" width="16" height="16" x="314" y="210" /> -<path style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" transform="translate(94.91614,59)" id="path6882" /> -<use xlink:href="#g5771" height="12" width="12" id="use5777" y="0" x="0" transform="translate(-652,41)" /> -</g> -<g id="path-cut" transform="translate(-79.87527,-23.96088)" inkscape:label="#cut_path"> -<path transform="translate(95.41614,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" id="path10897" sodipodi:nodetypes="cscs" /> -<path style="color:#000000;fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" transform="translate(94.91614,59)" id="path10899" /> -</g> -<g id="path-intersection" transform="translate(-79.87523,-83.96088)" inkscape:label="#intersection"> -<rect style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0.5;marker:none;display:inline" id="rect6889" width="10" height="10" x="315.41611" y="214.5" /> -<path transform="translate(95.4161,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" id="path10903" sodipodi:nodetypes="cscs" /> -<path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 204.5937,175.5 c -0.0165,0.1736 -0.0937,0.3221 -0.0937,0.5 0,3.036 2.464,5.5 5.5,5.5 0.1779,0 0.3264,-0.0772 0.5,-0.0938 l 0,-5.9062 -5.9063,0 z" transform="translate(114.9161,39)" id="rect10907" /> -</g> -<g id="path-division" transform="translate(-79.87523,-43.96088)" inkscape:label="#division"> -<path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 235.5312,170.5312 0,9.9688 10.0938,0 -0.0938,-4.0625 c -0.1736,0.0165 -0.322,0.0937 -0.5,0.0937 -3.036,0 -5.4999,-2.4639 -5.5,-5.5 0,-0.1779 0.0773,-0.3263 0.0938,-0.5 l -4.0938,0 z" transform="translate(79.87523,43.96088)" id="rect10930" sodipodi:nodetypes="ccccsscc" /> -<path transform="translate(95.4161,59.5)" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" id="path10924" sodipodi:nodetypes="cscs" /> -<path style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 319.469,214.4609 c -0.0166,0.1736 -0.0938,0.322 -0.0938,0.5 0,3.036 2.464,5.5 5.5,5.5 0.178,0 0.3264,-0.0772 0.5,-0.0938 l 0,-5.9062 -5.9062,0 z" id="path5727" /> -</g> -<g id="path-exclusion" transform="translate(-79.87527,-63.95873)" inkscape:label="#exclusion"> -<path id="path10934" style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 315.4161,214.5498 10.0839,0 0,9.948 -10.0839,0 0,-9.948 z m 15.0839,0.4827 c 0,3.0539 -2.4709,5.5324 -5.5153,5.5324 -3.0445,0 -5.5153,-2.4785 -5.5153,-5.5324 0,-3.054 2.4708,-5.5325 5.5153,-5.5325 3.0444,0 5.5153,2.4785 5.5153,5.5325 z" /> -</g> -<g id="dialog-object-properties" inkscape:label="#dialog_item_properties" transform="translate(-139.9577,-49.99929)"> -<rect y="120.5063" x="330.4642" height="8.9929667" width="8.9967346" id="rect10430" style="color:#000000;fill:none;stroke:url(#linearGradient10434);stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="121.5137" x="331.46411" height="6.985559" width="6.994853" id="rect10432" style="color:#000000;fill:url(#linearGradient10436);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10438);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cccccccccccccsccccccccscc" id="path11005" d="m 343.459,125.4992 c 1.5,0 2,1 2,2 l 0,2.5 -1,0.5 -1,0 0,-2 -4,0 0,2 -1,0 -1,-0.5 0,-2.5 c 0,-1 0.5,-2 2,-2 l 0,-5 c -1.5,0 -2,-1 -2,-2 l 0,-2.5 1,-0.5 1,0 0,2 4,0 0,-2 1,0 1,0.5 0,2.5 c 0,0.5 -0.5,2 -2,2 l 0,5 z" style="fill:url(#linearGradient11021);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10450);stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 340.459,120.4992 0,4" id="path10442" sodipodi:nodetypes="cc" /> -<path style="fill:#646464;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 342.959,120.4992 -1,0" id="path10455" /> -<use xlink:href="#path10455" style="stroke:#646464" height="1250" width="1250" transform="translate(0,5)" id="use10459" y="0" x="0" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 340.459,126.4992 c -2,0 -2,0 -2,3" id="path10463" sodipodi:nodetypes="cc" /> -</g> -<g id="bitmap-trace" style="stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" inkscape:label="#selection_trace" transform="translate(-70.10913,-49.13897)"> -<path id="rect11025" style="color:#000000;fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:0;marker:none;display:inline" d="m 308.4986,119.5635 -2.9986,-0.0367 0,9.9744 10,0 0,-2.7702 m -7.0652,-5.4166 -0.9348,0 0,6.2117 6.1875,0 0,-0.9401 m 4.752,-6.0824 c 0,2.1757 -1.7649,3.9416 -3.9395,3.9416 -2.1745,0 -3.9394,-1.7659 -3.9394,-3.9416 0,-2.1759 1.7649,-3.9417 3.9394,-3.9417 2.1746,0 3.9395,1.7658 3.9395,3.9417 z m 2.0324,-0.004 c 0,3.2964 -2.6754,5.9719 -5.9719,5.9719 -3.2965,0 -5.9719,-2.6755 -5.9719,-5.9719 0,-3.2965 2.6754,-5.9719 5.9719,-5.9719 3.2965,0 5.9719,2.6754 5.9719,5.9719 z" /> -</g> -<g id="dialog-transform" transform="matrix(0.997361,0,0,0.997566,-193.9405,170.3188)" inkscape:label="#object_trans"> -<path sodipodi:nodetypes="cscs" id="path11132" d="m 394.9,119.4 c 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5 -3.036,0 -5.5,-2.464 -5.5,-5.5" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.20305181;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.2030517, 1.2030517;stroke-dashoffset:0.2406103;marker:none;display:inline" /> -<path id="path11140" d="m 394,119.50002 3,2.49998 0,-4.99996 -3,2.49998 z" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="cccc" /> -<g transform="matrix(1,0,0,1.008019,374.9507,-91.76403)" id="g7590"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient7596);stroke-width:0.99854738;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7592" width="7.9986801" height="7.9324479" x="10.5083" y="205.57651" /> -<rect style="color:#000000;fill:url(#linearGradient7598);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7600);stroke-width:0.99854869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7594" width="6.00072" height="5.9478478" x="11.50669" y="206.5649" /> -</g> -</g> -<g id="show-grid" inkscape:label="#grid" transform="translate(-304.959,5.0682694)"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" id="rect13175" width="16" height="16" x="405" y="220" /> -<rect y="220" x="405" height="1" width="1" id="rect13046" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,-0.039128)" id="use5896" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,-0.039128)" id="use5898" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,-0.039128)" id="use5900" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,-0.039128)" id="use5902" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,-0.039128)" id="use5904" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,2.960872)" id="use5906" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,2.960872)" id="use5908" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,2.960872)" id="use5910" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,2.960872)" id="use5912" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,2.960872)" id="use5914" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,2.960872)" id="use5916" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,5.960872)" id="use5918" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,5.960872)" id="use5920" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,5.960872)" id="use5922" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,5.960872)" id="use5924" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,5.960872)" id="use5926" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,5.960872)" id="use5928" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,8.960872)" id="use5930" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,8.960872)" id="use5932" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,8.960872)" id="use5934" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,8.960872)" id="use5936" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,8.960872)" id="use5938" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,8.960872)" id="use5940" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,11.96087)" id="use5942" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,11.96087)" id="use5944" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,11.96087)" id="use5946" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,11.96087)" id="use5948" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,11.96087)" id="use5950" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,11.96087)" id="use5952" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(-0.041,14.96087)" id="use5954" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(2.959,14.96087)" id="use5956" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(5.959,14.96087)" id="use5958" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(8.959,14.96087)" id="use5960" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(11.959,14.96087)" id="use5962" y="0" x="0" /> -<use xlink:href="#rect13046" height="1250" width="1250" transform="translate(14.959,14.96087)" id="use5964" y="0" x="0" /> -</g> -<g id="show-guides" transform="translate(-304.959,25.03912)" inkscape:label="#guides"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" id="rect13315" width="16" height="16" x="405" y="220" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 105.5,258.5 1,0" id="path5974" transform="translate(304.959,-25.03912)" /> -<use xlink:href="#path5974" height="1250" width="1250" transform="translate(3,0)" id="use5976" y="0" x="0" /> -<use xlink:href="#path5974" transform="translate(6,0)" height="1250" width="1250" id="use5978" y="0" x="0" /> -<use xlink:href="#path5974" height="1250" width="1250" transform="translate(9,0)" id="use5980" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 407.459,230.4609 0,-1" id="path5982" /> -<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-3)" id="use5984" y="0" x="0" /> -<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-6)" id="use5986" y="0" x="0" /> -<use xlink:href="#path5982" height="1250" width="1250" transform="translate(0,-9)" id="use5988" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 405.459,233.4609 3,0" id="path5990" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 407.459,235.4609 0,-3" id="path5992" sodipodi:nodetypes="cc" /> -</g> -<g id="window-next" transform="translate(-15.01687,-30.21803)" inkscape:label="#window_next"> -<use xlink:href="#g6011" height="1250" width="1250" id="use6015" y="0" x="0" transform="translate(-0.0408664,-0.0391171)" /> -<use xlink:href="#g6043" height="1250" width="1250" id="use6047" y="0" x="0" transform="translate(113.0168,89.22898)" /> -</g> -<g id="window-previous" transform="matrix(1,0,0,0.996869,-15.05696,-49.20811)" inkscape:label="#window_previous"> -<g id="g6011"> -<rect style="color:#000000;fill:url(#linearGradient5791);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect13417" width="14.99917" height="11.99987" x="115.5577" y="338.80829" /> -<rect style="color:#000000;fill:url(#linearGradient5793);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect13419" width="14.99819" height="3.011261" x="115.5588" y="335.7579" /> -</g> -<use xlink:href="#g6036" height="1250" width="1250" transform="translate(108.0577,89.23782)" id="use6040" y="0" x="0" /> -</g> -<g id="window-new" transform="translate(-10.00246,25.01596)" inkscape:label="#view_new"> -<rect y="303.45721" x="112.4954" height="10.03091" width="13.00704" id="rect13445" style="color:#000000;fill:url(#linearGradient6026);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="300.48401" x="112.4954" height="2.976774" width="13.00705" id="rect13447" style="color:#000000;fill:url(#linearGradient13477);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="309.32901" x="110.5057" height="6.1709552" width="9.9836187" id="rect13433" style="color:#000000;fill:url(#linearGradient6034);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="306.48792" x="110.5053" height="2.977982" width="9.9845524" id="rect13435" style="color:#000000;fill:url(#linearGradient13473);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="view-fullscreen" transform="translate(10.040878,-34.960836)" inkscape:label="#fullscreen"> -<rect y="306.4892" x="93.459122" height="5.9716392" width="8.0826044" id="rect13459" style="color:#000000;fill:url(#linearGradient6001);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="303.5228" x="93.459152" height="2.9342251" width="8.0843163" id="rect13461" style="color:#000000;fill:url(#linearGradient13469);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path13486" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 90,307.5 2,-1.5 0,3 -2,-1.5 z m 9,-5.5 -3,0 1.5,-2 1.5,2 z m 6,5.5 -2,-1.5 0,3 2,-1.5 z m -6,6.5 -3,0 1.5,2 1.5,-2 z" sodipodi:nodetypes="cccccccccccccccc" /> -</g> -<g id="show-dialogs" transform="translate(-10.00246,-95)" inkscape:label="#dialog_toggle"> -<g id="g14258"> -<path style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 117.5025,304.5 3,0 0.0153,-3.0287" id="rect14289" sodipodi:nodetypes="ccc" /> -<path style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.99999899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 111.5178,310.5154 8.9847,-0.0154 0,-6 -3,0" id="rect14287" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 117.5025,304.5 -6,0 0,6" id="path14327" sodipodi:nodetypes="ccc" /> -<path style="color:#000000;fill:url(#linearGradient14343);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 120.5025,301.5 -9,0 0,3 6,0" id="path14331" sodipodi:nodetypes="cccc" /> -<rect transform="translate(40.00246,0)" y="300" x="70" height="16" width="16" id="rect14256" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient14389);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5632);stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path14381" sodipodi:cx="82.5" sodipodi:cy="309.5" sodipodi:rx="3.5" sodipodi:ry="3.5" d="m 86,309.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 84.433,306 86,307.567 86,309.5 Z" transform="translate(39.50246,0.5)" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 116.5025,315.5 3,-3" id="path14391" sodipodi:nodetypes="cc" /> -</g> -<path sodipodi:nodetypes="cc" id="path14405" d="m 121.5025,300.5 -11,11" style="fill:none;stroke:#c80000;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> -</g> -<g id="paint-solid" transform="translate(304.95552,253.97978)" inkscape:label="#fill_solid"> -<rect inkscape:label="#ccc" y="66" x="671" height="17.9991" width="18.024401" id="ccc" style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> -<use xlink:href="#rect4381" height="1250" width="1250" id="use5847" y="0" x="0" transform="translate(0.045091,0.0202183)" /> -</g> -<g id="paint-gradient-linear" inkscape:label="#fill_gradient" transform="translate(314.95552,254.01174)"> -<rect y="65.9991" x="691.02441" height="18" width="17.99999" id="aaa" style="color:#000000;fill:url(#linearGradient18352);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> -<use xlink:href="#rect4381" height="1250" width="1250" id="use5844" y="0" x="0" transform="translate(20.04509,-0.0117415)" /> -</g> -<g id="paint-gradient-radial" transform="translate(324.95552,253.97978)" inkscape:r_cx="true" inkscape:r_cy="true" inkscape:label="#fill_radial"> -<rect y="65.9991" x="711" height="18" width="18.024401" id="sss" style="color:#000000;fill:url(#radialGradient4374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" inkscape:r_cx="true" inkscape:r_cy="true" /> -<use xlink:href="#rect4381" height="1250" width="1250" id="use5840" y="0" x="0" transform="translate(40.04509,0.0202183)" /> -</g> -<g transform="translate(44.5,189.75)" id="stroke-join-miter" inkscape:label="#join_miter"> -<path style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 900.04,181.75 -0.04,-23 23,0 0,17.5 -6,0 0,5.5" id="path4023" sodipodi:nodetypes="cccccc" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" id="rect4025" width="24" height="24" x="899.5" y="158.25" /> -<path id="path4027" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 900.04,181.75 -0.04,-23 23,0 m -6,23 0,-6 6,0" /> -<rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:9;marker:none;display:inline" id="use5673" width="2" height="2" x="920.5246" y="167.2491" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-3.999997,0)" id="use5689" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-7.999997,0)" id="use5691" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,0)" id="use5693" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,4)" id="use5696" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,8)" id="use5698" y="0" x="0" /> -<use xlink:href="#use5673" height="1250" width="1250" transform="translate(-12,12)" id="use5700" y="0" x="0" /> -</g> -<g id="layer-new" transform="translate(-820,-145)" inkscape:label="#new_layer"> -<path sodipodi:nodetypes="ccccc" id="rect4045" d="m 969.5,185.5 11,0 -4,-5 -11,0 4,5 z" style="opacity:0.48093842;color:#000000;fill:url(#linearGradient5693);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5695);stroke-width:0.99994743;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="ccccc" id="path4802" d="m 969.5,182.5 11,0 -4,-5 -11,0 4,5 z" style="color:#000000;fill:url(#linearGradient5787);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5789);stroke-width:0.99994743;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path4048" d="m 967,172 0,-2 2,0 0,2 2,0 0,2 -2,0 0,2 -2,0 0,-2 -2,0 0,-2 2,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccccc" /> -</g> -<g id="layer-rename" transform="matrix(1,0,0,0.994505,-839.959,-133.8815)" inkscape:label="#rename_layer"> -<use xlink:href="#path4802" height="1250" width="1250" id="use5771" y="0" x="0" transform="matrix(1,0,0,1.004834,19.959,12.07373)" /> -<g transform="matrix(0,-1,1,0,809,1179)" id="g5621"> -<path transform="translate(20,8)" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 965.5,174.5 4,2 0,-4 -4,2 z" id="path5597" /> -<path style="fill:url(#linearGradient5644);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 989.5731,180.459 7.5362,0 0,4 -7.5362,0 c 0.5,-1 0.5,-3 0,-4 z" id="path5599" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:url(#linearGradient5658);stroke-width:1.00275898px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 998.0682,180.459 -9.5,0 -3.0682,2.041 3,2 9.6142,-0.041 c 0.6968,-1.102 0.6872,-2.9601 -0.046,-4 z" id="path5591" sodipodi:nodetypes="cccccc" /> -<path style="fill:none;stroke:url(#linearGradient5669);stroke-width:1.00275862px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 989.0707,184.459 c 0.5,-0.6892 0.5,-3 0,-4" id="path5593" sodipodi:nodetypes="cc" /> -<path style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 996.6069,180.459 1.5073,0 c 0.5024,1 0.5024,3 0,4 l -1.5073,0 0,-4 z" id="path5611" sodipodi:nodetypes="ccccc" /> -</g> -<rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect6047" width="1" height="1.0048341" x="989.95898" y="180.8858" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1.00275886px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 990.459,183.3979 0,5.0242" id="path6049" /> -</g> -<g id="layer-raise" transform="translate(-819.959,-24.96088)" inkscape:label="#raise_layer"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1.39999998;marker:none;display:inline" id="rect12856" width="16.000019" height="16" x="964.95898" y="168.96091" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5780" y="0" x="0" transform="translate(-0.0410002,0.96088)" /> -<path sodipodi:nodetypes="ccccc" id="path5705" d="m 969.5,180.5 11,0 -4,-5 -11,0 4,5 z" style="color:#000000;fill:url(#linearGradient5782);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5784);stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,176 2.5,3 -2,0 0,3 -1,1 0,-4 -2,0 2.5,-3 z" id="path7204" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5778" y="0" x="0" transform="translate(-0.0410002,-7.03912)" /> -</g> -<g id="layer-bottom" transform="translate(-819.959,35.03912)" inkscape:label="#layer_to_bottom"> -<use xlink:href="#rect12856" height="1250" width="1250" id="use13605" y="0" x="0" /> -<use xlink:href="#path5705" height="1250" width="1250" id="use5769" y="0" x="0" transform="translate(-0.0409998,2.96088)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5798" y="0" x="0" transform="translate(-0.0409998,-4.03912)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5796" y="0" x="0" transform="translate(-0.0410002,-7.03912)" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,183 2.5,-3 -2,0 0,-7 -1,-1 0,8 -2,0 2.5,3 z" id="path7975" sodipodi:nodetypes="cccccccc" /> -</g> -<g id="layer-top" transform="translate(-819.959,15.03912)" inkscape:label="#layer_to_top"> -<use xlink:href="#rect12856" height="1250" width="1250" id="use13602" y="0" x="0" transform="translate(1.5625e-5,3.535156e-6)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5794" y="0" x="0" transform="translate(-0.0410002,0.96088)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5792" y="0" x="0" transform="translate(-0.0410002,-2.03912)" /> -<use xlink:href="#path5705" height="1250" width="1250" id="use5767" y="0" x="0" transform="translate(-0.0410002,-5.03912)" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,171 2.5,3 -2,0 0,8 -1,1 0,-9 -2,0 2.5,-3 z" id="path7995" sodipodi:nodetypes="cccccccc" /> -</g> -<g id="layer-delete" transform="translate(-819.959,55.03912)" inkscape:label="#delete_layer"> -<use xlink:href="#path4802" height="1250" width="1250" id="use5800" y="0" x="0" transform="translate(-0.0409998,2.96088)" /> -<use xlink:href="#path11129" height="1250" width="1250" id="use5864" y="0" x="0" transform="translate(-0.0410002,-3.03912)" /> -<g id="g5771" transform="translate(-0.541,0.46088)"> -<path sodipodi:nodetypes="ccccccccc" style="fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:#aa0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 972,171 1,-1 7,0 1,1 0,7 -1,1 -7,0 -1,-1 0,-7 z" id="path8011" /> -<path sodipodi:nodetypes="cc" id="path8023" d="m 974,171.85 5,5" style="fill:none;stroke:#ffffff;stroke-width:1.70000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path sodipodi:nodetypes="cc" id="path8025" d="m 979,171.85 -5,5" style="fill:none;stroke:#ffffff;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -</g> -<g id="layer-duplicate" transform="translate(-819.96 95.039)" inkscape:label="#duplicate_layer"> -<rect id="rect6972" height="16" width="16" y="171.96" x="964.96" fill="none" /> -<use id="use6122" transform="translate(-0.041 2.9609)" height="1250" width="1250" xlink:href="#path4802" y="0" x="0" /> -<use id="use6123" transform="translate(-0.041 1.961)" height="1250" width="1250" xlink:href="#path5705" y="0" x="0" /> -</g> -<g id="selection-move-to-layer-above" transform="matrix(0.997444,0,0,1,-817.4926,-59)" inkscape:label="#move_selection_above"> -<use xlink:href="#path4802" height="1250" width="1250" id="use5774" y="0" x="0" transform="translate(-0.0410002,-11.03912)" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect9602" width="16" height="16" x="965" y="164" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,167 2.5,3 -2,0 0,5 -1,1 0,-6 -2,0 2.5,-3 z" id="path9533" sodipodi:nodetypes="cccccccc" /> -<g id="g5834"> -<path id="path9593" d="m 965.5,173.5 10,0 4,4 -10,0 -4,-4 z" style="fill:none;stroke:#ffffff;stroke-width:1.00128043px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<rect y="173" x="965" height="1" width="1" id="rect9565" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#rect9565" x="0" y="0" id="use5802" transform="translate(1.959,1.96088)" width="1250" height="1250" /> -<use xlink:href="#use5802" x="0" y="0" id="use5804" transform="translate(2,2)" width="1250" height="1250" /> -<use xlink:href="#use5804" x="0" y="0" id="use5806" transform="translate(2,0)" width="1250" height="1250" /> -<use xlink:href="#use5806" x="0" y="0" id="use5808" transform="translate(2,0)" width="1250" height="1250" /> -<use xlink:href="#use5808" x="0" y="0" id="use5810" transform="translate(2,0)" width="1250" height="1250" /> -<use xlink:href="#use5810" x="0" y="0" id="use5812" transform="translate(2,0)" width="1250" height="1250" /> -<use xlink:href="#use5812" x="0" y="0" id="use5815" transform="translate(2,0)" width="1250" height="1250" /> -<use xlink:href="#use5815" x="0" y="0" id="use5817" transform="translate(-2,-2)" width="1250" height="1250" /> -<rect style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="use5821" width="1" height="1" x="970.95898" y="172.96091" /> -<use xlink:href="#use5821" x="0" y="0" id="use5823" transform="translate(-2,0)" width="1250" height="1250" /> -<use xlink:href="#use5823" x="0" y="0" id="use5825" transform="translate(-2,0)" width="1250" height="1250" /> -<use xlink:href="#use5817" x="0" y="0" id="use5829" transform="translate(-2,-2)" width="1250" height="1250" /> -<use xlink:href="#use5829" x="0" y="0" id="use5832" transform="translate(-2,0)" width="1250" height="1250" /> -</g> -</g> -<g id="selection-move-to-layer-below" transform="matrix(0.997444,0,0,1,-817.4926,-39)" inkscape:label="#move_selection_below"> -<use xlink:href="#path4802" height="1250" width="1250" id="use5776" y="0" x="0" transform="translate(-0.0409998,-5.03912)" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect10345" width="16" height="16" x="965" y="164" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,177 -2.5,-3 2,0 0,-5 1,-1 0,6 2,0 -2.5,3 z" id="path10353" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#g5834" height="1250" width="1250" id="use5851" y="0" x="0" transform="translate(-0.041,-6.999996)" /> -</g> -<g id="layer-previous" transform="matrix(0.999888,0,0,0.999919,-819.8907,-104.985)" inkscape:label="#switch_to_layer_above"> -<path sodipodi:nodetypes="ccccc" id="path11129" d="m 969.5,185.5 11,0 -4,-5 -11,0 4,5 z" style="opacity:0.48093842;color:#000000;fill:url(#linearGradient5770);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5772);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="ccccc" id="path11131" d="m 969.5,175.5 11,0 -4,-5 -11,0 4,5 z" style="color:#000000;fill:url(#linearGradient5775);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5780);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 973.49999,176 971,179 l 2,0 0,5 1,-1 -10e-6,-4 2.00001,0 -2.50001,-3 z" id="path11143" sodipodi:nodetypes="cccccccc" /> -</g> -<g id="layer-next" transform="translate(-819.959,-84.96088)" inkscape:label="#switch_to_layer_below"> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 973.5,180 2.5,-3 -2,0 0,-5 -1,1 0,4 -2,0 2.5,3 z" id="path11158" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path11131" height="1250" width="1250" id="use5858" y="0" x="0" transform="translate(-0.0410002,9.96088)" /> -<use xlink:href="#path11129" height="1250" width="1250" id="use5861" y="0" x="0" transform="translate(-0.0409998,-10.03912)" /> -</g> -<g id="selection-make-bitmap-copy" transform="matrix(-1,0,0,1,321.0144,75.92699)" inkscape:label="#selection_bitmap"> -<path style="color:#000000;fill:url(#linearGradient11197);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11286);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 250.4841,75.57301 c 4.5303,-1.51926 3.5303,-3.01926 4.0303,-4.01926 l 4,0 c 0.25,0.73709 1.3311,2.71442 2.5,2.97418 l 4.5,1 0,9.04508 -14,-0.01926 -1,-1 -0.0303,-7.98074 z" id="rect11168" sodipodi:nodetypes="cccsccccc" /> -<path transform="matrix(0.938759,0,0,0.938488,13.33429,5.86879)" d="m 262,78.5 c 0,1.933 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567,-3.5 3.5,-3.5 C 260.433,75 262,76.567 262,78.5 Z" sodipodi:ry="3.5" sodipodi:rx="3.5" sodipodi:cy="78.5" sodipodi:cx="258.5" id="path11178" style="color:#000000;fill:url(#linearGradient6187);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.36206675;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<rect style="color:#000000;fill:url(#linearGradient11210);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11294);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect11199" width="4" height="9" x="261.5144" y="75.573013" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11302);stroke-width:0.9999997px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 254.4841,71.58841 0,-2.01542 4,0 0,2.01542 -4,0 z" id="path11225" /> -<path style="fill:none;stroke:#b1b1b1;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 258.9841,75.32301 c -1,-1 -4.5,-1 -5.5,0" id="path11254" sodipodi:nodetypes="cc" /> -<path sodipodi:type="arc" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.74699998;marker:none;display:inline" id="path3614" sodipodi:cx="64" sodipodi:cy="135" sodipodi:rx="1" sodipodi:ry="1" d="m 65,135 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 C 64.55228,134 65,134.4477 65,135 Z" transform="matrix(-1,0,0,1,321.0144,-55.92699)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#ffffff;fill-opacity:0.44725743;fill-rule:evenodd;stroke:none;stroke-width:0.74699998;marker:none;display:inline" id="path4498" sodipodi:cx="64" sodipodi:cy="135" sodipodi:rx="1" sodipodi:ry="1" d="m 65,135 c 0,0.5523 -0.44772,1 -1,1 -0.55228,0 -1,-0.4477 -1,-1 0,-0.5523 0.44772,-1 1,-1 C 64.55228,134 65,134.4477 65,135 Z" transform="matrix(-1.5,0,0,1.5,351.5144,-122.927)" /> -</g> -<g id="document-cleanup" transform="translate(-254.959,-4.930791)" inkscape:label="#file_vacuum"> -<path sodipodi:nodetypes="cssc" id="path11319" d="m 268.5,100 c -1,0 -3,0.3049 -3,-2 0,-3 3.6283,-2.5 6,-2.5 3,0 3,-2.5 3,-2.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -<path transform="matrix(0.119829,0,0,0.105878,237.4457,94.48869)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11327" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8.87804985;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<path sodipodi:nodetypes="ccccs" id="rect11314" d="m 270,98.98237 c 7.036,-3.93642 9.5,0.5 9.5,0.5 l 0,5.00003 -11,0.0176 c 0,0 -3,-3 1.5,-5.51763 z" style="color:#000000;fill:url(#linearGradient11335);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11359);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -<path transform="matrix(0.401393,0,0,0.385965,168.1187,65.35082)" d="m 280,97.5 c 0,3.5899 -2.7982,6.5 -6.25,6.5 -3.4518,0 -6.25,-2.9101 -6.25,-6.5 0,-3.58985 2.7982,-6.5 6.25,-6.5 C 277.2018,91 280,93.91015 280,97.5 Z" sodipodi:ry="6.5" sodipodi:rx="6.25" sodipodi:cy="97.5" sodipodi:cx="273.75" id="path11312" style="color:#000000;fill:url(#radialGradient11343);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.54062963;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<rect y="90.469917" x="270.45499" height="2.0342929" width="8.0898838" id="rect11317" style="color:#000000;fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11367);stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 273.459,91.43079 2,0" id="path5624" /> -</g> -<g transform="translate(-298.3149,-87.1388)" id="edit-select-all" inkscape:label="#selection_select_all"> -<use xlink:href="#g6068" height="1250" width="1250" transform="translate(-0.0124923,-0.0145053)" id="use6072" y="0" x="0" /> -<use xlink:href="#g10421" height="1250" width="1250" transform="translate(-1.042199,0.956231)" id="use6075" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 55.5,185.5 1,0" id="path6078" transform="translate(298.3149,67.13877)" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(3,0)" id="use6080" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(6,0)" id="use6082" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(9,0)" id="use6084" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(12,0)" id="use6086" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(2,15)" id="use6088" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(5,15)" id="use6090" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(8,15)" id="use6092" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(11,15)" id="use6094" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(14,15)" id="use6096" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 55.5,187.5 0,1" id="path6100" transform="translate(298.3149,67.13877)" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,3)" id="use6102" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,6)" id="use6104" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,9)" id="use6106" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(0,12)" id="use6108" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,10)" id="use6110" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,7)" id="use6112" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,4)" id="use6114" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,1)" id="use6116" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(15,-2)" id="use6118" y="0" x="0" /> -</g> -<g id="document-open-recent" transform="translate(-260,4.914011)" inkscape:label="#file_open_recent"> -<use xlink:href="#rect6425" height="1250" width="1250" transform="translate(4,4)" id="use5610" y="0" x="0" /> -<use xlink:href="#rect6425" height="1250" width="1250" transform="translate(2,2)" id="use5608" y="0" x="0" /> -<path style="color:#000000;fill:url(#linearGradient5766);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5768);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 273.5,21.543 5,0 0,10 -8,0 0,-7 3,-3 z" id="rect6425" sodipodi:nodetypes="cccccc" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient5612);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5620);stroke-width:0.71197993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path6398" sodipodi:cx="281" sodipodi:cy="23" sodipodi:rx="3" sodipodi:ry="3" d="m 284,23 c 0,1.65685 -1.3431,3 -3,3 -1.6569,0 -3,-1.34315 -3,-3 0,-1.65685 1.3431,-3 3,-3 C 282.6569,20 284,21.34315 284,23 Z" transform="matrix(1.331759,0,0,1.327869,-92.69296,-5.997991)" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" d="m 281,22 1,-1 0,4 -1,0 0,-3 z" id="rect4108" sodipodi:nodetypes="ccccc" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" d="m 280,23.9955 2,0 0,1 -3,0 1,-1 z" id="rect4110" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 270.5,24.543 3,0 0,-3 -3,3 z" id="path4704" /> -</g> -<g id="format-text-direction-horizontal" style="stroke:none" inkscape:label="#writing_mode_lr" transform="translate(-225.5246,375.0009)"> -<g id="use5602" style="stroke:none" transform="translate(-0.4754,-9e-4)"> -<path sodipodi:nodetypes="cccccccc" id="path3731" d="m 841,26 22,0 1,1 0,20 -2,2 -20,0 -1,-1 0,-22 z" style="color:#000000;fill:#000000;fill-opacity:0.06666673;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1;marker:none;display:inline" d="m 840,26 1,0 0,20 -1,0 0,-20 z" id="path3733" /> -<rect y="26" x="861" height="20" width="1" id="rect3735" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect transform="matrix(0,-1,1,0,0,0)" y="841" x="-26" height="20" width="1" id="rect3737" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect transform="matrix(0,-1,1,0,0,0)" y="841" x="-47" height="20" width="1" id="rect3739" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="26" x="841" height="20" width="20" id="rect3741" style="color:#000000;fill:url(#linearGradient3749);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 842,46 -1,0 0,-20 20,0 0,1 -19,0 0,19 z" id="path3743" /> -<path style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 843.5,34.75 0,-4 c 0,-3 5,-3 5,0 l 0,4" id="path3745" sodipodi:nodetypes="cccc" /> -<path style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 843.5,32 5.1429,0" id="path3747" /> -</g> -<path style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 859.5492,30.4982 -3.0246,-2.4991 0,2 -7,0 0,1 7,0 0,2 3.0246,-2.5009 z" id="path6495" sodipodi:nodetypes="cccccccc" /> -<path style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 859.5492,36.4982 -3.0246,-2.4991 0,2 -15,0 0,1 15,0 0,2 3.0246,-2.5009 z" id="path6497" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path6497" height="1250" width="1250" transform="translate(0,6)" id="use5502" y="0" x="0" /> -</g> -<g id="format-text-direction-vertical" style="stroke:none" inkscape:label="#writing_mode_tb" transform="translate(-256,375)"> -<path sodipodi:nodetypes="cccccccc" id="path6536" d="m 841,26 22,0 1,1 0,20 -2,2 -20,0 -1,-1 0,-22 z" style="color:#000000;fill:#000000;fill-opacity:0.06666673;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1;marker:none;display:inline" d="m 840,26 1,0 0,20 -1,0 0,-20 z" id="rect6538" /> -<rect y="26" x="861" height="20" width="1" id="rect6540" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect transform="matrix(0,-1,1,0,0,0)" y="841" x="-26" height="20" width="1" id="rect6542" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect transform="matrix(0,-1,1,0,0,0)" y="841" x="-47" height="20" width="1" id="rect6544" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="26" x="841" height="20" width="20" id="rect6546" style="color:#000000;fill:url(#linearGradient3755);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 842,46 -1,0 0,-20 20,0 0,1 -19,0 0,19 z" id="path6565" /> -<path style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 859.5246,34.7491 0,-4 c 0,-3 -5,-3 -5,0 l 0,4" id="path6554" sodipodi:nodetypes="cccc" /> -<path style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 859.6675,31.9991 -5.1429,0" id="path6556" /> -<path style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 857.4754,45.0009 855,42 l 2,0 0,-7 1,0 0,7 2,0 -2.5246,3.0009 z" id="path6548" sodipodi:nodetypes="cccccccc" /> -<path style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="M 851.4754,45 849,42 l 2,0 0,-15 1,0 0,15 2,0 -2.5246,3 z" id="path6550" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path6550" height="1250" width="1250" transform="translate(-5.9754,0)" id="use5600" y="0" x="0" /> -</g> -<g id="align-horizontal-right-to-anchor" transform="matrix(1,0,0,0.998006,1017.9947,-110.67412)" style="display:inline" inkscape:label="#al_left_out"> -<g id="g5060"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5531);stroke-width:1.00099874;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5048" width="6.0088992" height="5.011291" x="-27.50193" y="175.5202" /> -<rect style="color:#000000;fill:url(#linearGradient5533);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5535);stroke-width:1.00099921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5050" width="4.016531" height="3.0097871" x="-26.50193" y="176.5235" /> -</g> -<g id="g4929" transform="matrix(1.091916,0,0,1,2.542347,0)"> -<rect y="192.55969" x="-38.489891" height="5.011148" width="10.98825" id="rect4911" style="color:#000000;fill:none;stroke:url(#linearGradient5537);stroke-width:0.95794243;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="193.56081" x="-37.604919" height="3.0064349" width="9.2271681" id="rect4913" style="color:#000000;fill:url(#linearGradient5539);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5541);stroke-width:0.95794243;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="g4889"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5543);stroke-width:1.00099862;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4879" width="16.99984" height="7.017632" x="-44.487461" y="180.54359" /> -<rect style="color:#000000;fill:url(#linearGradient5545);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5547);stroke-width:1.00099921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4881" width="14.99677" height="5.0217919" x="-43.485401" y="181.53729" /> -</g> -<rect y="175" x="-45" height="16" width="16" id="rect5118" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g id="g4893" transform="matrix(0.414065,0,0,0.857422,-24.08423,33.74415)"> -<rect y="175.86909" x="-25.11964" height="7.017632" width="16.911819" id="rect4895" style="color:#000000;fill:none;stroke:url(#linearGradient5549);stroke-width:1.67997444;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="177.0416" x="-22.70454" height="4.678422" width="12.16012" id="rect4897" style="color:#000000;fill:url(#linearGradient5551);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5553);stroke-width:1.6799736;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<path style="fill:none;stroke:#c80000;stroke-width:1.00099885;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" d="m -27.45876,175.5271 0,23.0451" id="path5120" sodipodi:nodetypes="cc" /> -<g transform="matrix(0.414065,0,0,0.857422,-17.08423,41.76522)" id="g4909" /> -</g> -<g id="align-horizontal-left" transform="matrix(1,0,0,0.998006,1047.9847,-110.64892)" style="display:inline" inkscape:label="#al_left_in"> -<g style="display:inline" id="g4936" transform="translate(60.01222,-11.05555)"> -<rect y="187.554" x="-104.4881" height="7.017632" width="22.00094" id="rect4938" style="color:#000000;fill:none;stroke:url(#linearGradient5525);stroke-width:1.00099838;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="188.54761" x="-103.4882" height="5.0217919" width="20.00112" id="rect4940" style="color:#000000;fill:url(#linearGradient5527);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5529);stroke-width:1.00099957;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<use xlink:href="#g4893" height="1250" width="1250" id="use4957" y="0" x="0" style="display:inline" transform="translate(-9.990004,-5.030154)" /> -<use xlink:href="#g4929" height="1250" width="1250" id="use4933" y="0" x="0" style="display:inline" transform="translate(-4.988258,-5.035654)" /> -<rect y="175" x="-45" height="16" width="16" id="rect5154" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m -44,196.54298 3,-2.50498 0,2.00405 11,-5e-5 0,1.0019 -11,2e-5 0,2.00398 -3,-2.50492 z" id="path6192" sodipodi:nodetypes="cccccccc" /> -<use xlink:href="#path5120" height="1250" width="1250" id="use5039" y="0" x="0" style="display:inline" transform="translate(-17.01664,-0.0261695)" /> -</g> -<g id="align-horizontal-center" transform="matrix(1,0,0,0.998006,1078.0014,-110.64902)" style="display:inline" inkscape:label="#al_center_hor"> -<use xlink:href="#use4933" height="1250" width="1250" id="use4973" y="0" x="0" style="display:inline" transform="translate(4.9833,-0.0010592)" /> -<use xlink:href="#g4936" height="1250" width="1250" id="use4970" y="0" x="0" style="display:inline" transform="translate(-0.0162524,0.0037401)" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4315" width="24" height="24" x="1080" y="165" transform="matrix(1,0,0,1.001998,-1125,9.670333)" /> -<rect y="175" x="-45" height="16" width="16" id="rect5252" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="175" x="-44.969021" height="16" width="16" id="rect6200" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m -34,196.51098 -3,2.50502 0,-2.00403 -6,0.0319 0,-1.0019 6,-0.032 0,-2.00398 3,2.50498 z" id="path6242" sodipodi:nodetypes="cccccccc" /> -<g transform="matrix(0.743616,0,0,1,-8.870407,-12.0507)" id="use4976"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5519);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4980" width="10.77151" height="5.011148" x="-38.503159" y="192.55969" /> -<rect style="color:#000000;fill:url(#linearGradient5521);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5523);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4982" width="8.1205044" height="3.0064349" x="-37.19693" y="193.56081" /> -</g> -<use xlink:href="#path5120" height="1250" width="1250" id="use5042" y="0" x="0" style="display:inline" transform="translate(-6.033343,-0.0260693)" /> -<use xlink:href="#path6242" height="1250" width="1250" transform="matrix(-1,0,0,1,-66.9921,0.03112)" id="use5624" y="0" x="0" /> -</g> -<g id="align-horizontal-right" transform="matrix(1,0,0,0.998006,1110.9537,-109.64892)" style="display:inline" inkscape:label="#al_right_in"> -<rect y="173.998" x="-47.969021" height="16" width="16" id="rect4279" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#use4933" height="1250" width="1250" id="use5021" y="0" x="0" style="display:inline" transform="translate(8.031,-1.001998)" /> -<use xlink:href="#g4936" height="1250" width="1250" id="use5025" y="0" x="0" style="display:inline" transform="translate(-1.971593,-1.007084)" /> -<use xlink:href="#use4957" height="1250" width="1250" id="use5023" y="0" x="0" style="display:inline" transform="translate(13.031,-1.001998)" /> -<use xlink:href="#path5120" height="1250" width="1250" id="use5044" y="0" x="0" style="display:inline" transform="translate(3.014357,-1.028167)" /> -<use xlink:href="#path6192" height="1250" width="1250" id="use5621" y="0" x="0" style="display:inline" transform="matrix(-1,0,0,1,-68.9444,-1.002948)" /> -</g> -<g id="align-horizontal-left-to-anchor" inkscape:label="#al_right_out" transform="translate(-32.053171,-131.04252)"> -<use xlink:href="#g5060" height="1250" width="1250" id="use5064" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1153.055,20.37222)" /> -<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5073" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#g4889" height="1250" width="1250" id="use5030" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1176.045,20.37348)" /> -<use xlink:href="#g4893" height="1250" width="1250" id="use5032" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1166.045,20.37348)" /> -<use xlink:href="#g4929" height="1250" width="1250" id="use5034" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1171.048,20.36799)" /> -<use xlink:href="#path5120" height="1250" width="1250" id="use5046" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1159.021,20.36748)" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1003.0579,-78.634026)" id="align-vertical-bottom-to-anchor" inkscape:label="#al_top_out"> -<use xlink:href="#g4889" height="1250" width="1250" id="use5485" y="0" x="0" style="display:inline" transform="matrix(0,1.001998,0.998006,0,-198.7358,218.0576)" /> -<use xlink:href="#g4893" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-205.7188,218.0554)" id="use5503" y="0" x="0" style="display:inline" /> -<rect y="6.0480151" x="172.9911" height="15.9681" width="16.031969" id="rect4502" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,1,-1,0,0,0)" /> -<use xlink:href="#g4929" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-220.7255,218.0571)" id="use5559" y="0" x="0" style="display:inline" /> -<use xlink:href="#g5060" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-186.7188,218.063)" id="use5562" y="0" x="0" style="display:inline" /> -<use xlink:href="#path5120" height="1250" width="1250" id="use5618" y="0" x="0" style="display:inline" transform="matrix(0,1.001998,-0.998006,0,168.6276,218.0287)" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1095.9006,-75.696826)" id="align-vertical-center" inkscape:label="#al_center_ver"> -<rect y="38.915932" x="170.05479" height="15.9681" width="16.031969" id="rect4582" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,1,-1,0,0,0)" /> -<rect y="38.915932" x="170.0858" height="15.9681" width="16.031969" id="rect4584" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,1,-1,0,0,0)" /> -<use xlink:href="#path6242" height="1250" width="1250" transform="matrix(0,1.001998,-0.998006,0,135.7278,215.127)" id="use5762" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5762" height="1250" width="1250" transform="matrix(1,0,0,-1,4.205594e-5,363.1201)" id="use5766" y="0" x="0" /> -<use xlink:href="#use4970" height="1250" width="1250" id="use5797" y="0" x="0" style="display:inline" transform="matrix(0,1.001998,0.998006,0,-223.5451,215.119)" /> -<use xlink:href="#use4976" height="1250" width="1250" id="use5799" y="0" x="0" style="display:inline" transform="matrix(0,1.001998,0.998006,0,-229.5403,215.1289)" /> -<use xlink:href="#use4973" height="1250" width="1250" id="use5801" y="0" x="0" style="display:inline" transform="matrix(0,1.001998,0.998006,0,-243.5403,215.1173)" /> -<use xlink:href="#use5618" height="1250" width="1250" id="use5725" y="0" x="0" style="display:inline" transform="translate(-32.84268,-8.95505)" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1142.8937,-75.605726)" id="align-vertical-bottom" inkscape:label="#al_bottom_in"> -<use xlink:href="#use5626" height="1250" width="1250" id="use5807" y="0" x="0" transform="matrix(1,0,0,-1.001998,-1109.954,391.4175)" /> -<use xlink:href="#use5712" height="1250" width="1250" id="use5809" y="0" x="0" transform="matrix(1,0,0,1.001998,-1108.955,-16.45778)" /> -<use xlink:href="#use5675" height="1250" width="1250" transform="matrix(1,0,0,1.001998,-1108.95,-26.47689)" id="use5813" y="0" x="0" /> -<use xlink:href="#use5716" height="1250" width="1250" id="use5811" y="0" x="0" transform="matrix(1,0,0,1.001998,-1108.949,-11.44863)" /> -<use xlink:href="#use5719" height="1250" width="1250" id="use5827" y="0" x="0" transform="matrix(1,0,0,1.001998,-1109.954,-4.43204)" /> -</g> -<g id="align-vertical-top-to-anchor" transform="translate(3.4940291,-92.489326)" inkscape:label="#al_bottom_out"> -<rect y="-1113.49" x="186.5164" height="15.9681" width="16" id="rect4694" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,1,-1,0,0,0)" /> -<use xlink:href="#use5559" height="1250" width="1250" id="use5835" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1119.564,14.85359)" /> -<use xlink:href="#use5485" height="1250" width="1250" id="use5837" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1119.567,19.85517)" /> -<use xlink:href="#use5503" height="1250" width="1250" id="use5839" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1119.559,9.852706)" /> -<use xlink:href="#use5562" height="1250" width="1250" id="use5841" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1119.563,-3.144651)" /> -<use xlink:href="#use5618" height="1250" width="1250" id="use5843" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1119.565,2.855306)" /> -</g> -<g id="distribute-horizontal-left" transform="matrix(1,0,0,0.998006,1014.9695,-40.611135)" style="display:inline" inkscape:label="#distribute_left"> -<rect y="175" x="-45" height="16" width="16" id="rect5678" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g id="g5853"> -<use xlink:href="#path5265" x="0" y="0" id="use5269" transform="translate(9,-8.462612e-4)" width="1250" height="1250" /> -<use xlink:href="#path5265" x="0" y="0" id="use5274" transform="translate(18,-8.462612e-4)" width="1250" height="1250" /> -<path sodipodi:nodetypes="cc" id="path5265" d="m -44.4626,175.469 0,12.0232" style="fill:none;stroke:#c80000;stroke-width:1.00099885;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> -<path sodipodi:nodetypes="ccccccccccc" id="path5722" d="m -41.9626,178.0051 -2,-1.53492 2,-1.47098 0,0.96998 3.9626,8e-4 0,-1.00198 2,1.50298 -2,1.50302 0,-1.00202 -3.9626,-8e-4 0,1.03392 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<use xlink:href="#path5722" x="0" y="0" id="use5276" transform="translate(9,-5.433975e-6)" width="1250" height="1250" /> -</g> -<g transform="matrix(0,0.745102,0.998006,0,-218.6383,211.1611)" id="use5317" style="display:inline"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5774);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5770" width="10.77151" height="5.011148" x="-38.503159" y="192.55969" /> -<rect style="color:#000000;fill:url(#linearGradient5776);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5778);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5772" width="8.1205044" height="3.0064349" x="-37.19693" y="193.56081" /> -</g> -<g transform="matrix(0,1.576101,0.998006,0,-236.6395,242.165)" id="use5322" style="display:inline"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5579);stroke-width:0.79813403;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5326" width="10.77151" height="5.011148" x="-38.503159" y="192.55969" /> -<rect style="color:#000000;fill:url(#linearGradient5581);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5583);stroke-width:0.79813391;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5328" width="9.534461" height="3.006026" x="-37.87537" y="193.5616" /> -</g> -<g id="g5427" transform="matrix(0.974035,0,0,1,-0.895642,0)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5585);stroke-width:1.01425469;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5724" width="3.084933" height="9.0357723" x="-35.48843" y="183.485" /> -<path sodipodi:nodetypes="ccc" id="path5415" d="m -33.4626,185.4882 0,6.0119 -1,0" style="fill:none;stroke:#a4b8d2;stroke-width:1.01425254px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="ccc" id="path5417" d="m -34.4626,190.4982 0,-6.012 1,0" style="fill:none;stroke:#e2e8f0;stroke-width:1.01425254px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g id="distribute-horizontal-center" transform="matrix(1,0,0,0.998006,1048.9361,-40.639598)" style="display:inline" inkscape:label="#distribute_hcentre"> -<g id="use5367" transform="matrix(0,1.094098,0.818085,0,-177.9701,226.5979)" style="display:inline"> -<rect y="186.38969" x="-38.491581" height="5.002912" width="11.03482" id="rect5376" style="color:#000000;fill:none;stroke:url(#linearGradient5561);stroke-width:1.05804992;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="187.5994" x="-37.617401" height="2.583389" width="9.2428188" id="rect5378" style="color:#000000;fill:url(#linearGradient5563);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5565);stroke-width:0.95794278;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g style="display:inline" id="g5355" transform="matrix(0,1.001998,0.998006,0,-217.691,227.0587)"> -<rect y="173.5676" x="-44.48312" height="6.0217342" width="9.0228138" id="rect5357" style="color:#000000;fill:none;stroke:url(#linearGradient5567);stroke-width:1.00099826;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="174.5696" x="-43.48764" height="4.045835" width="7.0318828" id="rect5359" style="color:#000000;fill:url(#linearGradient5569);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5571);stroke-width:1.00099969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g transform="matrix(0,1.001998,0.998006,0,-215.6813,226.0567)" id="use5339" style="display:inline"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5573);stroke-width:1.0009985;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5345" width="16.99984" height="6.0217342" x="-44.487461" y="180.6097" /> -<rect style="color:#000000;fill:url(#linearGradient5575);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5577);stroke-width:1.00099945;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5347" width="14.99677" height="4.045835" x="-43.485401" y="181.6118" /> -</g> -<rect y="175" x="-45" height="16" width="16" id="rect5736" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#g5853" height="1250" width="1250" id="use5860" y="0" x="0" style="display:inline" transform="translate(3.0309,0)" /> -</g> -<g id="distribute-horizontal-right" transform="matrix(1,0,0,0.998006,1082.9726,-40.648958)" style="display:inline" inkscape:label="#distribute_right"> -<use xlink:href="#g5853" height="1250" width="1250" id="use5863" y="0" x="0" style="display:inline" transform="translate(4.9936,0.0378755)" /> -<rect y="175.006" x="-45" height="16" width="16" id="rect5180" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g transform="matrix(0,0.745102,0.998006,0,-218.6447,211.1989)" id="use5320" style="display:inline"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5786);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5782" width="10.77151" height="5.011148" x="-38.503159" y="192.55969" /> -<rect style="color:#000000;fill:url(#linearGradient5788);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5790);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5784" width="8.1205044" height="3.0064349" x="-37.19693" y="193.56081" /> -</g> -<use xlink:href="#use5322" height="1250" width="1250" id="use5336" y="0" x="0" style="display:inline" transform="translate(-0.005212,0.0379148)" /> -<use xlink:href="#g5427" height="1250" width="1250" id="use5432" y="0" x="0" style="display:inline" transform="translate(1.993612,0.0370281)" /> -</g> -<g id="distribute-horizontal-gaps" transform="matrix(1,0,0,0.998006,1116.97,-40.592638)" style="display:inline" inkscape:label="#distribute_hdist"> -<g id="g5885"> -<use xlink:href="#use5274" transform="translate(-15,-0.0213989)" style="display:inline" x="0" y="0" id="use5475" width="1250" height="1250" /> -<use xlink:href="#use5274" transform="translate(-8,-0.0222444)" style="display:inline" x="0" y="0" id="use5479" width="1250" height="1250" /> -<use xlink:href="#use5274" transform="translate(-5,-0.0213989)" style="display:inline" x="0" y="0" id="use5481" width="1250" height="1250" /> -<use xlink:href="#use5274" transform="translate(2,-0.0222444)" style="display:inline" x="0" y="0" id="use5483" width="1250" height="1250" /> -<path sodipodi:nodetypes="ccccccccccc" id="path5816" d="m -39,177.974 -2,-1.55273 2,-1.45327 -0.015,0.95233 2,0 0,-1.00203 2,1.50297 -2,1.50303 0,-1.00209 -2,0 0.015,1.05179 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<use xlink:href="#path5816" x="0" y="0" id="use5473" transform="translate(10.0524,-0.0230858)" width="1250" height="1250" /> -</g> -<rect y="175" x="-45" height="16" width="16" id="rect5806" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#g5427" height="1250" width="1250" id="use5435" y="0" x="0" style="display:inline" transform="translate(1.000012,-0.0230918)" /> -<g id="use5437" transform="matrix(1,0,0,1.662154,-8.963779,-123.5118)"> -<rect y="183.485" x="-35.498821" height="9.0361071" width="3.0207911" id="rect5452" style="color:#000000;fill:none;stroke:url(#linearGradient5557);stroke-width:0.77642179;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#a4b8d2;stroke-width:0.7764219;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m -33.48843,184.6843 0,7.234 -1,0" id="path5454" sodipodi:nodetypes="ccc" /> -<path style="fill:none;stroke:#e2e8f0;stroke-width:0.7764219;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m -34.48843,191.3155 0,-7.234 1,0" id="path5456" sodipodi:nodetypes="ccc" /> -</g> -<g style="display:inline" id="g5462" transform="matrix(0.994095,0,0,1.884852,10.82365,-164.3818)"> -<rect y="183.485" x="-35.498821" height="9.0361071" width="3.0207911" id="rect5464" style="color:#000000;fill:none;stroke:url(#linearGradient5559);stroke-width:0.73127508;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#a4b8d2;stroke-width:0.73127532;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m -33.48693,184.5482 -0.0059,7.4425 -1,0" id="path5467" sodipodi:nodetypes="ccc" /> -<path style="fill:none;stroke:#e2e8f0;stroke-width:0.73127532;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m -34.49287,191.4591 0,-7.4425 1,0" id="path5469" sodipodi:nodetypes="ccc" /> -</g> -</g> -<g id="distribute-vertical-bottom" inkscape:label="#distribute_bottom" transform="translate(-36.99845,-60.954178)"> -<use xlink:href="#g5853" height="1250" width="1250" id="use5865" y="0" x="0" style="display:inline" transform="matrix(0,-1,0.998006,0,832.369,202.0097)" /> -<rect y="1007.11" x="-247.05119" height="15.9681" width="16" id="rect4248" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<use xlink:href="#use4976" height="1250" width="1250" id="use5909" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1051.989,43.32326)" /> -<use xlink:href="#g5427" height="1250" width="1250" transform="matrix(0,1,0.998006,0,832.3504,269.9301)" id="use5913" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5322" height="1250" width="1250" transform="matrix(0,1,0.998006,0,832.4259,285.9361)" id="use5917" y="0" x="0" style="display:inline" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1032.5443,-16.572396)" id="distribute-vertical-center" inkscape:label="#distribute_vcentre"> -<use xlink:href="#g5355" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-203.1702,241.0142)" id="use5921" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5339" height="1250" width="1250" transform="matrix(0,1.001998,-0.998006,0,176.0711,222.9501)" id="use5925" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5367" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-203.1639,204.97)" id="use5929" y="0" x="0" style="display:inline" /> -<rect y="-28.51869" x="-203.0105" height="15.9681" width="16.031969" id="rect4296" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<use xlink:href="#use5865" height="1250" width="1250" id="use5880" y="0" x="0" transform="matrix(1,0,0,1.001998,-1035.535,-47.49321)" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1100.9684,-5.5886422)" id="distribute-vertical-top" inkscape:label="#distribute_top"> -<use xlink:href="#use5865" height="1250" width="1250" id="use5883" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.956,-60.49864)" /> -<rect y="-62.953541" x="-191.98441" height="15.9681" width="16.031969" id="rect4341" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<use xlink:href="#use5909" height="1250" width="1250" id="use5933" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.978,-55.48746)" /> -<use xlink:href="#use5913" height="1250" width="1250" id="use5935" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.96,-57.49265)" /> -<use xlink:href="#use5917" height="1250" width="1250" id="use5937" y="0" x="0" transform="matrix(1,0,0,1.001998,-1069.978,-55.48865)" /> -</g> -<g style="display:inline" transform="matrix(1,0,0,0.998006,1120.0197,-5.5695378)" id="distribute-vertical-gaps" inkscape:label="#distribute_vdist"> -<use xlink:href="#g5885" height="1250" width="1250" id="use5893" y="0" x="0" style="display:inline" transform="matrix(0,-1.001998,0.998006,0,-222.5775,146.9011)" /> -<rect y="-47.924419" x="-191.94141" height="15.9681" width="16.031969" id="rect4388" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<use xlink:href="#use5913" height="1250" width="1250" id="use5943" y="0" x="0" transform="matrix(1,0,0,1.001998,-1055.001,-56.51422)" /> -<use xlink:href="#g5462" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-222.6272,192.921)" id="use5947" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5437" height="1250" width="1250" transform="matrix(0,1.001998,0.998006,0,-222.6377,232.9772)" id="use5951" y="0" x="0" style="display:inline" /> -</g> -<g id="align-vertical-top" transform="translate(-27.060371,-103.02892)" inkscape:label="#al_top_in"> -<rect transform="matrix(0,1,-1,0,0,0)" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4546" width="16" height="15.9681" x="197.03101" y="-1054.045" /> -<use xlink:href="#path6192" height="1250" width="1250" id="use5626" y="0" x="0" style="display:inline" transform="matrix(0,1,-0.998006,0,1228.721,242.0301)" /> -<use xlink:href="#g4936" height="1250" width="1250" transform="matrix(0,1,0.998006,0,869.4195,242.0059)" id="use5675" y="0" x="0" style="display:inline" /> -<use xlink:href="#use5559" height="1250" width="1250" id="use5712" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1065.119,19.39495)" /> -<use xlink:href="#use5503" height="1250" width="1250" id="use5716" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1065.113,14.3949)" /> -<use xlink:href="#use5618" height="1250" width="1250" id="use5719" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1060.118,7.394906)" /> -</g> -<g transform="matrix(-1,0,0,1,1096.1733,82.037531)" id="distribute-vertical-baseline" inkscape:label="#distribute_baselines_vert"> -<use xlink:href="#g5896" height="1250" width="1250" id="use5901" y="0" x="0" transform="matrix(0,1,-1,0,70.1351,113.7903)" /> -<rect transform="matrix(0,1,1,0,0,0)" y="-33.803001" x="79.963608" height="24" width="24" id="rect4421" style="font-size:12px;fill:none;stroke:none" /> -<use xlink:href="#text5563" height="1250" width="1250" id="use5966" y="0" x="0" transform="matrix(1,0,0,0.997921,-10.75241,14.3406)" /> -<use xlink:href="#text3357" height="1250" width="1250" id="use5968" y="0" x="0" transform="matrix(1,0,0,0.997921,-9.52204,-9.516171)" /> -</g> -<g transform="matrix(-1,0,0,1,1096.1742,54.038278)" id="distribute-horizontal-baseline" inkscape:label="#distribute_baselines_hor"> -<rect transform="matrix(0,1,1,0,0,0)" y="-33.803001" x="79.963608" height="24" width="24" id="rect4447" style="font-size:12px;fill:none;stroke:none" /> -<g id="g5896"> -<use xlink:href="#path5120" transform="matrix(-1,0,0,0.998006,-37.78636,-94.71436)" style="display:inline" x="0" y="0" id="use5305" width="1250" height="1250" /> -<use xlink:href="#path5120" transform="matrix(-1,0,0,0.998006,-51.78636,-94.71352)" style="display:inline" x="0" y="0" id="use5308" width="1250" height="1250" /> -<path sodipodi:nodetypes="ccccccccccc" id="path4463" d="m -10.803,82.463616 -2.99999,-2.500006 0,2.000006 -7.00001,0 0,-2.000006 -3,2.500006 3,2.499994 0,-1.999994 7.00001,0 0,1.999994 2.99999,-2.499994 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> -</g> -<use xlink:href="#text5563" height="1250" width="1250" id="use5955" y="0" x="0" transform="matrix(1,0,0,0.997921,1.24759,8.430751)" /> -<use xlink:href="#text3357" height="1250" width="1250" transform="matrix(1,0,0,0.997921,-11.02206,-2.05535)" id="use5961" y="0" x="0" /> -</g> -<g id="align-horizontal-node" inkscape:label="#node_valign" transform="translate(-205,77.992833)"> -<path style="fill:none;stroke:#c80000;stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" d="m 1186.5,140.5008 0,22.9992 0,0" id="path5262" /> -<path style="fill:none;stroke:#969696;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m 1175.5,140.5 c 3,3.5 18.975,1.5988 17.5,7.5 -1,4 -17,1 -17.5,8.5 -0.366,5.4878 17,2.5 23,6.5" id="path5249" sodipodi:nodetypes="cssc" /> -<rect y="141.5" x="1184.5" height="4.0071669" width="4.0662079" id="rect5251" style="color:#000000;fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#rect5251" height="1250" width="1250" transform="translate(0.0188999,6.991948)" id="use5438" y="0" x="0" /> -<use xlink:href="#rect5251" height="1250" width="1250" transform="translate(-0.0473082,16.99195)" id="use5440" y="0" x="0" /> -</g> -<g id="align-vertical-node" transform="translate(-171.0218,77.983746)" inkscape:label="#node_halign"> -<path style="fill:none;stroke:#c80000;stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" d="m 1175.498,152.4972 22.999,0 0,0" id="path5318" /> -<rect y="1180.4969" x="-163.9971" height="16" width="16" id="rect5320" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<path style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m 1175.497,163.4972 c 3.5,-3 1.599,-18.9753 7.5,-17.5 4,1 1,17 8.5,17.5 5.488,0.3658 2.5,-17 6.5,-23" id="path5322" sodipodi:nodetypes="cssc" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5452" y="0" x="0" transform="translate(-7.9782,9.009087)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5455" y="0" x="0" transform="translate(-0.9782,9.001915)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5457" y="0" x="0" transform="translate(8.955592,9.001915)" /> -</g> -<g id="distribute-vertical-node" transform="translate(-137.02312,78.026257)" inkscape:label="#node_vdistribute"> -<use xlink:href="#path5465" height="1250" width="1250" transform="translate(0,18)" id="use5469" y="0" x="0" /> -<use xlink:href="#path5465" height="1250" width="1250" transform="translate(0,9)" id="use5467" y="0" x="0" /> -<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 643.5,697.5 -13,0" id="path5465" transform="translate(555.0237,-555.0009)" /> -<rect y="145.5" x="1175" height="16" width="16" id="rect5334" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m 1178.5,140.5 c 5.5,3.5 13.713,2.6493 12.5,7.5 -1,4 -11.769,4.0765 -13,9 -1,4 5,1 9.5,6.5" id="path5336" sodipodi:nodetypes="cssc" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 1195.967,145.0749 1.532,-2 1.468,2 -0.968,0 0,4 1,0 -1.5,2 -1.5,-2 1,0 0,-4 -1.032,0 z" id="path5344" sodipodi:nodetypes="ccccccccccc" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5442" y="0" x="0" transform="translate(-2.9763,-1.008052)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5445" y="0" x="0" transform="translate(0.0236999,7.991948)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5447" y="0" x="0" transform="translate(-2.9763,16.99195)" /> -<use xlink:href="#path5344" height="1250" width="1250" transform="translate(0.0246,8.92419)" id="use5471" y="0" x="0" /> -</g> -<g id="distribute-horizontal-node" transform="translate(-103.01032,77.974192)" inkscape:label="#node_hdistribute"> -<use xlink:href="#path5476" height="1250" width="1250" transform="translate(9,0)" id="use5478" y="0" x="0" /> -<use xlink:href="#path5476" height="1250" width="1250" transform="translate(18,0)" id="use5482" y="0" x="0" /> -<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 1177.523,140.4996 0,13" id="path5476" /> -<rect y="1180.5" x="-163.9996" height="16" width="16" id="rect5356" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" transform="matrix(0,-1,1,0,0,0)" /> -<path style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m 1175.499,160.4995 c 3.5,-5.5 2.65,-13.7127 7.5,-12.5 4,1 4.077,11.7692 9,13 4,1 1,-5 6.5,-9.5" id="path5358" sodipodi:nodetypes="cssc" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 1180.074,143.0324 -2,-1.5319 2,-1.4681 0,0.9681 4,0 0,-1 2,1.5 -2,1.5 0,-1 -4,0 0,1.0319 z" id="path5366" sodipodi:nodetypes="ccccccccccc" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5459" y="0" x="0" transform="translate(-8.910592,12.00679)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5461" y="0" x="0" transform="translate(0.0894077,8.999615)" /> -<use xlink:href="#rect5251" height="1250" width="1250" id="use5463" y="0" x="0" transform="translate(9.0232,11.99962)" /> -<use xlink:href="#path5366" height="1250" width="1250" transform="translate(8.9487,-0.03275)" id="use5484" y="0" x="0" /> -</g> -<g id="distribute-randomize" inkscape:label="#distribute_randomize" transform="translate(-155.03707,-5.0424354)"> -<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5814" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3660" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1153.039,22.37222)" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3663" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1165.03,20.37352)" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3665" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1170.039,27.37352)" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3668" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1162.03,30.37222)" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3670" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1163.03,37.37222)" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3672" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1153.03,38.37222)" /> -</g> -<g id="distribute-unclump" inkscape:label="#unclump" transform="translate(-121.03693,-5.0669102)"> -<rect y="195.0446" x="1125.038" height="15.9681" width="16" id="rect5912" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#c80000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" d="m 1141.013,201.0194 -5,1.5" id="path5975" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#c80000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" d="m 1141.013,213.0194 -5,-3" id="path5977" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" d="m 1145.513,212.0194 0,-6" id="path5979" sodipodi:nodetypes="cc" /> -<use xlink:href="#g5060" height="1250" width="1250" id="use3674" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,1170.03,38.37352)" /> -<g id="g3698" transform="translate(6.999947,0.0231631)"> -<rect y="197.5437" x="1135.537" height="6.97679" width="6.0088992" id="rect3680" style="color:#000000;fill:none;stroke:url(#linearGradient3702);stroke-width:1.00000048;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="198.5437" x="1136.537" height="4.9738441" width="4.016531" id="rect3682" style="color:#000000;fill:url(#linearGradient3704);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3706);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="g3728" transform="translate(-0.0110398,-7.976791)"> -<rect y="210.5437" x="1125.548" height="6.97679" width="8.9883881" id="rect3710" style="color:#000000;fill:none;stroke:url(#linearGradient3732);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="211.5437" x="1126.557" height="4.9738441" width="6.9608388" id="rect3712" style="color:#000000;fill:url(#linearGradient3734);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3736);stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -</g> -<g id="xml-node-delete" inkscape:label="#delete_xml_node" transform="translate(132.01118,21.031297)"> -<use xlink:href="#g5715" height="1250" width="1250" id="use5729" y="0" x="0" transform="translate(0.0067,-0.0161)" /> -<use xlink:href="#g5707" height="1250" width="1250" id="use5744" y="0" x="0" transform="translate(0.0067,-0.0161)" /> -<use xlink:href="#g5719" height="1250" width="1250" id="use5763" y="0" x="0" transform="translate(0.0067,-0.0161)" /> -<use xlink:href="#g5771" height="1250" width="1250" id="use7401" y="0" x="0" transform="translate(-56.9523,-150.977)" /> -</g> -<g id="xml-element-new" transform="translate(72.017883,21.015197)" inkscape:label="#add_xml_element_node"> -<g id="g5715"> -<path sodipodi:nodetypes="cccccccc" id="path5401" d="m 923,6 1,0 0,21 -2,2 -21,0 0,-1 22,0 0,-22 z" style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" /> -<rect style="color:#000000;fill:url(#linearGradient5826);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5403" width="22.038759" height="22.03599" x="900.48212" y="5.4848032" /> -</g> -<g id="g5707"> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 909.5,11 0,5" id="path5405" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 912.5,11.97746 c 1,-0.5 3,-1 3,1 0,1 0,2 0,3" id="path5407" sodipodi:nodetypes="csc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 917.5,7.470786 c 0,3.500004 0,6.000004 0,7.000004 0,1.15244 1,1 2,1" id="path5410" sodipodi:nodetypes="csc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 909.5,11.97746 c 1,-0.5 3,-1 3,1 0,1 0,2 0,3" id="path5412" sodipodi:nodetypes="csc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 903,10.97079 5,5" id="path5414" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 908,10.97079 -5,5" id="path5416" /> -</g> -<g id="g5719"> -<path id="path5418" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 906.5,24.5 -3,-3 3,-3 m 3,6 3,-3 -3,-3" /> -</g> -<g id="g5684"> -<path sodipodi:nodetypes="ccccc" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5828);stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 914.5068,19.4991 8.9409,0 0,8.94182 -8.9409,0 0,-8.94182 z" id="path5430" /> -<path sodipodi:nodetypes="cc" id="path5424" d="m 919.0067,20.9991 0,6" style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path sodipodi:nodetypes="cc" id="path5426" d="m 922.0067,23.9991 -6,0" style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -</g> -<g id="xml-text-new" transform="translate(101.99324,21.0009)" inkscape:label="#add_xml_text_node"> -<use xlink:href="#g5715" height="1250" width="1250" id="use5723" y="0" x="0" transform="translate(0.0246443,0.0142967)" /> -<path id="path5438" d="m 906.4821,10.47669 c -0.008,2.01618 0,3.00811 0,3.50811 0,0.51492 0.5,0.50406 1,0.50812" style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="csc" /> -<path sodipodi:nodetypes="csssssc" id="path5442" d="m 909.4821,7.484803 c 0,3.499997 0,4.999997 0,5.999997 0,0.5 0,1 0.5,1 0.8427,0 2,0 2.5,0 0.5,0 1,0 1,-2 0,-2 -0.5,-2 -1,-2 -0.5,0 -1,0 -3,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cssssc" id="path5464" d="m 919.5148,11.45983 c -0.0327,-0.97503 -0.5327,-0.97503 -1.0327,-0.97503 -0.4521,0 -1.5,0 -2,0 -0.5,0 -1,0 -1,2 0,2 0.5,2 1,2 0.5,0 2,0 3,-0.0069" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path sodipodi:nodetypes="csssc" id="path5466" d="m 906.4821,10.4848 c -0.5,0 -3,0 -3,0 -0.5,0 -1,0 -1,2 0,2 0.4884,2.01814 1,2 0.4884,-0.01731 2,0 3,0.0098" style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<use xlink:href="#g5684" height="1250" width="1250" id="use5694" y="0" x="0" transform="translate(-1.000894e-4,0)" /> -<use xlink:href="#g5719" height="1250" width="1250" id="use5760" y="0" x="0" transform="translate(0.0067,-9e-4)" /> -</g> -<g id="xml-node-duplicate" transform="translate(161.5,21.008273)" inkscape:label="#duplicate_xml_node"> -<path style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" d="m 916.5,5.984803 1,0 0,13.999997 -2,2 -14,0 0,-1 15,0 0,-14.999997 z" id="path5508" sodipodi:nodetypes="cccccccc" /> -<rect y="5.4917269" x="901" height="14.99308" width="15.03714" id="rect5504" style="opacity:0.59999988;color:#000000;fill:url(#linearGradient5506);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" d="m 922.5,11.9848 1,0 0,15 -2,2 -15,0 0,-1 16,0 0,-16 z" id="path5470" sodipodi:nodetypes="cccccccc" /> -<rect y="11.51622" x="906.03052" height="15.93487" width="15.95595" id="rect5472" style="color:#000000;fill:url(#linearGradient5494);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<use xlink:href="#g5719" height="1250" width="1250" id="use5765" y="0" x="0" transform="translate(4.5246,-5.0161)" /> -<use xlink:href="#g5684" height="1250" width="1250" id="use5768" y="0" x="0" transform="translate(-0.4822,-0.0151991)" /> -</g> -<g id="xml-attribute-delete" inkscape:label="#delete_xml_attribute" transform="translate(192.01118,21.031297)"> -<use xlink:href="#g5715" height="1250" width="1250" id="use5739" y="0" x="0" transform="translate(0.0067,-0.0161)" /> -<rect style="opacity:0.31671549;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5560" width="6.9850459" height="2.1097219" x="910.57129" y="20.502451" /> -<path style="opacity:0.31671549;fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 904.5,21.50244 5.1429,0" id="path5554" /> -<path style="opacity:0.31671549;fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 904.5,18.43078 0,2.14733" id="path5562" sodipodi:nodetypes="cc" /> -<use xlink:href="#g5771" height="1250" width="1250" id="use5783" y="0" x="0" transform="translate(-56.9523,-150.977)" /> -<path id="rect5540" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999821;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 903.4995,7.482439 1.9844,0 0,2.012415 -1.9844,0 0,-2.012415 z m 1.0718,2.502366 0,7.415045 m 0,-3.89741 6,0 m 0.0149,-1.01764 6.9851,0 0,2.03528 -6.9851,0 0,-2.03528 z m -6.0795,4.9991 6,0 m 0,-1.03528 6.9851,0 0,2.03528 -6.9851,0 0,-2.03528 z" /> -</g> -<g id="edit-paste-in-place" inkscape:label="#selection_paste_in_place" transform="translate(-429.9517,-29.93562)"> -<g transform="translate(-0.0483,-0.054332)" id="g6202"> -<rect rx="0.88388348" ry="0.88388348" style="color:#000000;fill:url(#linearGradient5687);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6204" width="12" height="13.99545" x="485.5" y="76.504547" /> -<path id="path6207" d="m 486.4517,89.43563 0,-12 10,0" style="fill:none;stroke:#e6bc00;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="csssc" id="path6209" d="m 495,79 c 0,1.10678 -1.6161,0.5 -3,0.5 -1.3839,0 -3,0.60678 -3,-0.5 0,-1.10678 1.6131,-3.51004 2.997,-3.51004 1.3838,0 3.003,2.40326 3.003,3.51004 z" style="color:#000000;fill:url(#linearGradient5689);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path6211" d="m 494.0715,77.5 -2.1429,0" style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -<rect y="81.427872" x="490.5" height="9.0077372" width="10" id="rect5705" style="color:#000000;fill:url(#linearGradient5761);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5598);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" ry="0.97227168" rx="0.9722718" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 495,108 -1,0 0,-1 -1,0 0,-1 2,0 -0.0483,-3.0543 1,0 L 496,106 l 2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,-1 z" id="path5745" transform="translate(0,-20.01004)" sodipodi:nodetypes="ccccccccccccccccc" /> -</g> -<g id="edit-paste-style" inkscape:label="#selection_paste_style" transform="translate(-429.9489,-9.94566)"> -<use xlink:href="#g6202" height="1250" width="1250" id="use6217" y="0" x="0" transform="translate(0,-4.298023e-6)" /> -<rect y="80.491547" x="490.45401" height="9.9440575" width="9.9948826" id="rect6220" style="color:#000000;fill:none;stroke:url(#linearGradient6224);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="81.435631" x="491.4559" height="7.9956861" width="7.9959192" id="rect6222" style="color:#000000;fill:url(#linearGradient6226);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6228);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="help-keyborad-shortcuts" inkscape:label="#help_keys" transform="translate(-209.9825,-0.409827)"> -<path style="fill:none;stroke:url(#linearGradient4736);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 540.4854,35.90983 3,0 0,5 -3,0" id="path4652" /> -<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 546.4854,38.90983 0,-2 9,0" id="path4666" /> -<path style="fill:none;stroke:url(#linearGradient4738);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 555.4854,35.90983 -10,0 0,5 10,0" id="path4662" /> -<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 540.4854,39.90983 2,0 0,-2" id="path4654" /> -<use xlink:href="#g4625" height="1250" width="1250" transform="translate(6.997002,-0.005239)" id="use4630" y="0" x="0" /> -<rect style="color:#000000;fill:url(#linearGradient4740);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" id="rect5937" width="9" height="2" x="546.98541" y="37.409828" /> -<rect style="color:#000000;fill:url(#linearGradient4742);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" id="rect5943" width="2" height="2" x="539.98541" y="37.409828" /> -<g id="g4625" transform="translate(0.005938,0.510486)"> -<rect y="28.394091" x="540.47662" height="5.0104852" width="5.0059562" id="rect6038" style="color:#000000;fill:url(#linearGradient5682);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5685);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path4611" d="m 541.4795,32.39934 3,0 0,-2" style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 544.4795,29.39934 -3,0 0,2" id="path4613" /> -</g> -<path style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 541.4854,37.90983 8,0 0,-6" id="path4632" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 540.4854,26.90983 2,0 0,-1" id="path4634" /> -<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 540.4854,25.90983 1,0" id="path4636" /> -<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 545.4854,25.90983 3,0" id="path4640" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 544.4854,25.90983 0,1 5,0 0,-1" id="path4642" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 551.4854,25.90983 0,1 4,0" id="path4644" /> -<use xlink:href="#path4640" height="1250" width="1250" transform="translate(7,0)" id="use4648" y="0" x="0" /> -<path style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 540.4854,36.90983 2,0" id="path4650" /> -<path style="fill:none;stroke:url(#linearGradient4748);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" d="m 555.4854,28.90983 -1,0 0,5 1,0" id="path4656" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 555.4854,29.90983 0,2" id="path4658" /> -<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 555.4854,32.40983 0,1" id="path4660" /> -<path style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 546.4854,39.90983 9,0" id="path4664" /> -</g> -<g id="help-contents" inkscape:label="#help_tutorials" transform="translate(-234.959,20.03912)"> -<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.98227698;marker:none;display:inline" id="rect5530" width="16" height="16" x="385" y="30" transform="translate(180,-5)" /> -<path style="color:#000000;fill:url(#linearGradient6204);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6255);stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 565.5118,28.50002 13.9764,0 0,5.97466 0,5.97467 L 567.5,40.5 c -1,0 -2,-1 -2,-2 l 0.0118,-9.99998 z" id="rect6181" sodipodi:nodetypes="ccccccc" /> -<path sodipodi:nodetypes="ccccc" id="path6187" d="m 578.5,25.5 -11,0 c -1,0 -2.5,1.5 -1.5,3 l 13.5,0 c -1.5,-1 -1.5,-2 -1,-3 z" style="fill:url(#linearGradient6220);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6263);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path style="fill:#e1ff7d;fill-opacity:1;fill-rule:evenodd;stroke:#e2fda4;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 567.5,30 0,9" id="path6200" /> -<path style="fill:#49850a;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 578,29 1,0 0,11 -12,0 0,-1 11,0 0,-10 z" id="path6324" /> -<path style="fill:#e1ff7d;fill-opacity:1;fill-rule:evenodd;stroke:#c0e383;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 568.5,29.5 9,0" id="path6334" /> -<path style="fill:url(#linearGradient6330);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 568,27 0,10 1,0 0,-1 2,0 0,1 1,0 0,-10 -3,0 0,1 2,0 0,7 -2,0 0,-8 -1,0 z" id="path6265" sodipodi:nodetypes="ccccccccccccccc" /> -<path style="fill:url(#linearGradient6332);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 569,28 0,7 2,0 0,-7 -2,0 z" id="path6267" sodipodi:nodetypes="ccccc" /> -</g> -<g id="draw-calligraphic" transform="translate(440,196)" inkscape:label="#draw_calligraphic"> -<rect y="99" x="10" height="24" width="24" id="rect12294" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:url(#linearGradient5856);fill-opacity:1;stroke-width:1pt" d="m 450,295 0,0.5 c 8,2.1875 -2.1665,15.6417 4.5,21 4.1531,3.3381 10.6496,2.8504 13.5,0 1,-1 3,-2 5.7187,-0.9375 l 0,-0.2188 C 472,312.5 469,313 467.5,315 c -1.8974,2.5298 -7.5,5.5 -10.5,1 -4,-6 11.5,-21 -7,-21 z" transform="translate(-440,-196)" id="path12296" sodipodi:nodetypes="ccssccssc" /> -<g id="g15748"> -<path sodipodi:nodetypes="ccccccc" id="path12332" d="m 20.50599,109.5 0,10 2,0 c 2,-3 4,-5 7,-7 l 0,-6 -6,-1 -3,4 z" style="fill:url(#linearGradient14646);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<path sodipodi:nodetypes="cccccccc" id="path13072" d="M 22,117.8669 24.00599,112 c 0,0 1,0 1,0 l 0,-2 -2,0 0,2 -1.33362,5.8646 0.32763,0.002 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<path sodipodi:nodetypes="ccccc" id="path13820" d="m 25.29308,99.5 -1.78709,6 7.06221,1.7811 c 0.70614,-0.3233 1.01874,-1.3214 0.93779,-2.3194 L 33.5,101.6184" style="color:#000000;fill:url(#linearGradient14650);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient14652);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path id="path14610" d="m 31.33134,104.9438 -5,-1" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="ccccc" id="path14612" d="m 30.48686,106.7926 c 0.48725,-0.2332 0.63717,-0.8036 0.61843,-1.3741 l -5.17231,-1.0434 -0.67465,1.0529 5.22853,1.3646 z" style="fill:url(#linearGradient14654);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<path sodipodi:nodetypes="cc" id="path14622" d="M 24.92101,104.2064 26.2141,99.98988" style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="ccccc" id="path14656" d="m 33.45251,103.4948 -0.96448,1.5471 c 0.04303,1.3375 -0.47615,2.8999 -1.89485,3.0005 l 0.0083,4.9298 c -3.08937,1.587 -5.39164,4.186 -7.30037,6.9536" style="fill:none;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.24495682;stroke-dasharray:none" /> -<path sodipodi:nodetypes="cccccccc" id="path16152" d="M 21.03975,117 21,109.725 l 2.66352,-3.5381 3.8959,0.9541 -0.67582,1.1926 -2.54426,-0.1193 -1.9082,1.8287 -1.39139,6.957 z" style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -</g> -<g id="draw-connector" transform="translate(444.9917,149.9903)" inkscape:label="#draw_connector"> -<path id="path5856" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 11.5083,213.51 -2,6.892 m 10,-11.892 5,4 0,8 m -10.9291,-6.002 7.9986,0 0,5.002 -7.9986,0 0,-5.002 z" sodipodi:nodetypes="cccccccccc" /> -<path style="fill:#ce0000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 24.0083,221.0097 1,0 -1,0 z" id="path5854" sodipodi:nodetypes="ccc" /> -<rect y="215.50999" x="14.5775" height="3.0037899" width="6.00072" id="rect5677" style="color:#000000;fill:url(#linearGradient5694);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5679);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<g id="g5746"> -<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5710" width="7.9986801" height="6.9991221" x="10.5083" y="205.5097" /> -<rect style="color:#000000;fill:url(#linearGradient5677);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5680);stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5712" width="6.00072" height="4.9954739" x="11.50669" y="206.51199" /> -</g> -<use xlink:href="#g5746" height="1250" width="1250" transform="translate(-4.99868,15.99998)" id="use5750" y="0" x="0" /> -<use xlink:href="#use5750" height="1250" width="1250" transform="translate(15,8.780086e-4)" id="use5757" y="0" x="0" /> -</g> -<g id="draw-freehand" transform="matrix(1,0,0,0.995256,377,122.5361)" inkscape:label="#draw_freehand"> -<path style="fill:url(#linearGradient6168);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 84.5,130.9858 3,1 5.27118,-5.8333 c -1.1209,-2.8273 -4.58031,-4.639 -8.13786,-3.1099 L 84.5,130.9858 z" id="path6127" sodipodi:nodetypes="ccccc" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 84.49792,134.0861 1.08291,0.2781 1.91917,-2.2498 c -0.27184,-0.9435 -2,-2 -2.92873,-1.0611 l -0.07335,3.0328 z" id="path6021" sodipodi:nodetypes="ccccc" /> -<path sodipodi:nodetypes="ccccc" id="path6019" d="m 84.49115,123.548 c 2.12781,-1.993 6.94819,-0.9861 8.2798,2.8187 L 95.5,119.1144 c -2.5,0 -0.5,-6 -7,-6 l -4.00885,10.4336 z" style="fill:url(#linearGradient6170);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<rect y="113" x="73" height="24" width="24" id="rect6011" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:url(#linearGradient6189);stroke-width:1.00238049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" d="m 74.5,114.5 c 8.7987,-1.1362 3.13297,5.1169 2.0058,6.7979 -5.34734,8.0336 0.79703,2.2021 3.79703,3.2021 1.89737,0.6325 1.00572,3.2048 0.5,4.6144 -0.53123,1.4807 -0.73153,3.537 0,5 1,2 3.57567,2.5 5,2.5 1.5,0 3.57181,-0.5306 5,-1.7138 1.53957,-1.2755 2.78578,-3.2999 3,-4.2283" id="path6013" sodipodi:nodetypes="csssssss" /> -<path id="path6023" style="fill:none;stroke:#000000;stroke-width:0.98461533;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" d="m 95.5,119.6144 -2.72906,6.7523 0,0 -6.59179,7.0164 C 84.5,135.1144 84.5,134.6144 84.50212,132.7216 L 84.49114,123.548 88.5,113.6144" sodipodi:nodetypes="ccccccc" /> -<path style="fill:none;stroke:url(#linearGradient6123);stroke-width:1.00238049px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 92.77094,126.3667 c -0.54138,-1.0094 -1.08275,-2.0188 -1.62412,-3.0282 -1.0546,-0.3859 -2.10919,-0.7718 -3.16379,-1.1577 -1.19908,0.2928 -2.39816,0.5856 -3.59725,0.8785" id="path6115" sodipodi:nodetypes="cccc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1.00238049px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 88.07236,120.9146 2.5,-6" id="path6125" sodipodi:nodetypes="cc" /> -</g> -<g id="draw-path" transform="matrix(1,0,0,0.994286,410,166.5657)" inkscape:label="#draw_pen"> -<path style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.20344317;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 54.74801,112.7209 -2.02196,5.3521 c -0.41924,1.2317 1.29973,1.89 1.73578,0.6129 l 2.07236,-5.2546" id="path6331" sodipodi:nodetypes="cccc" /> -<path sodipodi:nodetypes="ccccccc" id="path6315" d="m 53.30533,107.4469 0.79348,1.188 5.92422,2.4368 1.5611,-0.5121 1.98917,-5.534 c -2.5,0 -0.5,-6.03453 -7,-6.03453 l -3.26797,8.45583 z" style="fill:url(#linearGradient6325);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<path style="fill:url(#linearGradient5228);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5230);stroke-width:1.00286937px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 54.2095,108.7548 -0.91109,3.3199 5,1.9101 1.91507,-3.0918" id="path5211" sodipodi:nodetypes="cccc" /> -<path id="path6317" style="fill:none;stroke:#000000;stroke-width:0.9850955;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" d="m 63.5733,105.5284 -1.73917,4.3275 c -0.23117,0.7551 -1.18676,1.3635 -1.67929,1.0399 -1.81427,-1.1919 -3.78289,-2.0079 -5.98567,-2.2653 -0.42201,-0.0493 -0.90938,-1.1851 -0.71897,-1.691 l 3.1231,-7.44555" sodipodi:nodetypes="ccsscc" /> -<rect y="99" x="40" height="24" width="24" id="rect6268" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="ccc" id="path6270" d="M 44.54642,120.6114 C 57,118.612 42.20822,100.5101 42.20822,100.5101 l 11.79178,0" style="fill:none;stroke:url(#linearGradient5436);stroke-width:1.00574684;stroke-miterlimit:4;stroke-dasharray:none" /> -<path id="rect6272" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00286913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 40.5625,118.5995 3.9375,0 0,4.0355 -3.9375,0 0,-4.0355 z m 4.47596,3.0298 5.46154,0 m 0,-1.0303 2.01365,0 0,2.036 -2.01365,0 0,-2.036 z" /> -<path style="fill:none;stroke:none" d="m 53,112.5776 4.5,2.0115 1.5,-3.0173 -4.5,-1.5086 -1.5,2.5144 z" id="path6311" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1.00286937px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 56,106.5431 2.5,-6.0345" id="path6321" sodipodi:nodetypes="cc" /> -</g> -<g transform="matrix(1,0,0,0.998006,413.96481,170.38172)" style="display:inline" id="object-columns" inkscape:label="#clonetiler_per_column"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.53149599;marker:none;display:inline" id="rect9056" width="15.99999" height="16.03196" x="319.03741" y="103.8253" /> -<g id="g9227"> -<g id="g9237"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5764);stroke-width:1.00100005;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect9070" width="13.03433" height="3.0039289" x="105.3283" y="320.53519" transform="matrix(0,1,1,0,0,0)" /> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5767);stroke-width:1.00100076;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect9072" width="11.05956" height="1.0068099" x="106.2927" y="321.53751" transform="matrix(0,1,1,0,0,0)" /> -</g> -<use xlink:href="#g9237" height="1250" width="1250" transform="translate(4.998223,3.261012e-5)" id="use9241" y="0" x="0" /> -<use xlink:href="#use9241" height="1250" width="1250" transform="translate(5.00393,-0.0083534)" id="use9243" y="0" x="0" /> -</g> -</g> -<g id="clonetiler_per_row_shift" inkscape:label="#clonetiler_per_row_shift" transform="translate(-249.11763,-232.09451)"> -<rect y="528" x="982" height="24" width="24" id="rect5795" style="color:#000000;fill:none;stroke:none;stroke-width:0.53149599;marker:none;display:inline" /> -<g transform="translate(-0.999999,-1.000121)" id="g7285"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5816);stroke-width:1.00000226;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7247" width="14.08517" height="5.0011559" x="983.5" y="530.50012" /> -<rect style="color:#000000;fill:url(#linearGradient5818);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5820);stroke-width:1.00000238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7249" width="12.00008" height="3.0000319" x="984.50098" y="531.5" /> -</g> -<use xlink:href="#g7285" x="0" y="0" id="use7289" transform="translate(4,8)" width="1250" height="1250" /> -<use xlink:href="#use7289" x="0" y="0" id="use7291" transform="matrix(0.994354,0,0,1,9.567272,8)" width="1250" height="1250" /> -</g> -<g id="clonetiler_per_row_scale" inkscape:label="#clonetiler_per_row_scale" transform="translate(-249.11763,-232.09451)"> -<use xlink:href="#rect5795" x="0" y="0" id="use7504" transform="translate(28,0)" width="1250" height="1250" /> -<g id="g7512"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5798);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7303" width="22.997829" height="5.9809742" x="1010.5" y="528.50659" /> -<rect style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5802);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7305" width="20.96796" height="3.9822741" x="1011.52" y="529.5177" /> -</g> -<rect y="537.50708" x="1012.495" height="5.004396" width="19.00926" id="rect7351" style="color:#000000;fill:none;stroke:url(#linearGradient5804);stroke-width:1.00000179;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="538.47937" x="1013.507" height="3.0414691" width="16.998819" id="rect7353" style="color:#000000;fill:url(#linearGradient5806);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5808);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="545.56299" x="1014.497" height="3.961664" width="15.00856" id="rect7361" style="color:#000000;fill:none;stroke:url(#linearGradient5810);stroke-width:1.00000191;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="546.49933" x="1015.518" height="2.0351219" width="12.98416" id="rect7363" style="color:#000000;fill:url(#linearGradient5812);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5814);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="clonetiler_per_row_rotation" inkscape:label="#clonetiler_per_row_rotation" transform="translate(-249.11763,-232.09451)"> -<use xlink:href="#use7504" x="0" y="0" id="use7506" transform="translate(28,0)" width="1250" height="1250" /> -<use xlink:href="#g7285" x="0" y="0" id="use7397" transform="translate(60,-1.001159)" width="1250" height="1250" inkscape:tile-w="15.085176" inkscape:tile-h="6.0011586" inkscape:tile-cx="1049.4574" inkscape:tile-cy="530.99942" /> -<use xlink:href="#use7397" x="0" y="0" inkscape:tiled-clone-of="#use7397" transform="matrix(0.866025,0.5,-0.5,0.866025,406.0265,-447.6297)" id="use7497" width="1250" height="1250" /> -<use xlink:href="#use7397" x="0" y="0" inkscape:tiled-clone-of="#use7397" transform="matrix(0.5,0.866025,-0.866025,0.5,984.5451,-631.4285)" id="use7499" width="1250" height="1250" /> -</g> -<g id="clonetiler_per_row_opacity" inkscape:label="#clonetiler_per_row_opacity" transform="translate(-249.11763,-232.09451)"> -<use xlink:href="#use7506" x="0" y="0" id="use7508" transform="translate(28,0)" width="1250" height="1250" /> -<use xlink:href="#g7512" x="0" y="0" id="use7518" transform="translate(56.00235,0.0124335)" width="1250" height="1250" /> -<use xlink:href="#use7518" x="0" y="0" id="use7520" transform="translate(-0.0021659,7.980976)" width="1250" height="1250" style="opacity:0.6" /> -<use xlink:href="#use7518" x="0" y="0" id="use7524" transform="translate(-0.0021659,15.98098)" width="1250" height="1250" style="opacity:0.4" /> -</g> -<g id="clonetiler_per_row_color" inkscape:label="#clonetiler_per_row_color" transform="translate(-249.11763,-232.09451)"> -<rect y="528" x="1094.002" height="24" width="24" id="rect7660" style="color:#000000;fill:#000000;fill-opacity:0.02145918;fill-rule:evenodd;stroke:none;stroke-width:0.53149599;marker:none;display:inline" /> -<g transform="translate(84.00452,0.0124335)" id="g7663"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5769);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7665" width="22.997829" height="5.9809742" x="1010.5" y="528.50659" /> -<rect style="color:#000000;fill:url(#linearGradient5771);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5773);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7667" width="20.96796" height="3.9822741" x="1011.52" y="529.5177" /> -</g> -<g transform="translate(84.00235,7.993409)" id="g7675"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5781);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7677" width="22.997829" height="5.9809742" x="1010.5" y="528.50659" /> -<rect style="color:#000000;fill:url(#linearGradient5783);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5785);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7679" width="20.96796" height="3.9822741" x="1011.52" y="529.5177" /> -</g> -<g transform="translate(84.00235,15.99341)" id="g7687"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5792);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7689" width="22.997829" height="5.9809742" x="1010.5" y="528.50659" /> -<rect style="color:#000000;fill:url(#linearGradient5794);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5796);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7691" width="20.96796" height="3.9822741" x="1011.52" y="529.5177" /> -</g> -</g> -<g id="text-remove-from-path" inkscape:label="#remove_from_path"> -<rect y="44" x="280" height="16" width="16" id="rect8477" style="color:#000000;fill:none;stroke-width:0.53149599;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<g id="g12114"> -<g id="g13610"> -<path id="path9935" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 283.5,49.5 1.7679,-1.80656 c 0.5,-0.5 1.5,-0.5 2,0 l 1,1 c 0.5,0.5 0.5,1.5 0,2 L 286.5,52.5 l -6,-6 M 293.7061,45 c -0.2173,-0.36011 -0.8214,-0.60415 -1.2708,-0.5 l -1.9971,0.42262 c -0.5148,0.17433 -0.7976,0.85161 -0.6547,1.29675 l 0.2592,1.91231 c 0.0876,0.4703 0.8162,0.92394 1.3837,0.82963 l 1.5871,-0.28322 c 0.6641,-0.14912 1.0187,-0.68512 0.9865,-1.14375 M 285.5,53.5 c -0.1399,0.48808 -0.5893,0.89879 -1,1 l -2,-0.80656 C 281.8066,53.52383 281.1905,53.85716 281,54.5 l -0.4613,1.84525 c -0.1429,0.69344 0.0625,1.46425 0.6547,1.65475 l 1.9971,0.38394 c 0.6041,0.16961 1.2731,-0.51299 1.3095,-1.07738 0.0677,-1.05151 0.2321,-1.90973 0,-2.80656" /> -</g> -<path sodipodi:nodetypes="cc" id="path9203" d="m 288.5,53.5 c 1.5,-2 4,-3 7,-3" style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<path style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 287,55 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" id="path13657" sodipodi:nodetypes="ccccccccccccccccc" /> -</g> -<g id="text-put-on-path" inkscape:label="#put_on_path"> -<use xlink:href="#rect8477" x="0" y="0" id="use13618" transform="translate(0,21)" width="1250" height="1250" /> -<use xlink:href="#g13610" x="0" y="0" id="use13621" transform="translate(0,21)" width="1250" height="1250" /> -<path sodipodi:nodetypes="cc" id="path13655" d="m 286.5,80.5 c 0,-5 4,-9 9,-9" style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<use xlink:href="#clonetiler_per_row_shift" inkscape:label="#clonetiler_per_column_shift" height="1250" width="1250" transform="matrix(0,1,1,0,436.97688,-408.97688)" id="clonetiler_per_column_shift" y="0" x="0" /> -<use xlink:href="#clonetiler_per_row_scale" inkscape:label="#clonetiler_per_column_scale" height="1250" width="1250" transform="matrix(0,1,1,0,464.97698,-436.97678)" id="clonetiler_per_column_scale" y="0" x="0" /> -<use xlink:href="#clonetiler_per_row_rotation" inkscape:label="#clonetiler_per_column_rotation" height="1250" width="1250" transform="matrix(0,1,1,0,492.97748,-464.97628)" id="clonetiler_per_column_rotation" y="0" x="0" /> -<use xlink:href="#clonetiler_per_row_opacity" inkscape:label="#clonetiler_per_column_opacity" height="1250" width="1250" transform="matrix(0,1,1,0,520.97688,-492.97688)" id="clonetiler_per_column_opacity" y="0" x="0" /> -<use xlink:href="#clonetiler_per_row_color" inkscape:label="#clonetiler_per_column_color" height="1250" width="1250" transform="matrix(0,1,1,0,548.97688,-520.97908)" id="clonetiler_per_column_color" y="0" x="0" /> -<g id="swatches" transform="matrix(0,1,-1,0,208.0312,-161.0035)"> -<rect y="13" x="212" height="4" width="4" id="rect6024" style="color:#000000;fill:#ffbf00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="8" x="212" height="4" width="4" id="rect6029" style="color:#000000;fill:#ff69bc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect6033" width="4" height="4" x="207" y="8" /> -<rect style="color:#000000;fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect6035" width="3" height="4" x="217" y="13" /> -<rect style="color:#000000;fill:#f0fa00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" id="rect6037" width="4" height="4" x="212" y="3" /> -<path style="color:#000000;fill:#a4602b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" d="m 217,8 4,0 -1,4 -3,0 0,-4 z" id="rect6045" sodipodi:nodetypes="ccccc" /> -<rect y="3" x="217" height="4" width="4" id="rect6048" style="color:#000000;fill:#00c626;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="13" x="207" height="4" width="4" id="rect6050" style="color:#000000;fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect y="3" x="207" height="4" width="4" id="rect6009" style="color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path id="rect6103" style="color:#000000;fill:none;stroke:url(#linearGradient6160);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 206.5035,2.5 0,15.03125 13.6573,0 c -0.5174,-1.44916 -1.1304,-4.30109 0.4406,-7.03125 2.014,-3.5 0,-8 0,-8 l -14.0979,0 z m 5.035,0 0,15 m 5.0349,-15 0,15 m -10.0699,-5 13.0909,0 m 1.5105,-5 -14.6014,0" sodipodi:nodetypes="cccscccccccccc" /> -<path style="fill:none;stroke:#bad2ec;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 210.5035,16.5312 -3,0 0,-3" id="path6163" /> -<path style="fill:none;stroke:#ff6565;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 210.5035,6.5312 -3,0 0,-3" id="path6165" /> -<path style="fill:none;stroke:#ffb5e0;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 215.5035,11.5312 -3,0 0,-3" id="path6168" /> -<path style="fill:none;stroke:#ffe185;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 215.5035,16.5312 -3,0 0,-3" id="path6170" /> -<path id="path6172" d="m 215.5035,6.5312 -3,0 0,-3" style="fill:none;stroke:#feffcd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -<path style="fill:none;stroke:#5cff7c;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 220.5035,6.5312 -3,0 0,-3" id="path6174" /> -<path id="path6176" d="m 219.0035,11.5312 -1.5,0 0,-3" style="fill:none;stroke:#d28b51;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="ccc" /> -<path sodipodi:nodetypes="ccc" style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 219.0035,16.5312 -1.5,0 0,-3" id="path6178" /> -</g> -<g id="paint-pattern" transform="translate(395.00061,254)" inkscape:label="#fill_pattern"> -<rect inkscape:label="#ccc" y="66" x="671" height="18" width="18" id="rect4541" style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> -<path style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" d="m 676.7274,66.00001 -3.2727,3.42857 4.0909,4.28572 4.0909,-4.28572 -3.2727,-3.42857 -1.6364,0 z m 4.9091,3.42857 4.0909,4.28572 3.2727,-3.42858 0,-1.71428 -2.4545,-2.57143 -1.6364,0 -3.2727,3.42857 z m 4.0909,4.28572 -4.0909,4.28571 4.0909,4.28572 3.2727,-3.42858 0,-1.71428 -3.2727,-3.42857 z m 0,8.57143 -1.6364,1.71428 3.2728,0 -1.6364,-1.71428 z m -4.0909,-4.28572 -4.0909,-4.28571 -4.0909,4.28571 4.0909,4.28572 4.0909,-4.28572 z m -4.0909,4.28572 -1.6364,1.71428 3.2727,0 -1.6363,-1.71428 z m -4.0909,-4.28572 -2.4546,-2.57143 0,5.14286 2.4546,-2.57143 z m 0,-8.57143 -2.4546,-2.57143 0,5.14286 2.4546,-2.57143 z" id="rect4545" /> -<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4381" width="19.000811" height="18.99999" x="670.49939" y="65.5" /> -</g> -<g id="paint-swatch" transform="translate(395.00061,282)" inkscape:label="#fill_swatch"> -<rect inkscape:label="#ccc" y="66" x="671" height="18" width="18" id="rect11473" style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> -<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect11475" width="19.000811" height="18.99999" x="670.49939" y="65.5" /> -<rect style="fill:#000000;stroke:none;marker:none;display:inline" id="rect4382" width="13.000811" height="12.99999" x="674.49939" y="69.5" /> -<rect style="fill:#ffffff;stroke:none;marker:none;display:inline" id="rect11478" width="13.000811" height="12.99999" x="673.49939" y="68.5" /> -</g> -<g id="distribute-graph" transform="matrix(0.173978,0,0,0.208504,867.70076,70.054562)" inkscape:label="#graph_layout"> -<g transform="matrix(4.416533,0,0,3.725389,-3265.91,88.05639)" id="g3559" /> -<path id="path3569" d="M 1003.929,599.4599 980.8144,612.551" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path3575" d="m 973.761,627.7789 3.5925,30.2751" style="fill:none;stroke:#000000;stroke-width:4.04931593;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path3577" d="m 989.9269,669.145 24.0691,1.4987" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path3579" d="m 1029.749,663.75 14.001,-26.6238" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path id="path3581" d="M 1041.298,620.8845 1021.547,601.25" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path14606" d="m 1057.695,626.25 24.557,-2.368" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path3585" d="m 1097.34,615.4889 16.597,-13.8943" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path id="path3587" d="m 1097.34,632.5749 18.487,21.9276" style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="cc" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15576" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807036,304.9623,206.775)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15574" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807036,270.4753,278.716)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15578" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807035,316.828,283.148)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15580" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807035,339.8194,239.9834)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15588" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807036,385.4323,235.551)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15590" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807036,414.1713,206.775)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use15592" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(2.158934,0,0,1.807036,414.1713,273.92)" /> -<use xlink:href="#path5724" height="1250" width="1250" id="use15554" y="0" x="0" style="fill:#8ab3df;fill-opacity:0.58823529;stroke:#0000ff;stroke-opacity:1" transform="matrix(1.957219,0,0,1.633125,337.4381,267.7929)" /> -</g> -<g id="zoom-original" inkscape:label="#g6809"> -<g transform="matrix(0.996399,0,0,1,95.08523,-222.9354)" id="zoom_1_to_1"> -<use xlink:href="#g5796" transform="matrix(1,0,0,0.997925,-0.04089,0.477615)" x="0" y="0" id="use5816" width="1250" height="1250" /> -</g> -<path d="m 103,29.5 1.5,0 0,6.5 m 2.5,-3.5 1,0 m 1,-3 1.5,0 0,6.5 m -3.5,-0.5 1,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3788" /> -</g> -<g id="zoom-double-size" inkscape:label="#g6890"> -<use xlink:href="#zoom_1_to_1" x="0" y="0" id="use6852" width="1" height="1" transform="translate(2.45923e-6,40)" /> -<use xlink:href="#path10692" x="0" y="0" id="use6888" transform="translate(-5.03664,19.999996)" width="1250" height="1250" /> -<path d="m 110,69.5 1.5,0 0,6.5 m -3.5,-3.5 1,0 m -1,3 1,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" id="path3820" sodipodi:nodetypes="ccccccc" /> -</g> -<g id="layer-lower" inkscape:label="#g6925"> -<use xlink:href="#path4802" height="1250" width="1250" id="use5788" y="0" x="0" transform="translate(-820,-4)" /> -<use xlink:href="#path5705" height="1250" width="1250" id="use5764" y="0" x="0" transform="translate(-820,-4.9999998)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use5782" y="0" x="0" transform="translate(-820,-12)" /> -<use xlink:href="#rect12856" style="fill:#000000;fill-opacity:1" height="1250" width="1250" id="use13581" y="0" x="0" transform="translate(-819.959,-4.960871)" /> -<use xlink:href="#path7204" x="0" y="0" id="use3823" transform="matrix(1,0,0,-1,-819.959,351)" width="1250" height="1250" /> -</g> -<g transform="translate(86.436189,-187.97066)" id="show-node-handles" inkscape:label="#nodes_show_handles"> -<rect style="opacity:0;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;marker:none;visibility:visible;display:inline" id="rect3742" width="12" height="12" x="735" y="57" transform="translate(-64.4787,188)" /> -<path style="color:#000000;fill:none;stroke:#909090;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 682.0213,245.5 c -3.5,0.5 -8.5,4 -8.5,8" id="path4641" sodipodi:nodetypes="cc" /> -<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 673.0213,247.5 0,6" id="path4638" sodipodi:nodetypes="cc" /> -<use xlink:href="#rect10675" height="1250" width="1250" id="use3738" y="0" x="0" transform="translate(703.5311,60.30166)" /> -<use xlink:href="#use5758" height="1250" width="1250" id="use4635" y="0" x="0" transform="translate(704.4975,77.02417)" /> -</g> -<g id="distribute-remove-overlaps" inkscape:label="#g5622"> -<rect y="190.04994" x="1071.8922" height="24" width="24" id="rect3709" style="opacity:0.1978022;fill:none;stroke:none" /> -<g style="display:inline" id="use3696" transform="matrix(0,1.043478,0.998006,0,894.31998,299.57353)"> -<rect y="187.554" x="-104.4881" height="7.017632" width="22.00094" id="rect4586" style="color:#000000;fill:none;stroke:url(#linearGradient5599);stroke-width:0.97992247;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="188.54761" x="-103.6973" height="5.0217919" width="20.21019" id="rect4588" style="color:#000000;fill:url(#linearGradient5601);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5603);stroke-width:0.97992373;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g style="display:inline" id="use3698" transform="matrix(1.278077,0,0,2.547898,1136.8702,-277.02415)"> -<rect y="183.485" x="-35.49881" height="9.0361071" width="3.1422119" id="rect4598" style="color:#000000;fill:none;stroke:url(#linearGradient5605);stroke-width:0.55415398;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="-34.716339" x="183.8775" height="1.564824" width="8.2432823" id="rect4628" style="color:#000000;fill:url(#linearGradient5607);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5610);stroke-width:0.55415452;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" transform="matrix(0,1,1,0,0,0)" /> -</g> -<use xlink:href="#use5811" transform="matrix(1,0,0,0.998006,1137.8846,4.3931024)" style="display:inline" x="0" y="0" id="use3703" width="1250" height="1250" /> -<g id="use3706" transform="matrix(0,1.176069,1.157927,0,849.52993,245.84383)"> -<rect y="192.55969" x="-38.489891" height="5.011148" width="10.98825" id="rect4608" style="color:#000000;fill:none;stroke:url(#linearGradient5614);stroke-width:0.85692638;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="193.3" x="-37.680012" height="3.4763751" width="9.3634109" id="rect4610" style="color:#000000;fill:url(#linearGradient5616);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5618);stroke-width:0.8569259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -</g> -<g style="display:inline" id="object-locked" transform="matrix(0.75,0,0,0.71955,299.52229,-168.41639)" inkscape:label="#width_height_lock"> -<rect ry="0" rx="5.3333402" y="710.00641" x="50" height="15.99362" width="16" id="rect16900" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<path id="path16896" style="fill:none;stroke:#000000;stroke-width:1.36125326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 62.5,717.5 0,-2.6359 c 0,-3 -2.50003,-4.3641 -4.50003,-4.3641 -2,0 -4.49997,1.3641 -4.49997,4.3641 l 0,2.6359 9,0 z" sodipodi:nodetypes="ccsccc" /> -<g id="use5854" transform="matrix(0.997501,7.43861e-7,-7.10133e-7,0.9975,0.167523,1.817969)"> -<path sodipodi:nodetypes="ccccc" id="path4841" d="m 51.96282,724.3143 -1e-5,-8.368 12.03007,0 0,8.368 -12.03006,0 z" style="fill:url(#linearGradient4849);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.09173131;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<use xlink:href="#path5841" height="1250" width="1250" transform="matrix(1.034059,0.0786266,-0.0088376,0.931256,4.459467,44.22347)" id="use3754" y="0" x="0" style="display:inline" /> -</g> -<g style="display:inline" id="object-unlocked" transform="matrix(0.749124,0,0,0.633637,299.54333,-127.72328)" inkscape:label="#lock_unlocked"> -<rect ry="0" rx="5.339582" y="710.00641" x="50" height="15.99362" width="16" id="rect8632" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1.45145297;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 62.5,716.2876 0,-2.625 c -0.50241,-4.6537 -5.46728,-5.4081 -7.25748,-3.2231" id="path8634" sodipodi:nodetypes="ccc" /> -<g transform="matrix(1.024267,-0.199097,0.200349,1.030708,-144.8304,-9.554702)" id="g5835"> -<path style="fill:url(#linearGradient4859);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10934103;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 52.4921,725.7923 0.39242,-9.7691 10.51742,-0.2251 -0.36298,9.9178 -10.54686,0.0764 z" id="path5839" sodipodi:nodetypes="ccccc" /> -<path sodipodi:nodetypes="cccssccsc" id="path5841" d="M 57.96875,718.4687 C 57.14028,718.4859 56.48264,719.1715 56.5,720 l 1,1 c -0.0076,0.5409 -0.72344,1.5441 -0.25619,1.8168 0.46725,0.2727 1.04513,0.2727 1.51238,0 C 59.22344,722.5441 58.50765,721.5409 58.5,721 l 1,-1 c 0.0086,-0.4087 -0.15001,-0.8031 -0.43905,-1.0922 -0.28905,-0.289 -0.68352,-0.4476 -1.0922,-0.4391 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -</g> -<g style="display:inline" id="sticky_zoom" transform="matrix(0.483821,0,0,0.485303,274.88233,249.31868)"> -<path transform="matrix(1.125571,0,0,1.125565,-22.76161,-20.24985)" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" sodipodi:cx="179" id="path5056" style="color:#000000;fill:none;stroke:#9e9e9e;stroke-width:1.73595095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.70815448;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<rect y="150" x="170" height="24" width="24" id="rect5058" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" d="m 186,159 c 0,3.866 -3.134,7 -7,7 -3.866,0 -7,-3.134 -7,-7 0,-3.866 3.134,-7 7,-7 C 182.866,152 186,155.134 186,159 Z" sodipodi:ry="7" sodipodi:rx="7" sodipodi:cy="159" sodipodi:cx="179" id="path5060" style="color:#000000;fill:url(#linearGradient8492);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4819);stroke-width:1.43388128;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<path style="fill:url(#linearGradient8494);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 172,160 c 5,-1 4,-6 9,-7 -2,-2 -5.5,-1.1667 -7,0 -1.5,1.1667 -3,5 -2,7 z" id="path5062" sodipodi:nodetypes="cczc" /> -<g transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" id="g5066"> -<path style="fill:url(#linearGradient8496);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 85.625,124.8009 c 1.66667,-1 3.33333,-1 5,0 l -0.37872,-8.8418 c -1.34906,-0.6533 -2.61846,-0.4612 -4.16666,0 l -0.45462,8.8418 z" id="path5068" sodipodi:nodetypes="ccccc" /> -<path style="fill:url(#linearGradient8498);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8500);stroke-width:1.99121785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 90.62502,124.8009 -0.04238,-8.8198 c -0.84595,-1 -4.18514,-1.0458 -5.03108,-0.0458 l 0.07344,8.8656" id="path5070" sodipodi:nodetypes="cccc" /> -<path style="fill:url(#linearGradient8502);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4811);stroke-width:1.99121785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 85.625,124.8009 0.91846,1.7806 c 1.03983,-0.2114 2.01992,-0.173 3,0 l 1.08154,-1.7806 c -0.84594,-1 -4.15406,-1 -5,0 z" id="path5072" sodipodi:nodetypes="ccccc" /> -</g> -</g> -<g style="display:inline" transform="matrix(0.823809,0,0,0.639827,-262.55399,171.12563)" id="object-visible" inkscape:label="#visible"> -<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" id="rect6472" width="14.52438" height="18.612591" x="707.14807" y="235.935" /> -<g id="g1661" transform="translate(0,-0.9)"> -<path id="path4926" style="color:#000000;fill:url(#linearGradient12592);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10190868;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 718.3596,243.1986 c 1.0177,0.7535 1.9383,1.9048 2.7914,3.5759 -1.8334,3.5913 -3.3519,5.0981 -6.102,5.0981 -2.75,0 -5.5802,-1.8728 -7.196,-5.1815 1.8334,-3.5914 5.4431,-5.3526 8.3072,-4.6092 m -4.3843,0.3061 -1.0395,-4.0779 m -1.5179,5.9334 -1.55,-2.5302 m 7.259,0.2222 0.1148,-4.7275 m 2.4251,5.351 1.5295,-3.7884 m 0.6191,5.3042 1.6145,-1.9398" sodipodi:nodetypes="ccscscccccccccc" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient12519);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" id="path5671" sodipodi:cx="63.5" sodipodi:cy="714" sodipodi:rx="3.5" sodipodi:ry="4" d="m 67,714 c 0,2.2091 -1.567,4 -3.5,4 -1.933,0 -3.5,-1.7909 -3.5,-4 0,-2.2091 1.567,-4 3.5,-4 C 65.433,710 67,711.7909 67,714 Z" transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" id="path12489" sodipodi:cx="63.5" sodipodi:cy="714" sodipodi:rx="3.5" sodipodi:ry="4" d="m 67,714 c 0,2.2091 -1.567,4 -3.5,4 -1.933,0 -3.5,-1.7909 -3.5,-4 0,-2.2091 1.567,-4 3.5,-4 C 65.433,710 67,711.7909 67,714 Z" transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" /> -</g> -</g> -<g style="display:inline" transform="matrix(0.823787,0,0,0.645052,-262.54008,190.27132)" id="object-hidden" inkscape:label="#hidden"> -<rect style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" id="rect12545" width="14.52438" height="18.612591" x="707.14807" y="235.935" /> -<g id="g12547" transform="translate(1.571853e-4,-2.424845)"> -<path id="path12549" style="color:#000000;fill:url(#linearGradient12555);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.09745145;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 719.0955,243.8639 c 0.731,0.7174 1.4121,1.671 2.0553,2.9106 -1.8636,3.5913 -3.4071,5.0981 -6.2026,5.0981 -2.7954,0 -5.0127,-2.2526 -7.3147,-5.1815 1.8637,-3.5914 4.1993,-4.6987 6.6776,-4.6987 0.4329,0 0.8512,0.0286 1.2558,0.0902 0.3858,0.0588 0.7592,0.1476 1.1212,0.2704" sodipodi:nodetypes="ccscsss" /> -<path id="path12562" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.09745121;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 714.4315,249.1956 0.0759,6.8378 m 2.3915,-7.2381 1.2947,6.0595 m 1.154,-6.9908 1.7323,4.5954 m -9.0763,-3.4589 -1.6691,5.8609 m -0.6448,-7.5215 -1.9726,4.9818" /> -</g> -</g> -<g style="display:inline" id="object-fill" transform="matrix(1,0,0,0.923129,277.01989,262.07499)" inkscape:label="#properties_fill"> -<g id="g5646" transform="matrix(0.751537,0,0,0.749817,166.4504,10.00731)"> -<path sodipodi:nodetypes="ccccc" id="path11232" d="m 669.9999,39.99979 15.8967,-9.8e-4 0.0246,17.33757 -16,-9.8e-4 0.0787,-17.33561 z" style="color:#000000;fill:url(#linearGradient5619);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect11240" width="16" height="16" x="669.9212" y="40" /> -</g> -</g> -<g style="display:inline" id="object-stroke-style" transform="matrix(0.733476,0,0,0.741921,466.34727,269.3232)" inkscape:label="#properties_stroke"> -<path sodipodi:nodetypes="cccccccc" id="rect12874" d="m 709.8429,42.69565 12.2703,10e-7 0,-2.695701 4.0901,3.369627 -4.0901,3.369633 0,-2.695707 -12.2703,-3e-6 0,-1.34785 z" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 710.5245,50.10884 1.3634,0" id="path10529" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="use10533" d="m 718.7054,50.10824 1.3634,0" style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#use10533" transform="translate(4.090113,1.758472e-7)" height="1250" width="1250" id="use10535" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 710.5246,55.4991 15,0" id="path10541" /> -<use xlink:href="#path10529" height="1250" width="1250" transform="translate(4.090108,2.951189e-7)" id="use4611" y="0" x="0" /> -</g> -<rect style="fill:none;stroke:url(#linearGradient5617);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" id="object-stroke" width="11.02273" height="10.97917" x="963.5" y="299.5" inkscape:label="#properties_stroke_paint" /> -<g style="display:inline" id="dialog-rows-and-columns" inkscape:label="#grid_arrange" transform="matrix(0.998005,0,0,0.998427,-214.1301,105.3675)"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" id="rect14409" width="16" height="16" x="405" y="220" /> -<rect style="color:#000000;fill:#bf0000;fill-opacity:0.99423631;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" id="use6620" width="1" height="1" x="416.96811" y="231.97479" /> -<use xlink:href="#g6675" height="1250" width="1250" id="use6687" y="0" x="0" style="display:inline" transform="matrix(1,0,0,0.998006,447.9987,45.40201)" /> -<use xlink:href="#g6675" transform="matrix(1,0,0,0.998006,456.0399,53.45968)" style="display:inline" x="0" y="0" id="use3752" width="1250" height="1250" /> -<g transform="matrix(1.000856,0,0,1,402.9876,14.92548)" id="use3773" style="display:inline"> -<rect y="205.55811" x="10.5083" height="5.941895" width="5.4917002" id="rect3777" style="color:#000000;fill:none;stroke:url(#linearGradient5609);stroke-width:1.00218284;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="206.5582" x="11.50743" height="3.941803" width="3.4925649" id="rect3779" style="color:#000000;fill:url(#linearGradient5611);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5613);stroke-width:1.00218272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<use xlink:href="#use3773" height="1250" width="1250" transform="translate(-8.065729,8.075484)" id="use3787" y="0" x="0" /> -</g> -<g style="display:inline" id="color-management" inkscape:label="#color_management" transform="matrix(0.33,0,0,0.33,190,344)"> -<rect y="0" x="0" width="48" height="48" style="fill:none;stroke:none" id="rect8860" /> -<g transform="matrix(1.125,0,0,1.125,4.5,-7.3125)" id="g8862"> -<image xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAANJWlDQ1BJQ0MgcHJvZmlsZQAAeNqt 12k4lO/bB/DznhnGMmYYO2Fk36LshOyJyr6lZN+GmWypVEgKkSUULQgJoUQiUf3IkpAs2YqKLKUQ yTLPC6me33H8/8+b53x13uf94rqv+zg+3+u4AAhKLlQqGQUA/gHBgZbGeiR7B0cStg+YAQ9EkAGs i1sQVdfc3Az+Yy32AgIA0C3nQqWSE0NOLve+X3rVaX5fAaGkesJ/L3ygvYMjACILABxeG/0uAOBw 3eitAYDjaDA1GADxBgAON28XdwAkHABkA60t9QGQQgDAe2301QCAd93omwEAH+rmFQyA9APQEwPc fQIAsDMA9NruHkFuAHhZAHB3D3LzB8AnAYCZvz/FHQA/BACSbtTAYAACBgDk7B0cSRuffCAOQIkX gMH0z+xoGkBlDoDk3j8zkQcAXC4AuQl/ZvOWgAAAwtUR5Km4AwAAEJweAN0IjTYvDoBNAVhLptFW cmm0tZsA6CGABrJbSGDor/+FIO0A/9fzxp5/FRoBQAEgokgB6jg6HBNOd4o+AhvFcIbRgLGR6Rzz eVwsywV8Fas3WzIxmT2F4xJnGlcadwZPIx+FP2tLlsA1wWZSiHDu1psiHWInxAskuqROSRfL9MpF bbsjP7D93I57im+VL6hUqY6qJ2rUaI5rpWo/1pnSTdd7qv/FMNOoyXjO5MaeVtPFvbn7Xu7vNO+0 6LJctS6y6bHtteuz73fEHLjrNHRw+NCI89vD71xxbg/dP3h89Bz3mvD+5DPpx0l+4v854Atllvr1 yLfAuaCF4IWQ76GLR5fCfhxbPv7zxGr46sm101IRPVHIGVQ0+iwmhu4c/XlsLEMcYzzTBeYEXCLL RXwSIZk1hS2VeIk9jSOdM4PrMvcVnkzeLL6r/Ne2XBe4IZgtlEPKFb65NU8kX7RA7JZEocRtySKp Yuni6RLyHdlSuTL5coW72+9tr9hxX6lSuUqlavFBaLXqQ7UajVrNRzvrdj7Werxef7pB58mup7rP 9P7Rb8Q0RjcZPjdqNm4xaTVpY2qLf2HabvZyXwe+42KneZfFK8tuYnfKa6se616bPq6+jH67N/YD joN8g1lDTsNOIwffCr698c559PCY8Fjue9cPbh/dx8XGCyY8P3lNek9JTRVN+874fSZ/kftSOhvw lfKNOrd97t584ELQ9+BF5cWqpdAfYcvHfh5b0VipXT2xFr6utf6YRgNARFB41Fd0G6aYLpU+HOvF YM2oz6TELIGTYOHBcxN4WHnYOIni7JIcapxmXIe4g3gSecv42vgnBdgFVYS8SJeFn4sgolpiR8Tv SsxKSUqTZWrl0Nt05ZMVRndIKcYo9alIq1LVGjW4NcN2vtDm0qHseqonqn/CoMtI0Dhsd53Jsul2 M4+9afu6zPEWxpZhVvnWr22Z7HbZH3G45th0YPag0KH9zscP57o0uk66c3roeNp7nfLO9mnwHfZb 9mcPkKEYUL2PhAcmBeUGV4Y0hw4enQpbPI4+wRZOOil7Svn0rgjTyP1RB84cjvY4S44JPhd4PiI2 Iu5MfOyFlIT4xMyLV5IykpNTrqamXEpPu5xemHHrcumVwszirLKrj649ut5440V2V053bvfN7rzB /A8FE7fGCj/eni36Vjxb8uXOXOls2XT5zN2Je6MVY/cHKruqWh40VD94WFZztTblUUSd/+MD9aYN O59IPyU+XX727p/WxvtNqc8Dm61aVFr5W2ltAy/ut8e9dOwQ6RjvrOg6+cqwG989/Dq7x7dXsXet r70/9c3BAamB+cGaoahh0xGOkZG3t98FjWqOYcZa31/6cOijxMeZ8ZqJyE97Jjknh6fypskzyjPr n1u+pMwe+Cr6deZbxVz4vPECcaH/e/4iZUn9B/rH8+XknwdWRFY+r1atRayb0LhoNAA4g4ShjqM1 0TWYk3Q6dPX0kdizDEYMjYwxTOeY43B7cG0sCfgEQiLrftYOtiRiCnsqRyqnNedrrnTudJ7LvJl8 WfxZW64KOAkMC94QyiblCOdszRG5KZonli9eIHFLslDqtrSP9JRMkWyJ3J1tpfJlCuXb7+64p1ih dF+5SqVKtUotTO2Heo1GjWbtzkdaddqntNd16nc16D7Re6r/zCDaEGPYaNRk/Hx3s0nLnlbTeDOc 2Yu97fte7u8wT7JgteiyfGXVbf3aptc23Y7Lrs++3+GN48CBLCd+p6GDw4feOr87/M4lx1XYdczt vfsHj4+eBV7iGwniO+VXTJYlz/yvFJn/nSLVx9SOLR//eWIlfPXk2qn107RIiEL9ThLseWwsQ2xL 3J545gu4BFwiy0VCEmsy2+8s4crgvszzK0u2/J0luWM33fJE8kULxG+Jb6ZJiewdudJtf2WJYqVS lfID1WrVh2o16rWajzTrdj7Wrtf+K0cMm4yeGzUbt+xuNWkzfRH6cmvHvk7zLvNXFt0ne6R7bfvs +qMG5Acdh2JGFN/GjiqPXfjgPq45kTzpM+37mTxL+Ra34Lh4cTl+zZJGA9g4+wAA6FUA0mUAbDMB rHIBYmQAJJwBuAoBzFkArNUBRScIKC0qIHu0Ns8PQIAVBGAb6IEDBEESlMMPhISYImFIIfISmUAR UMaoSFQdahWthY5EN6FXMcIYB0wB5judEd1ZujK6WXpj+hz6cSwn1glbx4BlUGeIZphm1GCkMDYw yTFFMFUz45kjmd/gOHABuE8shixnWEbxLvinBDTBkzDDasGazrrGFss2R9Qg5rOrsuezz3I4cyxx +nBWcclwPef25MHyFPGK8R7lXeC7xm/MP78lW0BUIFwQEawU8iUJkwaEL23dujVChCDSIZosZiPO Jz4mUSypL3lbSk+aTXpUpkL2nJzTNkV5nPyEwj/bc3dEKborGSvLqrCrrKqOq2Wo49UbNMo1c3Ze 0jqvfVrn6K4jumQ9H31vA29DP6MA4+DdJ0yi91w0zTK7vbd6X8v+IfNvllgrQWs1Gytbql2ifalD p+O8E89B7UOezkmHa10+uXG7G3sc8yzx4fE194sjNwagKLrUyCPPguiDTUNSwkSPUY4/Cmc66Xiq 5DQt0joaddYp5sF59tgjcV0JaYnLSc7JTanylzIzgi6/z7TKarxemi2Wc+0mdwHrrcTb+KKLdzLK BMrz7slVGlR1Vbs8/FbH/bikQe9ZcCOhqaR5T1tcu9zLrs7Q7qYeah9/f/OQ+HD/27hRnQ8l4+6f hCYHPtvOcn3tm8tccF6aWa5cOU3jodEAAAVMwA1SoAP2EAJpUA0jCBZRQJyRRKQemUdJo5xRmajX aAJ6L/oCuh3DgtmPScMM0pHofOjK6X7Q69NfpH+DFcOGYJ8xEBncGaoZmRmdGEuZMEyHmO4zMzG7 MdfjOHFUXDuLNEsCywzeDF9GYCFQCL2su1jz2PBsoWyDRCPiXXYSewr7OkcQx2dOX84pLjLXHHcw 9yLPcV6E9wIfH18Rvzp/0xbbLZMCEYK8glVCFkJTpBhhceHmrQEi3CKPRd3EcGJPxAMkhCReScZK 6UmtSdfKhMtqyS7J1W87L2+tIKwwu71+R7Kir5KBsqDyikqP6kO1a+qRGl6adju1tOS1hXWIuzC6 aN05vW/6swbThuNG88bTu7/vQZlymHHv3b5Pe/9+c0sLP8tjVlnW92xe2A7arTpwOMof2Od05OCV Q43OEy6Mrgpu3u6ZHvWeX72lfDx8M/x6/PkDbChZ1E+BkkGhwS2hAkeDwlqPi5xIDJ865XC6OVIl Kj+aeDbxHPF8ehxPfFaCcuLLJI/kn6kJaarpHy9fz/S9anNdKpsuZ+bm0/zKW1duxxS73XEqM7qr VqFUue2B3EPJWrE6yXqFJzrPdjdaPCe3HGlLbs/ueNQ10k3rFerXGnAfih+peTfznvej3kTEZOH0 hy98Xz3nri+ML0kuB6xUrSM0GgDQAysIgB44QBKUw6tN+5vuN9RjCBgHzHc6I7rMX97XsU4MQgzR DNOM1owNTHJMV5nxzJHMS7gA3CcWd7wL/j3BkzDDGsS6xhZL5CLms6uyt3I4cyxxJv02vY934Zdn c0FEsPKXZYsNyb8ch0rp/W34j+Bffl+pN2iU/7H7R+5/dvvf1HqN+vD4mv9bbejAv91GFf0t98KO P3LT6TftXlPf1JuXuum3hLgpuKJ603DtmQ3FTwY2HbdMtsW9+Kc9/WVXZ+grge6mHmpveV9Mf/NA 6JD4sN+Iwdu4UZ2xc+9dP5R8XBzv/iQ06TdlMi05g/1s+6VgNuar17fdc9LzzPNfFjq/VyymL1kv zfyIXtb7KfFzfOX0Ks/q9TW2tei1pfU8WjyNBrBxXwIAACZ9CpkSSDLTN4D/3/Inh2yugQIAnEeQ oRUAEAFA0iPAZrPXADPQBwMggRtQgAwUCAT93x1p4+3GPQ4AgJ4V4KodAED9jxMR/14z2CMsGABA n0I9Fujj5R1M0qVSyR4kfYo/NSTYI1CWZBLgtk2WtENBQRkA4H8Aw2wI2gG1XRMAAAOYSURBVDjL pdXPaxxlGMDx7zszOzuTzW72R7KbpjWx/sAeFPVQFGqKiNDWFlvMwYo/wItXxR6q5lQET968iDf/ AUOgVOwlUMREhZRaD2Ldmpgmpmm23ezs7szOr8dDZjfxV03sOzzM8MJ83ofnfV5eHMeRSWdSDvoH 5Zx/TuphXe518GXtoiC6kDyVoCJT7tS9oa/W3xZkSJBUDyZGzrTOSBiH/w99uvGGIAcE2SOIvQUL crJ9Utphe9eodiN2gQJQAgaBLKAAmLanORYcpRk57GZoN/UYGADyQDGBC4AOwJx1ideD52mGGztH U/FAgm6HS0mYpIGq9R1nw+dohnd2htpaEchtQ/PbyjGETYY+FOvWPJ+FR3B3kLFmkU/Q3Da8AAyi UybDMP3kyaHhWd8zEx7FDxt3R/dF5WRzumARGAKGMBM0x17yDDOISb81x23/OFHY/Hd0TJUTsJBg ZaACDGMzQo4R8uxjkDH2MMYoWcru1wQ/nCDs/HPGxibqACHgAwHQATpkcRnApUSTYRqMUmBvM4tW XcT65RLelWOo01+h2/1/RvfHJcBN0G4EGPgM0KGExzAuY7R4wL9DqpqGKrCoY618i1s9jjl5Ad3O bKFPqELS7HESERBhEVIkpELAKD6PxC7ZX6/DTx5c78CSwKqOfXkOd+lFzE/Po9v2JnpAWZjBKL5S INJbLSfCIMKICA+KUFm7CVeb8HMNFtqwEsKawLqOfWUWd/UU5vQ0umVhGMCjqynmPa2XqIqgP4J0 AFoAsQ9SK8KPJaiW4IYDv3uwFkJDINKwL87ivjRBeuoLDKUUh1rC/GKvnBg+2D7oHsQuuC3o1Pvo qxZgoQDLG1BzwQ+SkgHopK4u4H8ziwEwbsIni8nmd8D0IO2C3oa4Cd4GeLUUfb/lYSUP7TxIK+mS kODhEeTsBMZrJ7DSJoaI8GwF9GUhchV4YLXBbIHmQFyHoAbtVUWxkYW4e/IcgicLyHvjpCaeQuna 1u4rpRjK6BzuC5m5ZqDaYLcg1QCtDrIOwQa4EURk0MkSjN+HfPAMqSP7UUr9vfm7H688JsxcAL0J lgPGbVAbIOFmqV0leC/opN5/CPNQ9u5nX5I2evmwzkAjIrUE5iIYNVAhiB5TPh1w/+WQzHnrP0EA HMfpXQMffuRJXok8jsipdCSfv+XLrWvB7u+oLhrHsQRBJO+82ZKP3/Xk1nLQm+++W61W78ft83+d +wOuBu1qqTfJ4wAAAABJRU5ErkJggg==" clip-path="url(#cieClip)" width="36.599998" height="41" id="image2428" x="-0.264" y="7.3330002" /> -<path style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784324,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627115,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 c 4.54551,4.05204 8.81721,8.40006 13.1433,12.68228 3.05325,3.02229 6.08867,6.06284 9.1309,9.09602 -8.97,4.16333 -17.94,8.32667 -26.91,12.49 z" id="path8865" sodipodi:nodetypes="cssssssssscc" /> -</g> -</g> -<g style="display:inline" id="draw-use-tilt" transform="matrix(1,0,0,1.066667,-203.5002,-21.01625)" inkscape:label="#guse_tilt"> -<rect style="fill:none;stroke:none" id="use_tilt" width="11" height="10.31249" x="691.5" y="303.75" /> -<path id="path4036" style="fill:none;stroke:url(#linearGradient4610);stroke-width:0.96824569;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="M 696.7189,305.998 696,305.5938 l -4,8 10,0 0,-0.9375" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:url(#linearGradient4618);stroke-width:0.96824569;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 694.5,309.375 c 1.5,0.4688 3,2.3438 2.5,4.2188" id="path15733" sodipodi:nodetypes="cc" /> -</g> -<g style="display:inline" id="draw-use-pressure" transform="matrix(0.941445,0,0,1.002693,-145.0319,-1.597622)" inkscape:label="#guse_pressure"> -<rect style="fill:none;stroke:none" id="use_pressure" width="11.684" height="10.9571" x="691.52399" y="303.7634" /> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 691.5241,314.2513 0.006,0.4987 11.6782,-0.0161 3e-4,-3.9732 c -2.8312,1.7762 -6.9043,3.4906 -11.6842,3.4906 z" id="path7145" sodipodi:nodetypes="ccccc" /> -<path style="fill:url(#linearGradient4649);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 696.8349,303.7635 2e-5,4.9865 -3.18662,0 3.71771,3.9893 3.71769,-3.9893 -3.18659,0 -10e-6,-4.9865 -1.0622,0 z" id="path4622" sodipodi:nodetypes="cccccccc" /> -</g> -<use xlink:href="#properties_fill" height="1250" width="1250" transform="translate(482.0912,-121.9991)" id="controls_fill" y="0" x="0" style="display:inline" /> -<use xlink:href="#properties_stroke_paint" height="1250" width="1250" transform="translate(486.0664,-121.9791)" id="controls_stroke" y="0" x="0" style="display:inline" /> -<g style="display:inline" id="transform-affect-stroke" transform="matrix(0.695835,0,0,0.741921,35.18012,-150.29)" inkscape:label="#transform_stroke"> -<path style="fill:none;stroke:#000000;stroke-width:2.78354359;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 670.8773,245.7 14.3712,0 0,5.3914" id="path5760" sodipodi:nodetypes="ccc" /> -<path style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 670.1587,250.4175 10.0599,0 0,2.6957" id="path5762" sodipodi:nodetypes="ccc" /> -<g id="g5772"> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 682.3742,253.78713 0,2.69567 -2.8742,0 0,1.3479 2.8742,0 0,2.69569 4.3114,-3.36963 -4.3114,-3.36963 z" id="path12910" sodipodi:nodetypes="cccccccc" /> -<path transform="translate(170,219.961)" id="path5764" d="m 505.9072,37.19576 1.4371,0" style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="cc" /> -<path id="path5770" d="m 672.3144,257.1568 1.4371,0" style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="cc" /> -</g> -</g> -<g style="display:inline" id="transform-affect-rounded-corners" transform="translate(-150,-214)" inkscape:label="#transform_corners"> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 673.5,248.5 4,0 c 2.5,0 3.5,1 3.5,3.3" id="path4434" sodipodi:nodetypes="ccc" /> -<path style="fill:none;stroke:#000000;stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 673.5,245.5 5.5,0 c 3.5,0 5.5,2 5.5,5" id="path4436" sodipodi:nodetypes="ccc" /> -<use xlink:href="#g5772" height="1250" width="1250" transform="matrix(0.695835,0,0,0.741921,207.1801,63.71)" id="use4586" y="0" x="0" /> -</g> -<g style="display:inline" id="transform-affect-pattern" transform="translate(-109.9999,-213.9612)" inkscape:label="#transform_pattern"> -<rect style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" id="rect4538" width="11.00024" height="4.999897" x="674.99969" y="245.9612" /> -<path style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" d="m 683.8361,245.8988 -2.2263,1.6932 -2.1805,-1.6583 -2.2264,1.6933 2.2034,1.6758 -2.1804,1.6584 4.4068,0 -2.1804,-1.6584 2.2034,-1.6758 2.1804,1.6583 2.2264,-1.6933 -2.2264,-1.6932 z m 0,3.3865 -2.2034,1.6759 4.4068,0 -2.2034,-1.6759 z m -8.8366,-3.3691 0,3.3517 2.2034,-1.6759 -2.2034,-1.6758 z m 0,3.3866 0,1.6584 2.1805,0 -2.1805,-1.6584 z" id="rect4540" /> -<use xlink:href="#path4430" height="1250" width="1250" id="use5102" y="0" x="0" transform="translate(0,-1)" /> -<use xlink:href="#g5772" height="1250" width="1250" id="use4592" y="0" x="0" transform="matrix(0.695835,0,0,0.741921,209.1801,63.671)" /> -</g> -<g style="display:inline" id="transform-affect-gradient" transform="translate(-130,-214.961)" inkscape:label="#transform_gradient"> -<path style="opacity:0.9;color:#000000;fill:url(#linearGradient8709);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" d="m 675,245.961 12,0 0,6 -12,0 0,-6 z" id="path12993" sodipodi:nodetypes="ccccc" /> -<path style="opacity:0.9;color:#000000;fill:url(#linearGradient8711);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" d="m 675,248.961 8,0 0,4 -8,0 0,-4 z" id="path12995" sodipodi:nodetypes="ccccc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 675.5,246.461 11,0 0,5" id="path4430" sodipodi:nodetypes="ccc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 675.5,249.461 7,0 0,3" id="path4432" sodipodi:nodetypes="ccc" /> -<use xlink:href="#g5772" height="1250" width="1250" id="use4589" y="0" x="0" transform="matrix(0.695835,0,0,0.741921,209.1801,64.671)" /> -</g> -<g id="edit-undo-history" transform="matrix(1.00075,0,0,0.99280545,-0.0412413,0.24977138)" inkscape:label="#edit_undo_history"> -<g transform="matrix(0.723037,0,0,0.675336,-257.1363,-6.948167)" id="g2661"> -<path style="fill:#fac32d;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 432.5759,60.78928 7.4384,-7.40458 0,3.70228 c 0,0 8.7686,-0.06783 8.7686,-0.06783 0,0 0,13.3074 0,13.3074 0,0 -3.2294,-0.07147 -3.2294,-0.07147 0,0 0,-6.69255 0,-6.69255 0,0 -6.9417,0 -6.9417,0 0,0 0,2.97447 0,2.97447 0,0 -6.0359,-5.74772 -6.0359,-5.74772 z" id="path2640" /> -<path style="fill:#efe4b6;fill-opacity:1;fill-rule:evenodd;stroke:#efe7c1;stroke-width:1.43366158;stroke-linecap:butt;stroke-linejoin:bevel;stroke-opacity:1" d="m 432.558,61.52785 6.5857,-7.0356" id="path2645" /> -<path style="fill:#ca8f0b;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 442.9108,70.25823 c 2.7212,-0.09493 2.688,0.06832 2.688,0.06832 0,0 -0.0769,-6.76402 -0.0769,-6.76402 0,-1.48723 0,-1.48723 -2.0731,-1.48723 0,0 -9.7522,-0.10996 -9.7522,-0.10996 l 5.4727,5.97978 0,-3.48047 c 0,0 1.1954,0.02985 2.4359,0.02985 2.4809,0 1.3056,2.786 1.3056,5.76373 z" id="path2642" /> -<path id="path2647" d="m 432.3932,60.65307 6.9304,-7.40302 0,3.64609 c 0,0 7.1663,-0.04884 9.6663,-0.04884 0,0 0.0332,0.15255 0.0332,13.47925 0,0 -4.4694,0.02076 -5.5683,0 0,0 0.003,-5.97162 0.003,-5.97162 -1.25,0 -4.1492,0 -4.1492,0 l 0.0151,3.89512 -6.9304,-7.59698 z" style="fill:none;stroke:#000000;stroke-width:1.39714611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<g id="g11177" transform="translate(-254.4684,4.926264)"> -<path style="color:#000000;fill:url(#linearGradient5391);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5393);stroke-width:0.71197993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path14377" d="m 284,23 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" transform="matrix(1.331759,0,0,1.327869,-53.22381,-6.040984)" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" d="m 320.4594,22.00781 1,-1 0,4 -1,0 0,-3 z" id="path11169" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" d="m 319.4609,24.02096 2,0 0,1 -3,0 1,-1 z" id="path11171" /> -</g> -</g> -<g id="g3735" transform="matrix(0.76838,0,0,0.776759,4.51551,573.2782)" /> -<g id="distribute-graph-directed" inkscape:label="#directed_graph" transform="translate(295.95653,-461.82556)"> -<path id="path3750" d="m 815.4504,655.5878 4.2748,6" style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" /> -<path id="path3752" d="m 828.2748,655.7252 -4,5.7252" style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path3762" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(0.375607,0,0,0.376774,698.833,582.9556)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path3764" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(0.375607,0,0,0.376774,690.833,572.9556)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path3766" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(0.375607,0,0,0.376774,706.833,572.9556)" /> -<path sodipodi:type="arc" style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path3787" sodipodi:cx="328" sodipodi:cy="215" sodipodi:rx="5" sodipodi:ry="5" d="m 333,215 c 0,2.7614 -2.2386,5 -5,5 -2.7614,0 -5,-2.2386 -5,-5 0,-2.7614 2.2386,-5 5,-5 C 330.7614,210 333,212.2386 333,215 Z" transform="matrix(0.375607,0,0,0.376774,698.833,592.9556)" /> -<path id="path3789" d="m 822,666 0,4.626" style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" sodipodi:nodetypes="cc" /> -</g> -<g inkscape:label="#layers" transform="translate(-819.959,77.03912)" id="dialog-layers"> -<use xlink:href="#use8059" transform="translate(0,2.999974)" height="1250" width="1250" id="use8977" y="0" x="0" /> -<use xlink:href="#rect12856" x="0" y="0" id="use8055" width="1250" height="1250" /> -<use xlink:href="#path4802" transform="translate(-0.0409998,-2.993605)" x="0" y="0" id="use8059" width="1250" height="1250" /> -<use xlink:href="#path4802" transform="translate(-0.0410002,-5.993605)" x="0" y="0" id="use8061" width="1250" height="1250" /> -</g> -<use xlink:href="#rect12856" transform="translate(-864.959,177.0391)" x="0" y="0" id="use9075" width="1250" height="1250" /> -<g id="edit-select-all-layers" inkscape:label="#selection_select_all_in_all_layers"> -<path id="path9031" d="m 55.5,213.5 1,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#path6078" x="0" y="0" id="use9033" transform="translate(-295.3149,-39.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9035" transform="translate(-292.3149,-39.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9037" transform="translate(-289.3149,-39.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9039" transform="translate(-286.3149,-39.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9041" transform="translate(-296.3149,-24.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9043" transform="translate(-293.3149,-24.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9045" transform="translate(-290.3149,-24.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9047" transform="translate(-287.3149,-24.1388)" width="1250" height="1250" /> -<use xlink:href="#path6078" x="0" y="0" id="use9049" transform="translate(-284.3149,-24.1388)" width="1250" height="1250" /> -<path id="path9051" d="m 55.5,215.5 0,1" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#path6100" x="0" y="0" id="use9053" transform="translate(-298.3149,-36.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9055" transform="translate(-298.3149,-33.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9057" transform="translate(-298.3149,-30.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9059" transform="translate(-298.3149,-27.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9061" transform="translate(-283.3149,-29.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9063" transform="translate(-283.3149,-32.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9065" transform="translate(-283.3149,-35.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9067" transform="translate(-283.3149,-38.1388)" width="1250" height="1250" /> -<use xlink:href="#path6100" x="0" y="0" id="use9069" transform="translate(-283.3149,-41.1388)" width="1250" height="1250" /> -<use xlink:href="#use8059" x="0" y="0" id="use9073" width="1250" height="1250" transform="matrix(0.752527,0,0,0.752527,-669.1784,91.05547)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use9077" y="0" x="0" transform="matrix(0.752527,0,0,0.752527,-669.2092,85.8027)" /> -<use xlink:href="#path4802" height="1250" width="1250" id="use9079" y="0" x="0" transform="matrix(0.752527,0,0,0.752527,-669.2092,82.8027)" /> -</g> -<g id="dialog-messages" transform="translate(45,111)" inkscape:label="#messages"> -<g id="g4239" transform="matrix(1,0,0,0.996869,-60.05696,-76.20668)"> -<rect style="color:#000000;fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4241" width="14.99917" height="11.99987" x="115.5577" y="338.80829" /> -<rect style="color:#000000;fill:url(#linearGradient4251);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4243" width="14.99819" height="3.011261" x="115.5588" y="335.7579" /> -</g> -<path sodipodi:nodetypes="cccccccc" id="rect5189" d="m 57.49993,263.4998 11.00004,0 3e-5,5.0002 -2,0 -2.20349,2.9721 L 64,268.5 l -6.5,0 -7e-5,-5.0002 z" style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="dialog-scripts" inkscape:label="#scripts"> -<g transform="matrix(1,0,0,0.996869,-15.05696,14.79332)" id="g4209"> -<rect y="338.80829" x="115.5577" height="11.99987" width="14.99917" id="rect4212" style="color:#000000;fill:url(#linearGradient4218);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect4214" style="color:#000000;fill:url(#linearGradient4220);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<path style="fill:#000000;fill-opacity:1;stroke:none" d="m 103,354 0,9 4,0 0,-2 -2,0 0,-5 2,0 0,-2 -4,0 z" id="path5166" sodipodi:nodetypes="ccccccccc" /> -<path sodipodi:nodetypes="ccccccccc" id="path5168" d="m 113,354 0,9 -4,0 0,-2 2,0 0,-5 -2,0 0,-2 4,0 z" style="fill:#000000;fill-opacity:1;stroke:none" /> -</g> -<g id="dialog-icon-preview" inkscape:label="#view_icon_preview"> -<g transform="matrix(1,0,0,0.996869,-15.05696,54.79332)" id="g5190"> -<rect y="338.80829" x="115.5577" height="11.99987" width="14.99917" id="rect5192" style="color:#000000;fill:url(#linearGradient5198);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5194" style="color:#000000;fill:url(#linearGradient5200);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g inkscape:label="#visible" id="g5206" transform="matrix(0.823809,0,0,0.639827,-480.5562,242.2038)" style="display:inline"> -<rect y="235.935" x="707.14807" height="18.612591" width="14.52438" id="rect5208" style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" /> -<g transform="translate(0,-0.9)" id="g5210"> -<path sodipodi:nodetypes="ccscscccccccccc" d="m 718.3596,243.1986 c 1.0177,0.7535 1.9383,1.9048 2.7914,3.5759 -1.8334,3.5913 -3.3519,5.0981 -6.102,5.0981 -2.75,0 -5.5802,-1.8728 -7.196,-5.1815 1.8334,-3.5914 5.4431,-5.3526 8.3072,-4.6092 m -4.3843,0.3061 -1.0395,-4.0779 m -1.5179,5.9334 -1.55,-2.5302 m 7.259,0.2222 0.1148,-4.7275 m 2.4251,5.351 1.5295,-3.7884 m 0.6191,5.3042 1.6145,-1.9398" style="color:#000000;fill:url(#linearGradient5218);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10190868;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path5212" /> -<path transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" d="m 67,714 c 0,2.2091 -1.567,4 -3.5,4 -1.933,0 -3.5,-1.7909 -3.5,-4 0,-2.2091 1.567,-4 3.5,-4 C 65.433,710 67,711.7909 67,714 Z" sodipodi:ry="4" sodipodi:rx="3.5" sodipodi:cy="714" sodipodi:cx="63.5" id="path5214" style="color:#000000;fill:url(#linearGradient5220);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" sodipodi:type="arc" /> -<path transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" d="m 67,714 c 0,2.2091 -1.567,4 -3.5,4 -1.933,0 -3.5,-1.7909 -3.5,-4 0,-2.2091 1.567,-4 3.5,-4 C 65.433,710 67,711.7909 67,714 Z" sodipodi:ry="4" sodipodi:rx="3.5" sodipodi:cy="714" sodipodi:cx="63.5" id="path5216" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" sodipodi:type="arc" /> -</g> -</g> -</g> -<g id="edit-select-none" inkscape:label="#selection_deselect"> -<use xlink:href="#g6068" x="0" y="0" id="use5235" transform="translate(-298.3274,-16.15328)" width="1250" height="1250" /> -<use xlink:href="#g10421" x="0" y="0" id="use5237" transform="translate(-299.3571,-15.18254)" width="1250" height="1250" /> -<path id="path5239" d="m 55.5,236.5 1,0" style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path id="path5261" d="m 55.5,238.5 0,1" style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#path5239" x="0" y="0" id="use5306" transform="translate(3,0)" width="1250" height="1250" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(6,0)" id="use5309" y="0" x="0" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(9,0)" id="use5313" y="0" x="0" /> -<use xlink:href="#path5239" x="0" y="0" id="use5311" transform="translate(12,0)" width="1250" height="1250" /> -<use xlink:href="#path5261" x="0" y="0" id="use5318" transform="translate(0,3)" width="1250" height="1250" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(0,6)" id="use5321" y="0" x="0" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(0,9)" id="use5323" y="0" x="0" /> -<use xlink:href="#path5261" x="0" y="0" id="use5325" transform="translate(0,12)" width="1250" height="1250" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(2,15)" id="use5327" y="0" x="0" /> -<use xlink:href="#path5239" x="0" y="0" id="use5329" transform="translate(5,15)" width="1250" height="1250" /> -<use xlink:href="#path5239" x="0" y="0" id="use5331" transform="translate(8,15)" width="1250" height="1250" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(11,15)" id="use5333" y="0" x="0" /> -<use xlink:href="#path5239" x="0" y="0" id="use5335" transform="translate(14,15)" width="1250" height="1250" /> -<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 70.5,236.5 0,1" id="path5337" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(15,1)" id="use5340" y="0" x="0" /> -<use xlink:href="#path5261" x="0" y="0" id="use5342" transform="translate(15,4)" width="1250" height="1250" /> -<use xlink:href="#path5261" x="0" y="0" id="use5344" transform="translate(15,7)" width="1250" height="1250" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(15,10)" id="use5346" y="0" x="0" /> -</g> -<g id="edit-select-invert" transform="translate(0,-18)" inkscape:label="#selection_invert"> -<use xlink:href="#g10421" height="1250" width="1250" transform="matrix(1.112088,0,0,1.110911,-340.6366,-0.279561)" id="use5599" y="0" x="0" style="opacity:0.5" /> -<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 59.5,281.5 1,0" id="path5378" /> -<path style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 59.5,283.5 0,1" id="path5380" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(7,45)" id="use5382" y="0" x="0" /> -<use xlink:href="#path5239" x="0" y="0" id="use5384" transform="translate(10,45)" width="1250" height="1250" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(4,48)" id="use5390" y="0" x="0" /> -<use xlink:href="#path5261" x="0" y="0" id="use5392" transform="translate(4,51)" width="1250" height="1250" /> -<use xlink:href="#path5239" x="0" y="0" id="use5398" transform="translate(6,54)" width="1250" height="1250" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(9,54)" id="use5400" y="0" x="0" /> -<use xlink:href="#path5239" height="1250" width="1250" transform="translate(12,54)" id="use5402" y="0" x="0" /> -<use xlink:href="#path5261" x="0" y="0" id="use5410" transform="translate(13,43)" width="1250" height="1250" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(13,46)" id="use5412" y="0" x="0" /> -<use xlink:href="#path5261" height="1250" width="1250" transform="translate(13,49)" id="use5414" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 55.5,277.5 1,0" id="path5523" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-295.3149,24.86123)" id="use5525" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-292.3149,24.86123)" id="use5527" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-289.3149,24.86123)" id="use5529" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-286.3149,24.86123)" id="use5531" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-296.3149,39.86123)" id="use5533" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-293.3149,39.86123)" id="use5535" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-290.3149,39.86123)" id="use5537" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-287.3149,39.86123)" id="use5539" y="0" x="0" /> -<use xlink:href="#path6078" height="1250" width="1250" transform="translate(-284.3149,39.86123)" id="use5541" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 55.5,279.5 0,1" id="path5543" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,27.86123)" id="use5545" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,30.86123)" id="use5547" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,33.86123)" id="use5549" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-298.3149,36.86123)" id="use5551" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,34.86123)" id="use5553" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,31.86123)" id="use5555" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,28.86123)" id="use5557" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,25.86123)" id="use5560" y="0" x="0" /> -<use xlink:href="#path6100" height="1250" width="1250" transform="translate(-283.3149,22.86123)" id="use5563" y="0" x="0" /> -</g> -<g id="dialog-tile-clones" transform="translate(-0.49998107,-21.503099)" inkscape:label="#edit_create_tiled_clones"> -<g id="g5745" transform="matrix(1,0,0,0.996869,-59.55772,-28.70668)"> -<rect style="color:#000000;fill:url(#linearGradient5944);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5747" width="14.99917" height="11.99987" x="115.5577" y="338.80829" /> -<rect style="color:#000000;fill:url(#linearGradient5946);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5749" width="14.99819" height="3.011261" x="115.5588" y="335.7579" /> -</g> -<g transform="matrix(0.600005,0,0,0.599717,25.61153,139.5917)" id="g5803"> -<g id="g5704" transform="translate(50.5399,79.54113)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5948);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5706" width="8.9968081" height="7.9962969" x="5.4601002" y="205.4404" /> -<rect style="color:#000000;fill:url(#linearGradient5950);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5952);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5708" width="6.9948139" height="5.9933238" x="6.4601302" y="206.4404" /> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5954);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5711" width="11.99355" height="11.99031" x="8.4778118" y="208.4686" /> -<rect style="color:#000000;fill:url(#linearGradient5956);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5958);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5713" width="9.9823189" height="9.9715872" x="9.4778109" y="209.4688" /> -</g> -<rect y="293.0437" x="62.052299" height="4.0014329" width="5.9790282" id="rect5715" style="color:#000000;fill:url(#linearGradient5960);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5962);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 63.0113,291 c 0,1 0,1 0,1" id="path5717" /> -<use xlink:href="#path6162" height="1250" width="1250" transform="translate(-293.8567,32.29639)" id="use5721" y="0" x="0" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 64.0113,290 2,0" id="path5723" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 63,295.9816 0,-2 4,0" id="path5725" /> -</g> -</g> -<g id="edit-select-original" inkscape:label="#edit_select_original"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient6151);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5972" width="11.99355" height="11.99031" x="58.517712" y="309.50961" /> -<rect style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6148);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5974" width="9.9823189" height="9.9715872" x="59.517712" y="310.50989" /> -<rect style="color:#000000;fill:url(#linearGradient6122);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6125);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5976" width="5.9790282" height="4.0014329" x="61.552299" y="314.5437" /> -<path id="path5978" d="m 62.5113,312.5 c 0,1 0,1 0,1" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#path6162" x="0" y="0" id="use5981" transform="translate(-294.3567,53.7964)" width="1250" height="1250" /> -<path id="path5983" d="m 63.5113,311.5 2,0" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> -<path id="path5985" d="m 62.5,317.4816 0,-2 4,0" style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -<g id="g6161"> -<rect y="306.48151" x="55.5" height="7.9962969" width="8.9968081" id="rect5968" style="color:#000000;fill:none;stroke:url(#linearGradient6159);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="307.48141" x="56.500031" height="5.9933238" width="6.9948139" id="rect5970" style="color:#000000;fill:url(#linearGradient6154);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6156);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -</g> -<g id="text-flow-into-frame" transform="translate(-15.00082,-30.00001)" inkscape:label="#flow_into_frame"> -<rect y="118.5" x="296.50079" height="15.00001" width="14.99917" id="rect6267" style="color:#000000;fill:url(#linearGradient6369);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<g transform="matrix(0.5,0,0,0.5,149,70)" id="g6352"> -<path sodipodi:nodetypes="ccccccccccccccccc" d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path6342" /> -<path inkscape:label="#object_font" id="path6344" d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" style="fill:url(#linearGradient6371);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<path sodipodi:nodetypes="ccccccccccccccccc" id="path6358" d="m 308,126 0,3 2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 2,0 0,-3 1,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g id="text-unflow" inkscape:label="#unflow"> -<rect style="color:#000000;fill:none;stroke:#cc0000;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;display:inline" id="rect6375" width="14.99917" height="15.00001" x="281.5" y="110.5" /> -<g id="g6377" transform="matrix(0.5,0,0,0.5,133.9992,61.99999)"> -<path id="path6379" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" sodipodi:nodetypes="ccccccccccccccccc" /> -<path style="fill:url(#linearGradient6436);fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" id="path6381" inkscape:label="#object_font" /> -</g> -<path sodipodi:nodetypes="ccccccccccccccccc" id="path6428" d="m 290,119 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g id="text-convert-to-regular" inkscape:label="#convert_to_text"> -<g transform="matrix(0.725945,0,0,0.725944,63.34671,33.14915)" id="g15109"> -<rect y="135.47031" x="300.49991" height="11.02972" width="11.02971" id="rect15111" style="color:#000000;fill:url(#linearGradient15119);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.37751567;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<g transform="matrix(0.5,0,0,0.5,153,87)" id="g15113"> -<path sodipodi:nodetypes="ccccccccccccccccc" d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path15115" /> -<path inkscape:label="#object_font" id="path15117" d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" style="fill:url(#linearGradient15121);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -</g> -<rect ry="0" y="138.493" x="288.49301" height="8.006958" width="8.0069637" id="rect15125" style="color:#000000;fill:url(#linearGradient15141);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;marker:none;display:inline" /> -<g transform="matrix(0.362972,0,0,0.362972,181.4162,103.3063)" id="g15127"> -<path sodipodi:nodetypes="ccccccccccccccccc" d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path15129" /> -<path inkscape:label="#object_font" id="path15131" d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" style="fill:url(#linearGradient15135);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -</g> -<g id="text-unkern" inkscape:label="#remove_manual_kerns"> -<path id="rect15156" d="m 281.5,153.5 14.9992,0 0,15 -14.9992,0 0,-15 z" style="color:#000000;fill:url(#linearGradient15175);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 283.5,153.9828 0,14.0172 0,-14.0172 z" id="path15185" sodipodi:nodetypes="ccc" /> -<path sodipodi:nodetypes="ccc" id="path15187" d="m 290.5,153.9828 0,14.0172 0,-14.0172 z" style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" d="m 294.461,153.9828 0,14.0172 0,-14.0172 z" id="path15189" sodipodi:nodetypes="ccc" /> -<g transform="matrix(0.5,0,0,0.5,133.9992,105)" id="g15195"> -<path sodipodi:nodetypes="ccccccccccccccccc" d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" id="path15197" /> -<path inkscape:label="#object_font" id="path15199" d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" style="fill:url(#linearGradient15213);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<path style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 290,162 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" id="path15201" sodipodi:nodetypes="ccccccccccccccccc" /> -</g> -<g id="dialog-memory" inkscape:label="#about_memory"> -<rect style="color:#000000;fill:url(#linearGradient4689);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4657" width="14.99917" height="15.00001" x="331.50079" y="86.5" /> -<rect y="94" x="332" height="7" width="4.666667" id="rect4691" style="color:#000000;fill:url(#linearGradient4703);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" /> -<rect style="color:#000000;fill:url(#linearGradient4707);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" id="rect4705" width="4.666667" height="14.00001" x="336.66669" y="86.999992" /> -<rect y="91" x="341.33331" height="10" width="4.666667" id="rect4715" style="color:#000000;fill:url(#linearGradient4718);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" /> -</g> -<g id="dialog-input-devices" inkscape:label="#input_devices"> -<g transform="matrix(1,0,0,0.996869,-105.0577,-206.2098)" id="g5739"> -<rect y="338.80829" x="115.5577" height="11.99987" width="14.99917" id="rect5741" style="color:#000000;fill:url(#linearGradient5750);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect5744" style="color:#000000;fill:url(#linearGradient5752);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g transform="matrix(1,0,0,1.066667,-679.5,-193.0001)" id="g5768" style="display:inline"> -<rect y="303.75" x="691.5" height="10.31249" width="11" id="rect5771" style="fill:none;stroke:none" /> -<path sodipodi:nodetypes="ccccc" d="M 696.7189,305.998 696,305.5938 l -4,8 10,0 0,-0.9375" style="fill:none;stroke:url(#linearGradient5777);stroke-width:0.96824569;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" id="path5773" /> -<path sodipodi:nodetypes="cc" id="path5775" d="m 694.5,309.375 c 1.5,0.4688 3,2.3438 2.5,4.2188" style="fill:none;stroke:url(#linearGradient5779);stroke-width:0.96824569;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -</g> -<g id="document-metadata" inkscape:label="#document_metadata"> -<g id="g5714" transform="matrix(1,0,0,0.996869,-105.057,-226.2067)"> -<rect style="color:#000000;fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5716" width="14.99917" height="11.99987" x="115.5577" y="338.80829" /> -<rect style="color:#000000;fill:url(#linearGradient5730);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5718" width="14.99819" height="3.011261" x="115.5588" y="335.7579" /> -</g> -<path style="color:#000000;fill:url(#linearGradient5844);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5846);stroke-width:1.00000107;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 12.5,122.5 0,-9 7,0 4,4 0,5" id="path5826" sodipodi:nodetypes="ccccc" /> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5841);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 19.5,113.5 4,4 -4,0 0,-4 z" id="path5829" sodipodi:nodetypes="cccc" /> -<path sodipodi:nodetypes="cc" style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 22.5,122.5 0,-4" id="path5831" /> -</g> -<g id="color-fill" transform="matrix(0.78125,0,0,0.78125,451.845,442.25)" inkscape:label="#g3340"> -<path id="path30990" d="M 13.0063,24.4482 30.4465,15.9086 C 31.4092,15.4372 31.0551,10.9526 28.9338,6.62049 26.8126,2.28834 23.7236,-0.25897 22.7609,0.212415 L 5.32066,8.75199" style="fill:url(#linearGradient3352);fill-opacity:1;stroke:#000000;stroke-width:1.27999997;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" sodipodi:nodetypes="ccscc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 459.326,449.367 10.518,-5.119 c 1.234,0.647 1.542,1.015 2.233,2.513" id="path4825" sodipodi:nodetypes="ccc" transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" /> -<path style="fill:none;stroke:#000000;stroke-width:1.27999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="M 15.3452,14.3489 C 13.4479,-3.0346 8.35128,-2.74598 9.06756,6.76043" id="path31979" sodipodi:nodetypes="cs" /> -<path sodipodi:type="arc" style="fill:#c8c8c8;fill-opacity:1;stroke:#2e3436;stroke-width:1.13887095;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" id="path31981" sodipodi:cx="12.875" sodipodi:cy="14.875" sodipodi:rx="1.3125" sodipodi:ry="1.3125" d="m 14.1875,14.875 c 0,0.72487 -0.58763,1.3125 -1.3125,1.3125 -0.72487,0 -1.3125,-0.58763 -1.3125,-1.3125 0,-0.72487 0.58763,-1.3125 1.3125,-1.3125 C 13.59987,13.5625 14.1875,14.15013 14.1875,14.875 Z" transform="matrix(1.12392,0,0,1.12392,0.83338,-2.58525)" /> -<path style="color:#000000;fill:url(#radialGradient4365);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 456.281,449.062 c -0.068,0.008 -0.127,0.034 -0.187,0.063 -0.961,0.465 -0.457,3.569 1.156,6.937 0.988,2.063 2.18,3.737 3.156,4.626 -0.001,0.01 10e-4,0.02 0,0.031 -0.069,0.83 -0.759,1.709 -1.028,2.5 -10.092,0.32 -8.962,4.477 0.653,4.523 18.542,0.088 18.215,-4.476 2.844,-4.554 -0.273,-0.656 -0.558,-1.324 -0.781,-2 0.727,-0.738 0.168,-3.655 -1.344,-6.813 -1.512,-3.158 -3.442,-5.424 -4.469,-5.313 z" transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" id="path22088" sodipodi:nodetypes="csscscsccsc" /> -</g> -<g transform="matrix(0.941445,0,0,1.002693,-125.0319,-1.597622)" id="draw-trace-background" style="display:inline" inkscape:label="#g9319"> -<rect style="fill:url(#linearGradient9331);fill-opacity:1;stroke:none" id="rect9329" width="11.68417" height="10.97046" x="-703.20831" y="303.77951" transform="scale(-1,1)" /> -<rect y="303.7634" x="691.52399" height="10.9571" width="11.684" id="rect9321" style="fill:none;stroke:none" /> -<path sodipodi:nodetypes="ccccc" id="path9323" d="m 691.5241,314.2513 0.006,0.4987 11.6782,-0.0161 3e-4,-3.9732 c -2.8312,1.7762 -6.9043,3.4906 -11.6842,3.4906 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> -</g> -<g id="rectangle-make-corners-sharp" inkscape:label="#squared_corner"> -<rect y="120" x="500" height="16" width="16" id="rect9834" style="opacity:0.33213004;fill:none;stroke:none" /> -<g id="g11004"> -<path sodipodi:nodetypes="csccc" id="path8457" d="m 504,122 c -0.0938,2.5 4.2036,3.3952 5,4 1,0.7593 2.5,4.0937 5,4 l 0,-8 -10,0 z" style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;display:inline" /> -<path style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0.5;marker:none;display:inline" d="m 500,122 14,0 0,13" id="rect8453" sodipodi:nodetypes="ccc" /> -<path sodipodi:nodetypes="ccc" id="path8462" d="m 514,130 0,-8 -10,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -</g> -<g id="draw-ellipse" inkscape:label="#g8245"> -<rect y="145.03909" x="450" height="24" width="24" id="rect3417" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> -<path transform="matrix(0.795464,0,0,0.798577,364.99896,27.713449)" d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" sodipodi:ry="12" sodipodi:rx="12" sodipodi:cy="162" sodipodi:cx="122" id="draw_arc1" style="color:#000000;fill:none;stroke:url(#linearGradient6574);stroke-width:1.25467694;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<path transform="matrix(0.707159,0,0,0.70714,375.77206,42.487119)" d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" sodipodi:ry="12" sodipodi:rx="12" sodipodi:cy="162" sodipodi:cx="122" id="path5905" style="color:#000000;fill:url(#linearGradient5907);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5915);stroke-width:1.41412926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" sodipodi:type="arc" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" id="rect4336" width="24" height="24" x="450" y="145" /> -<path sodipodi:type="arc" style="color:#000000;fill:none;stroke:url(#linearGradient5389);stroke-width:1.25467694;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path4338" sodipodi:cx="122" sodipodi:cy="162" sodipodi:rx="12" sodipodi:ry="12" d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" transform="matrix(0.795464,0,0,0.798577,364.99896,27.67435)" /> -</g> -<g id="draw-ellipse-whole" style="fill:none" inkscape:label="#reset_circle"> -<rect y="150" x="500" height="16" width="16" id="rect4298" style="fill:none;stroke:none" /> -<path sodipodi:type="arc" style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:none" id="path4888" sodipodi:cx="508" sodipodi:cy="158" sodipodi:rx="6" sodipodi:ry="6" d="m 514,158 a 6,6 0 1 1 -12,0 6,6 0 1 1 12,0 z" /> -<path id="path5285" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" d="m 514,158 -6,0 3,-5" sodipodi:nodetypes="ccc" /> -<path d="m 514,158 a 6,6 0 1 1 -12,0 6,6 0 1 1 12,0 z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path5292" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" /> -</g> -<g style="fill:none" id="draw-ellipse-segment" transform="translate(20,0)" inkscape:label="#circle_closed_arc"> -<rect style="fill:none;stroke:none" id="rect4316" width="16" height="16" x="500" y="150" /> -<path d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962 L 508,158 Z" sodipodi:ry="6" sodipodi:rx="6" sodipodi:cy="158" sodipodi:cx="508" id="path4318" style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="4.18879" /> -</g> -<g transform="translate(40,0)" id="draw-ellipse-arc" style="fill:none" inkscape:label="#circle_open_arc"> -<rect y="150" x="500" height="16" width="16" id="rect4326" style="fill:none;stroke:none" /> -<path sodipodi:end="4.18879" sodipodi:start="0" sodipodi:type="arc" style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" id="path4328" sodipodi:cx="508" sodipodi:cy="158" sodipodi:rx="6" sodipodi:ry="6" d="m 514,158 c 0,3.3137 -2.6863,6 -6,6 -3.3137,0 -6,-2.6863 -6,-6 0,-2.1436 1.1436,-4.1244 3,-5.1962" sodipodi:open="true" /> -</g> -<g id="draw-cuboid" inkscape:label="#draw_3dbox"> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.04928207px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m 604.0245,114.9402 -11.8372,4.5906 -0.2295,13.0505 8.886,6.1973 11.3127,-3.607 0.2294,-12.5586 -8.3614,-7.6728 z" id="path5192" /> -<rect y="115" x="590" height="24" width="24" id="rect4344" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> -<path d="m 592.431,132.3014 11.2755,-3.9307 0.2248,-12.8797 -11.2836,4.3966 -0.2167,12.4138 z" style="fill:url(#linearGradient5190);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4628" inkscape:box3dface="XYfront" /> -<path d="m 592.431,132.3014 11.2755,-3.9307 7.9756,6.4087 -10.7756,3.4467 -8.4755,-5.9247 z" style="fill:url(#linearGradient5187);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4630" inkscape:box3dface="XZtop" /> -<path d="m 603.7065,128.3707 7.9756,6.4087 0.2089,-11.971 -7.9597,-7.3174 -0.2248,12.8797 z" style="fill:url(#linearGradient5184);fill-opacity:1;fill-rule:evenodd;stroke:none" id="path4633" inkscape:box3dface="YZleft" /> -<path id="path5202" d="m 603.8375,116.1429 -10.6428,4.1273 -0.2063,11.7338 7.9893,5.5718 10.1713,-3.2428 0.2064,-11.2914 -7.5179,-6.8987 z" style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1.06575453;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> -</g> -<g id="perspective-parallel" transform="matrix(1,0,0,1.090725,-0.3693,-12.921063)" inkscape:label="#toggle_vp_x"> -<path sodipodi:nodetypes="cc" d="m 646.3693,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4997" /> -<path sodipodi:nodetypes="cc" d="m 653.3817,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4979" /> -</g> -<g id="toggle_vp_y" transform="matrix(1,0,0,1.090725,39.6307,-12.921063)"> -<path sodipodi:nodetypes="cc" d="m 646.3693,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4987" /> -<path sodipodi:nodetypes="cc" d="m 653.3817,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4989" /> -</g> -<g id="toggle_vp_z" transform="matrix(1,0,0,1.090725,79.6307,-12.921063)"> -<path sodipodi:nodetypes="cc" d="m 646.3693,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4993" /> -<path sodipodi:nodetypes="cc" d="m 653.3817,119.7089 0,20.4924" style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="path4995" /> -</g> -<g id="3dbox_three_handles" transform="translate(0.22570801,-0.46199799)"> -<rect y="117.462" x="753.77429" height="7.406888" width="7.406888" id="rect6683" style="fill:#000000;fill-opacity:1;stroke:none" /> -<rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect7268" width="7.406888" height="7.406888" x="759.77429" y="131.46201" /> -<rect y="119.462" x="767.77429" height="7.406888" width="7.406888" id="rect7270" style="fill:#000000;fill-opacity:1;stroke:none" /> -</g> -<g id="3dbox_four_handles" transform="translate(0.22570801,0.53800201)"> -<rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect7277" width="7.406888" height="7.406888" x="793.77429" y="117.462" /> -<rect y="117.462" x="807.77429" height="7.406888" width="7.406888" id="rect7279" style="fill:#000000;fill-opacity:1;stroke:none" /> -<rect style="fill:#000000;fill-opacity:1;stroke:none" id="rect7281" width="7.406888" height="7.406888" x="807.77429" y="131.46201" /> -<rect y="131.46201" x="793.77429" height="7.406888" width="7.406888" id="rect7283" style="fill:#000000;fill-opacity:1;stroke:none" /> -</g> -<g transform="matrix(0.9610923,0,0,0.9805424,517.7012,-120.9824)" id="tool-tweak" inkscape:label="#g4398"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4400" width="24.97159" height="24.47625" x="-110.5099" y="180.0235" /> -<path style="fill:url(#linearGradient4415);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.91853738;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m -109.5169,193.9456 c 8.2165,1.6913 5.1224,-7.85 10.71653,-11.5841 1.72915,-1.1542 6.23552,-0.8058 7.60383,2.2962 1.01863,2.3092 0.57299,3.7792 -0.88086,3.3379 -1.52946,-0.4643 -1.24291,-2.3104 -3.81779,-1.813 -1.3025,0.2516 -2.0822,2.3434 -1.10913,4.6913 1.09776,2.6488 3.352,4.4227 8.9464,3.0717 l 0,9.5976 -21.45898,0 0,-9.5976 z" id="rect4412" sodipodi:nodetypes="cssssscccc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:0.91853738;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m -96.8577,182.6385 c -2.71067,0.552 -4.0177,3.4163 -4.8477,5.9037 -0.7259,2.2595 -1.4136,5.0237 -3.7439,6.0105 -1.0107,0.3882 -2.9612,0.5448 -4.0361,0.3826 l -0.0291,8.5583 21.4833,0.06 0,-8.5582 c -2.78224,0.4279 -5.92299,0.3649 -8.21536,-1.4697 -2.01583,-1.6882 -2.67843,-5.0914 -1.22227,-7.3482 1.45069,-1.684 4.46573,-0.982 5.41291,0.8999 0.78385,0.398 0.53026,-0.7543 0.39943,-1.2072 -0.63017,-2.1587 -3.02208,-3.4761 -5.20121,-3.2317 z" id="path4416" sodipodi:nodetypes="ccccccccccsc" /> -</g> -<g transform="translate(436.9762,-119.9465)" id="path-tweak-push" inkscape:label="#g4416"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4418" width="16" height="16" x="-45" y="175" /> -<path style="color:#000000;fill:url(#linearGradient4428);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" d="m -44.25871,182.3053 c 3.11679,0.0401 2.6059,-3.4751 7.25315,-3.4309 4.64725,0.0443 3.22096,3.5317 7.16093,3.4309 l 0,4.0749 c -3.54547,0 -4.29717,-3.6915 -7.16674,-3.6953 -3.18827,-0.004 -3.78523,3.6953 -7.24734,3.6953 l 0,-4.0749 z" id="path4426" sodipodi:nodetypes="czccscc" /> -<path sodipodi:nodetypes="cscczc" id="path4444" d="m -29.84463,186.3802 c -3.54547,0 -4.29717,-3.6915 -7.16674,-3.6953 -3.18827,-0.004 -3.78523,3.6953 -7.24734,3.6953 m 0,-4.0749 c 3.11679,0.0401 2.6059,-3.4751 7.25315,-3.4309 4.64725,0.0443 3.22096,3.5317 7.16093,3.4309" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -</g> -<g inkscape:label="#g4416" id="path-tweak-grow" transform="translate(416.9762,-119.9465)"> -<rect y="175" x="-45" height="16" width="16" id="rect4432" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="czccscc" id="path4435" d="m -44.25871,182.0349 c 3.11679,0.0401 3.76607,-3.1116 7.25315,-3.0784 3.48708,0.0331 3.22096,3.1792 7.16093,3.0784 l 0,4.0748 c -3.54547,0 -4.29717,2.8563 -7.16674,2.8526 -3.18827,-0.004 -3.78523,-2.8526 -7.24734,-2.8526 l 0,-4.0748 z" style="color:#000000;fill:url(#linearGradient4437);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> -<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m -29.84463,186.1097 c -3.54547,0 -4.29717,2.8563 -7.16674,2.8526 -3.18827,-0.004 -3.78523,-2.8526 -7.24734,-2.8526 m 0,-4.0748 c 3.11679,0.0401 3.76607,-3.1116 7.25315,-3.0784 3.48708,0.0331 3.22096,3.1792 7.16093,3.0784" id="path4442" sodipodi:nodetypes="cscczc" /> -</g> -<g transform="translate(396.9762,-119.9465)" id="path-tweak-shrink" inkscape:label="#g4416"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4443" width="16" height="16" x="-45" y="175" /> -<path style="color:#000000;fill:url(#linearGradient4447);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" d="m -29.84463,186.6535 c -3.54547,0 -4.66866,-2.3171 -7.16674,-2.3204 -2.49807,-0.003 -3.78523,2.3204 -7.24734,2.3204 l 0,-2.5541 0,-2.7501 c 3.11679,0.0401 4.21308,2.1772 7.25315,2.2062 3.04007,0.0289 3.22096,-2.1054 7.16093,-2.2062" id="path4445" sodipodi:nodetypes="czccczc" /> -<path sodipodi:nodetypes="czcczc" id="path4440" d="m -44.25871,181.3493 c 3.11679,0.0401 4.21308,1.8832 7.25315,1.9121 3.04007,0.0289 3.22096,-1.8113 7.16093,-1.9121 m 0,5.3042 c -3.54547,0 -4.66866,-2.149 -7.16674,-2.1523 -2.49807,-0.003 -3.78523,2.1523 -7.24734,2.1523" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -</g> -<g transform="translate(416.9762,-139.9465)" id="path-tweak-roughen" inkscape:label="#g4416"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4446" width="16" height="16" x="-45" y="175" /> -<path style="color:#000000;fill:url(#linearGradient4453);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" d="m -44.25871,180.0349 2.08042,1.5324 0.943,-1.889 0.9323,1.5968 2.85787,-3.1374 1.54512,2.182 1.09925,-1.1423 2.66542,2.4237 2.2907,-1.668 0,3.1205 0,1.0187 0,1.0187 0,1.0187 -2.22589,0.9033 -2.01263,-0.6499 2.07948,2.3704 -5.1049,-2.153 -3.14729,0.9362 0.98204,-3.1154 -2.84027,2.8292 -2.14462,-1.1208 0,-1.0187 0,-1.0187 0,-1.0187 0,-3.0187 z" id="path4448" sodipodi:nodetypes="ccccccccccccccccccccccccc" /> -<path sodipodi:nodetypes="cccccccccccccccccc" id="path4576" d="m -29.84463,186.1097 -2.22589,0.9033 -2.01263,-0.6499 2.07948,2.3704 -5.1049,-2.153 -3.14729,0.9362 0.98204,-3.1154 -2.84027,2.8292 -2.14462,-1.1208 m 0,-6.0748 2.08042,1.5324 0.943,-1.889 0.9323,1.5968 2.85787,-3.1374 1.54512,2.182 1.09925,-1.1423 2.66542,2.4237 2.2907,-1.668" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -</g> -<g id="document-import-ocal" inkscape:label="#ocal_import" transform="translate(-3.450267,2.75434)"> -<use xlink:href="#g5113" height="1250" width="1250" transform="translate(2.639605,16.28531)" id="use4598" y="0" x="0" /> -<use xlink:href="#path4685" transform="translate(14.58777,-33.04874)" x="0" y="0" id="use5366-8" width="1250" height="1250" /> -</g> -<g id="document-export-ocal" inkscape:label="#ocal_export"> -<g id="g5113" transform="matrix(1.121863,0,0,0.8467469,-1.696936,21.3021)"> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.7926421" transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" rx="3.259387" y="145.0049" x="-23.347811" height="11.80559" width="8.2076683" id="rect5675" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2102582;stroke-miterlimit:4;stroke-opacity:1" /> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.217725" transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" rx="2.588382" y="146.28799" x="-22.55011" height="9.3751888" width="6.517971" id="rect5679" style="fill:#bf0000;fill-rule:evenodd;stroke-width:0.7941308pt" /> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="3.0324271" rx="3.851753" y="150.48019" x="14.50112" height="12.70694" width="7.8302379" id="rect5668" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.21306241;stroke-miterlimit:4;stroke-opacity:1" /> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.408143" rx="3.058795" y="151.8613" x="15.26213" height="10.09097" width="6.2182322" id="rect5670" style="fill:#ff7f00;fill-rule:evenodd;stroke-width:0.7941308pt" /> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.946012" transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" rx="3.542479" y="134.1788" x="44.103321" height="12.43601" width="8.2538023" id="rect5662" style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.21640439;stroke-miterlimit:4;stroke-opacity:1" /> -<rect inkscape:export-ydpi="90.360001" inkscape:export-xdpi="90.360001" inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" ry="2.3395181" transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" rx="2.8131919" y="135.5302" x="44.905449" height="9.8758068" width="6.5545921" id="rect5664" style="fill:#f3e533;fill-opacity:1;fill-rule:evenodd;stroke-width:0.7941308pt" /> -</g> -<use xlink:href="#path4685" transform="translate(6.008357,-49.39594)" x="0" y="0" id="use5366" width="1250" height="1250" /> -</g> -<g inkscape:label="#g4416" id="path-tweak-attract" transform="translate(436.9762,-79.9465)"> -<rect y="175" x="-45" height="16" width="16" id="rect4494" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="czccscc" id="path4496" d="m -44.25871,185.7795 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897 l 0,2.6007 c -3.54547,0 -4.29717,-3.4257 -7.16674,-3.4281 -3.18827,-0.003 -3.78523,3.4281 -7.24734,3.4281 l 0,-2.6007 z" style="color:#000000;fill:url(#linearGradient4501);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> -<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m -29.84463,188.3802 c -3.54547,0 -4.29717,-3.3748 -7.16674,-3.3772 -3.18827,-0.003 -3.78523,3.3772 -7.24734,3.3772 m 0,-2.6007 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897" id="path4499" sodipodi:nodetypes="cscczc" /> -<path style="color:#000000;fill:url(#linearGradient4507);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" d="m -44.25871,180.1902 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897 l 0,-2.6007 c -3.54547,0 -4.29717,3.171 -7.16674,3.1734 -3.18827,0.003 -3.78523,-3.1734 -7.24734,-3.1734 l 0,2.6007 z" id="path4503" sodipodi:nodetypes="czccscc" /> -<path sodipodi:nodetypes="cscczc" id="path4505" d="m -29.84463,177.5895 c -3.54547,0 -4.29717,3.2729 -7.16674,3.2753 -3.18827,0.003 -3.78523,-3.2753 -7.24734,-3.2753 m 0,2.6007 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -</g> -<g transform="translate(416.9762,-79.9465)" id="path-tweak-repel" inkscape:label="#g4416"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4511" width="16" height="16" x="-45" y="175" /> -<path style="color:#000000;fill:url(#linearGradient4521);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" d="m -44.25871,186.1902 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897 l 0,-2.6007 c -3.54547,0 -4.29717,3.1201 -7.16674,3.1225 -3.18827,0.003 -3.78523,-3.1225 -7.24734,-3.1225 l 0,2.6007 z" id="path4513" sodipodi:nodetypes="czccscc" /> -<path sodipodi:nodetypes="cscczc" id="path4515" d="m -29.84463,183.5895 c -3.54547,0 -4.29717,3.171 -7.16674,3.1734 -3.18827,0.003 -3.78523,-3.1734 -7.24734,-3.1734 m 0,2.6007 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897" style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -<path sodipodi:nodetypes="czccscc" id="path4517" d="m -44.25871,179.7795 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897 l 0,2.6007 c -3.54547,0 -4.29717,-3.1201 -7.16674,-3.1225 -3.18827,-0.003 -3.78523,3.1225 -7.24734,3.1225 l 0,-2.6007 z" style="color:#000000;fill:url(#linearGradient4523);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> -<path style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m -29.84463,182.3802 c -3.54547,0 -4.29717,-3.1336 -7.16674,-3.136 -3.18827,-0.003 -3.78523,3.136 -7.24734,3.136 m 0,-2.6007 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897" id="path4519" sodipodi:nodetypes="cscczc" /> -</g> -<g inkscape:label="#g4416" id="object-tweak-paint" transform="translate(416.9762,-59.9465)"> -<rect y="175" x="-45" height="16" width="16" id="rect4527" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4542" width="4.0692749" height="4.0692749" x="-42.993931" y="176.8167" /> -<rect y="176.8167" x="34.855381" height="4.0692749" width="4.0692749" id="rect4544" style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(-1,1)" /> -<rect style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4547" width="4.0692749" height="4.0692749" x="-34.855381" y="176.8167" /> -<rect y="-184.95531" x="-42.993931" height="4.0692749" width="4.0692749" id="rect4549" style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(1,-1)" /> -<rect transform="scale(-1,-1)" style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4551" width="4.0692749" height="4.0692749" x="34.855381" y="-184.95531" /> -<rect y="-184.95531" x="-34.855381" height="4.0692749" width="4.0692749" id="rect4553" style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(1,-1)" /> -<rect style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4555" width="4.0692749" height="4.0692749" x="-42.993931" y="184.95531" /> -<rect y="184.95531" x="34.855381" height="4.0692749" width="4.0692749" id="rect4557" style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(-1,1)" /> -<rect style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4559" width="4.0692749" height="4.0692749" x="-34.855381" y="184.95531" /> -</g> -<g transform="translate(436.9762,-59.9465)" id="object-tweak-jitter-color" inkscape:label="#g4416"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4563" width="16" height="16" x="-45" y="175" /> -<rect y="176.88519" x="-43.134892" height="4.0692749" width="4.0692749" id="rect4565" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" /> -<rect style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4567" width="4.0692749" height="4.0692749" x="-43.134892" y="185.0237" /> -<rect y="-189.093" x="30.927059" height="4.0692749" width="4.0692749" id="rect4569" style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(-1,-1)" /> -<rect style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4571" width="4.0692749" height="4.0692749" x="-34.996319" y="-180.9545" transform="scale(1,-1)" /> -<rect y="-185.0237" x="34.996342" height="4.0692749" width="4.0692749" id="rect4573" style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(-1,-1)" /> -<rect transform="scale(1,-1)" style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4575" width="4.0692749" height="4.0692749" x="-39.065609" y="-180.9545" /> -<rect y="-185.0237" x="30.92705" height="4.0692749" width="4.0692749" id="rect4577" style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" transform="scale(-1,-1)" /> -<rect style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" id="rect4579" width="4.0692749" height="4.0692749" x="-39.065609" y="185.0237" /> -<rect y="180.9545" x="-43.134892" height="4.0692749" width="4.0692749" id="rect4581" style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" /> -</g> -<g id="path-effect-parameter-next" inkscape:label="#g10193" transform="translate(15.99998,0)"> -<path style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" d="m 761.9292,60.21135 c -0.3414,1.18151 -0.4346,2.17215 -0.4281,2.99843 0.01,0.82628 0.1156,1.48845 0.2553,2.01131 0.2794,1.04571 0.6632,1.54033 1.0358,1.62139 0.3726,0.0811 1.2662,-0.14612 2.1513,-0.44061 0.4426,-0.14724 0.882,-0.31062 1.2525,-0.48327 0.3706,-0.17265 0.6711,-0.35366 0.852,-0.57506 -0.6417,-0.70056 -1.6005,-1.29937 -2.6209,-1.99656 -0.5102,-0.34859 -1.0311,-0.72744 -1.4839,-1.21676 C 762.4904,61.64091 762.1008,61.0399 761.9292,60.21135 z m 2.5287,-1.19313 c -0.245,0.77868 -0.1482,1.65446 0.242,2.34394 0.3314,0.5876 0.8573,1.03045 1.4624,1.31726 0.5341,0.24746 1.1181,0.36714 1.7511,0.35988 -0.6951,-0.41948 -1.3004,-0.81941 -1.7888,-1.22821 -0.4883,-0.40881 -0.8578,-0.82592 -1.1137,-1.2213 C 764.4991,59.79903 764.4542,59.10024 764.4579,59.01822 z m 2.7983,-1.0336 c -0.4782,1.01311 -0.3614,1.72472 0.011,2.19649 0.3721,0.47177 0.9997,0.7295 1.7233,0.91459 -0.6571,-0.51105 -1.1449,-1.24552 -1.425,-1.88959 C 767.2851,58.56204 767.214,58.01559 767.2562,57.98462 z m 3.5258,-2.20259 c -0.5765,0.33177 -0.5058,1.38168 -0.778,1.76289 -0.526,0.73663 -1.0625,0.84666 -0.7801,1.43544 0.3664,0.76393 0.5254,0.37815 1.516,0.47373 0.3092,0.0298 1.2269,0.97451 1.5502,0.91628 C 771.3092,58.83005 770.7454,57.38913 770.782,55.78203 Z" id="path9858" inkscape:path-effect="#path-effect9860" inkscape:original-d="m 762.7922,66.84248 c 0.81,-3.72324 2.6964,-6.76942 8.7466,-8.75802" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path9256" d="m 762.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" style="fill:none;stroke:#008000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect9258" width="16" height="16" x="759.9762" y="55.053501" /> -<use xlink:href="#g6043" height="1250" width="1250" id="use9872" y="0" x="0" transform="translate(760,-189)" /> -<use xlink:href="#rect10675" transform="translate(805.0318,-128.6983)" x="0" y="0" id="use10185" width="1250" height="1250" /> -<use xlink:href="#rect10675" height="1250" width="1250" id="use10187" y="0" x="0" transform="translate(793.0318,-116.6983)" /> -</g> -<g id="grid-rectangular" transform="translate(-94,-28)" inkscape:label="#grid_xy"> -<path sodipodi:nodetypes="cc" id="path5235" d="m 305.5,421.5 0,15" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<use xlink:href="#path5235" x="0" y="0" id="use5238" transform="translate(4,0)" width="1250" height="1250" style="stroke-linecap:round" /> -<use xlink:href="#path5235" height="1250" width="1250" transform="translate(8,0)" id="use5244" y="0" x="0" style="stroke-linecap:round" /> -<use xlink:href="#path5235" x="0" y="0" id="use5246" transform="translate(12,0)" width="1250" height="1250" style="stroke-linecap:round" /> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 319.5,423.5 -15,0" id="path5252" sodipodi:nodetypes="cc" /> -<use xlink:href="#path5252" x="0" y="0" id="use5254" transform="translate(0,4)" width="1250" height="1250" style="stroke-linecap:round" /> -<use xlink:href="#path5252" height="1250" width="1250" transform="translate(0,8)" id="use5257" y="0" x="0" style="stroke-linecap:round" /> -<use xlink:href="#path5252" x="0" y="0" id="use5259" transform="translate(0,12)" width="1250" height="1250" style="stroke-linecap:round" /> -</g> -<g id="grid-axonometric" inkscape:label="#grid_axonom" transform="translate(-94,-28)"> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 332.5,421.5 0,15" id="path4674" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path5266" d="m 342.5,421.5 0,15" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 337.5,421.5 0,15" id="path5268" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path4720" d="m 330.4851,424.4741 15.0157,8.6693" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 330.4321,430.3454 10.6336,6.1393" id="path5309" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path5311" d="m 335.1528,421.4521 10.3077,5.9511" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path sodipodi:nodetypes="cc" id="path5313" d="m 330.4332,426.6692 9.0145,-5.2046" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 330.4696,432.5182 15.0017,-8.6612" id="path5315" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path5317" d="m 333.6366,436.5647 11.9001,-6.8705" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<g id="transform-move-horizontal" transform="translate(-511.43515,-131.24704)" inkscape:label="#arrows_hor" style="display:inline"> -<rect transform="translate(348.4108,47.248)" y="270" x="895" height="24" width="24" id="rect5457" style="color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<path sodipodi:nodetypes="cccccccc" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1248.435,332.2471 0,-1 12,0 0,-2 3,2.5 -3,2.5 0,-2 -12,0 z" id="path5435" /> -<g id="g5384" transform="translate(-10.01187,-3.897705e-5)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5727);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3619" width="8.9748974" height="7.9907908" x="1267.947" y="319.75629" /> -<rect style="color:#000000;fill:url(#linearGradient5729);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5731);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3621" width="6.9975381" height="5.9956141" x="1268.938" y="320.7514" /> -</g> -<use xlink:href="#g5384" style="opacity:0.5" height="1250" width="1250" transform="translate(-13.97489,0)" id="use6276" y="0" x="0" /> -</g> -<g id="transform-scale-horizontal" inkscape:label="#transform_scale_hor" transform="translate(-142.00842,-53.992004)"> -<g id="g6303" transform="translate(0,-0.0070343)"> -<rect y="244.5435" x="906.50592" height="14.95563" width="20.98823" id="rect6287" style="color:#000000;fill:url(#linearGradient5733);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5735);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="243.515" x="905.50842" height="16.984039" width="22.983259" id="rect6285" style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g style="opacity:0.5;display:inline" id="g12100" transform="matrix(1,0,0,2.125424,-355.4347,-436.1096)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5739);stroke-width:0.68592602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect12102" width="8.9748974" height="7.9907908" x="1267.947" y="319.75629" /> -<rect style="color:#000000;fill:url(#linearGradient5741);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5743);stroke-width:0.68592548;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect12104" width="6.9975381" height="6.9402218" x="1268.938" y="320.29971" /> -</g> -<path id="path5628" d="m 905.9609,255.57942 3,-2.50002 0,2.00002 16.0782,0 0,-2.00002 3,2.50002 -3,2.49998 0,-1.99998 -16.0782,0 0,1.99998 -3,-2.49998 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccc" /> -<rect y="240" x="905" height="24" width="24" id="rect5634" style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> -</g> -<g id="transform-rotate" inkscape:label="#transform_rotate" transform="matrix(-1,0,0,1,1753.9972,-53.895324)"> -<use xlink:href="#use6342" style="opacity:0.5" height="1250" width="1250" transform="matrix(0.707107,-0.707107,0.707107,0.707107,89.21378,722.4379)" id="use6356" y="0" x="0" /> -<rect y="240" x="905" height="24" width="24" id="rect5743" style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<path id="path5749" d="m 907,262 2e-5,-3 -2.00002,0 2.50002,-3 2.49998,3 -1.99998,0 -2e-5,3 3,0 0,1 -3,0 -1,-1 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccccc" /> -<g id="use6342" transform="matrix(0.707107,0.707107,-0.707107,0.707107,444.6614,-565.4777)"> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5757);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6346" width="14.99428" height="9.9891272" x="905.71863" y="240.2337" /> -<rect style="color:#000000;fill:url(#linearGradient5759);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5762);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6348" width="12.98509" height="7.9908481" x="906.7204" y="241.2301" /> -</g> -<use xlink:href="#path5749" height="1250" width="1250" transform="matrix(-1,0,0,-1,1834,507.9991)" id="use6358" y="0" x="0" /> -</g> -<g id="transform-skew-horizontal" inkscape:label="#transform_scew_hor" transform="matrix(-1,0,0,1,1723.0323,-54.001204)"> -<g id="g6663" style="opacity:0.5"> -<rect y="246.4982" x="911.46283" height="11.00354" width="11.07448" id="rect6417" style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5747);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="245.49879" x="910.46777" height="13.00241" width="13.0645" id="rect6419" style="color:#000000;fill:none;stroke:url(#linearGradient5749);stroke-width:0.99999791;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<rect y="240" x="905" height="24" width="24" id="rect6423" style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> -<path sodipodi:nodetypes="cccccccc" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 926,242 0,-2 3,2.5 -3,2.5 0,-2 -3,0 0,-0.9997 3,-3e-4 z" id="use6595" /> -<use xlink:href="#use6595" height="1250" width="1250" transform="matrix(-1,0,0,-1,1834,504)" id="use6602" y="0" x="0" /> -<g id="g6667" transform="matrix(1.008867,0,-0.759374,1,183.2271,0)"> -<rect style="color:#000000;fill:url(#linearGradient5751);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5753);stroke-width:0.99567062;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6669" width="11.07448" height="11.00519" x="907.10687" y="246.5351" transform="matrix(1,0,0.017299,0.9998504,0,0)" /> -<rect style="color:#000000;fill:none;stroke:url(#linearGradient5755);stroke-width:0.99566841;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6671" width="13.0645" height="13.00435" x="906.11182" y="245.53551" transform="matrix(1,0,0.017299,0.9998504,0,0)" /> -</g> -</g> -<g id="show-path-outline" transform="translate(842.93369,-119.91717)" inkscape:label="#nodes_show_helperpath"> -<path style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m -42.51871,188.4465 c 0,-5.4991 0.67562,-12.9767 11,-11 1.81091,0.3467 0.33484,11.7418 -11,11" id="path4756" sodipodi:nodetypes="csc" /> -<rect y="175" x="-45" height="16" width="16" id="rect4758" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use4760" y="0" x="0" transform="translate(-4.9762,-0.0534998)" /> -<use xlink:href="#rect4374" height="1250" width="1250" id="use4762" y="0" x="0" transform="translate(5.981293,-11.02417)" /> -</g> -<g id="randomize" transform="translate(-174.62312,-48.061624)"> -<rect y="208" x="777.85358" height="24" width="24" id="rect7476" style="fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> -<g id="g4914" transform="translate(5.853577,2.75)"> -<path id="path4908" d="m 773,210.5 0,12.5 11,5.5 11,-5.5 0,-12.5 -11,4.5 -11,-4.5 z" style="fill:url(#radialGradient8472);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5637);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" sodipodi:nodetypes="ccccccc" /> -<path sodipodi:nodetypes="ccccc" id="path4912" d="m 784,206 11,4.5 -11,4.5 -11,-4.5 11,-4.5 z" style="fill:url(#radialGradient8474);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5633);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 848,219 0,13.417" id="path5699" transform="translate(-64,-4)" sodipodi:nodetypes="cc" /> -<g id="g5864" transform="translate(-64,-4)"> -<path transform="matrix(1.795342,0,0,1.795342,-669.664,-176.9133)" d="m 843,222.75 c 0,0.6904 -0.3358,1.25 -0.75,1.25 -0.4142,0 -0.75,-0.5596 -0.75,-1.25 0,-0.6904 0.3358,-1.25 0.75,-1.25 C 842.6642,221.5 843,222.0596 843,222.75 Z" sodipodi:ry="1.25" sodipodi:rx="0.75" sodipodi:cy="222.75" sodipodi:cx="842.25" id="path5706" style="fill:url(#radialGradient5496);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" sodipodi:type="arc" /> -<use xlink:href="#path5706" x="0" y="0" id="use5833" transform="translate(9.037201,-1.473703)" width="1250" height="1250" /> -<use xlink:href="#path5706" x="0" y="0" id="use5842" transform="translate(9.037201,3.880038)" width="1250" height="1250" /> -<use xlink:href="#path5706" x="0" y="0" id="use5848" transform="translate(13.22746,-3.462058)" width="1250" height="1250" /> -<use xlink:href="#path5706" x="0" y="0" id="use5855" transform="translate(13.22746,1.844619)" width="1250" height="1250" /> -<use xlink:href="#path5706" x="0" y="0" id="use5857" transform="matrix(0,1,-1,0,1067.75,-628.0593)" width="1250" height="1250" /> -<use xlink:href="#path5706" x="0" y="0" id="use5859" transform="matrix(0,1,-1,0,1074.743,-628.0313)" width="1250" height="1250" /> -</g> -</g> -</g> -<g id="path-clip-edit" inkscape:label="#g7356" transform="translate(-21,0)"> -<path sodipodi:nodetypes="cc" id="path4828" d="m 855,62 c -2,2 -5,1.5 -8,-1.5" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> -<use xlink:href="#path4828" x="0" y="0" id="use4830" transform="matrix(0,1,1,0,785.5,-785)" width="1250" height="1250" /> -<path style="fill:none;stroke:#00ff00;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="m 842.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" id="path4813" sodipodi:nodetypes="cc" /> -<rect y="55.053501" x="839.9762" height="16" width="16" id="rect4815" style="fill:none;stroke:none;marker:none;display:inline" /> -<use xlink:href="#rect10675" height="1250" width="1250" id="use4819" y="0" x="0" transform="translate(885.0318,-128.6983)" /> -<use xlink:href="#rect10675" transform="translate(873.0318,-116.6983)" x="0" y="0" id="use4821" width="1250" height="1250" /> -</g> -<g id="path-mask-edit" inkscape:label="#g7344" transform="translate(-40,0)"> -<use xlink:href="#path4893" x="0" y="0" id="use4911" transform="matrix(0,1,1,0,825.5171,-825.2431)" width="1250" height="1250" /> -<path style="fill:none;stroke:url(#linearGradient5824);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" d="m 895,62 c -2,2 -6,1 -10,-4" id="path4893" sodipodi:nodetypes="cc" /> -<path sodipodi:nodetypes="cc" id="path4899" d="m 882.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" style="fill:none;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="fill:none;stroke:none;marker:none;display:inline" id="rect4901" width="16" height="16" x="879.9762" y="55.053501" /> -<use xlink:href="#rect10675" transform="translate(925.0318,-128.6983)" x="0" y="0" id="use4903" width="1250" height="1250" /> -<use xlink:href="#rect10675" height="1250" width="1250" id="use4905" y="0" x="0" transform="translate(913.0318,-116.6983)" /> -</g> -<g id="draw-eraser" transform="translate(1.5,359.5)" inkscape:label="#draw_erase"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" id="rect7418" width="24" height="24" x="450" y="115" /> -<g transform="matrix(0.8660254,0.5,-0.5,0.8660254,125.3963,-213.9852)" id="g8277"> -<rect style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7420" width="10.99167" height="18.991779" x="456.5083" y="117.5082" /> -<rect style="color:#000000;fill:url(#linearGradient7424);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7426);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect7422" width="9" height="17" x="457.5" y="118.5" /> -</g> -</g> -<path style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" d="m 887.09278,67.572248 c -2.0587,-0.26142 -3.7811,-2.06568 -3.9403,-4.13574 -0.2323,-2.06273 1.1189,-4.16029 3.0929,-4.80202 1.9506,-0.71096 4.3057,0.11085 5.3951,1.87722 0.6818,1.02879 0.8348,2.31056 0.6716,3.51285 -0.1753,1.20282 0.3156,2.52456 1.3984,3.14493 1.3484,0.86475 3.329,0.33453 4.065,-1.08834 0.8134,-1.38006 0.2089,-3.33927 -1.2407,-4.02117" id="path-mode-spiro" sodipodi:nodetypes="cccccccs" inkscape:label="#spiro_splines_mode" /> -<g id="path-mode-bezier" transform="matrix(0.6666666,0,0,0.6666666,934.49999,-64.835925)" inkscape:label="bezier_mode"> -<rect y="180" x="-110" height="24" width="24" id="rect4983" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="csc" id="path4985" d="m -107.5,202 c -0.5,-8 0.6365,-12.357 3.9649,-15.4022 C -100.5976,183.9103 -96,182 -88,182.5" style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="color:#000000;fill:#0000ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.50000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4987" width="6.1177049" height="5.9961362" x="-106.5" y="183.50391" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.20047224;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4989" width="4.7995281" height="4.8015089" x="-109.8907" y="198.8925" /> -<use xlink:href="#rect10541" height="1250" width="1250" transform="matrix(1.200473,0,0,1.200473,40.4649,-59.44417)" id="use4993" y="0" x="0" /> -</g> -<g id="path-mode-polyline" transform="matrix(0.6666666,0,0,0.6666666,976.13919,-64.654121)" inkscape:label="polylines_mode"> -<rect y="180" x="-110" height="24" width="24" id="rect4983-8" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="ccccc" id="path4985-5" d="m -85.93689,200.106 c 0,0 -19.27191,-10.1248 -19.27191,-10.1248 0,0 7.87184,-6.5308 7.87184,-6.5308 0,0 -4.40444,20.2338 -4.40444,20.2338 0,0 12.56783,-11.1304 12.56783,-11.1304" style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4989-9" width="2.9951611" height="2.996397" x="-86.988617" y="198.8744" /> -<rect y="190.5354" x="-90.292511" height="2.996397" width="2.9951611" id="rect8372" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8374" width="2.9951611" height="2.996397" x="-98.651253" y="181.5116" /> -<rect y="188.5146" x="-106.7003" height="2.996397" width="2.9951611" id="rect8376" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8378" width="2.9951611" height="2.996397" x="-103.3954" y="202.62289" /> -</g> -<g id="path-mode-polyline-paraxial" transform="matrix(0.6666666,0,0,0.6666666,996.85286,-65.39675)" inkscape:label="paraxial_lines_mode"> -<rect y="180" x="-110" height="24" width="24" id="rect4983-8-8" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<path sodipodi:nodetypes="ccccccc" id="path4985-5-5" d="m -83.37415,197.5433 c 0,0 -20.67835,0 -20.67835,0 0,0 0,-7.8541 0,-7.8541 0,0 8.84746,0 8.84746,0 0,0 0,13.6806 0,13.6806 0,0 5.91443,0 5.91443,0 0,0 0,-19.3232 0,-19.3232" style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect4989-9-0" width="2.9951611" height="2.996397" x="-84.48362" y="196.0672" /> -<rect y="182.1676" x="-90.81646" height="2.996397" width="2.9951611" id="rect8372-9" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8374-6" width="2.9951611" height="2.996397" x="-96.732529" y="188.1577" /> -<rect y="188.1577" x="-105.581" height="2.996397" width="2.9951611" id="rect8376-3" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8378-8" width="2.9951611" height="2.996397" x="-105.581" y="196.0672" /> -<rect y="201.7701" x="-96.732529" height="2.996397" width="2.9951611" id="rect5087" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5089" width="2.9951611" height="2.996397" x="-90.81646" y="201.7701" /> -</g> -<g id="draw-geometry-line-segment" transform="translate(733.29,-88.29195)" inkscape:label="line_segment"> -<path style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" d="M -44.20553,190.1345 -30.7183,176.434" id="path4418-8" sodipodi:nodetypes="cc" /> -<rect y="175" x="-45" height="16" width="16" id="rect4420-5" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="color:#000000;fill:#ff2100;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#d40000;stroke-width:0.64440769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="use5756-0-3" width="2.5502379" height="2.5587261" x="-41.81641" y="185.1907" /> -<use xlink:href="#use5756-0-3" height="1250" width="1250" transform="translate(6.040428,-6.111492)" id="use5845" y="0" x="0" /> -</g> -<g id="draw-geometry-circle-from-three-points" inkscape:label="circle_3pts" transform="translate(70,0)"> -<path style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" d="m 658.0599,95.55848 c 0,0.80381 -0.1598,1.60731 -0.4674,2.34994 -0.3076,0.74262 -0.7628,1.4238 -1.3311,1.99217 -0.5683,0.56841 -1.2494,1.02351 -1.9918,1.33111 -0.7424,0.3075 -1.5456,0.4673 -2.3489,0.4673 -0.8033,-1e-4 -1.6061,-0.1599 -2.348,-0.4676 -0.7419,-0.3076 -1.4222,-0.7628 -1.9898,-1.33116 -0.5676,-0.56838 -1.0221,-1.2495 -1.3292,-1.99207 -0.3071,-0.74256 -0.4667,-1.54597 -0.4667,-2.34969 0,-0.80373 0.1596,-1.60714 0.4667,-2.3497 0.3071,-0.74256 0.7616,-1.42369 1.3292,-1.99207 0.5676,-0.56837 1.2479,-1.02353 1.9898,-1.33117 0.7419,-0.30764 1.5447,-0.46752 2.348,-0.46757 0.8033,-4e-5 1.6065,0.15974 2.3489,0.46731 0.7424,0.30758 1.4235,0.76271 1.9918,1.33108 0.5683,0.56838 1.0235,1.24955 1.3311,1.99218 0.3076,0.74262 0.4674,1.54612 0.4674,2.34994" id="path2526" /> -<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6" transform="translate(690.7581,-96.67858)" width="1250" height="1250" /> -<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1" transform="translate(686.3637,-90.33765)" width="1250" height="1250" /> -<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-9" transform="translate(697.4319,-87.13558)" width="1250" height="1250" /> -</g> -<g id="draw-geometry-angle-bisector" inkscape:label="angle_bisector" transform="translate(130,0)"> -<path sodipodi:nodetypes="cc" id="path4418-8-1" d="M 683.5954,101.6495 672.621,88.41118" style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.72727266;stroke-dasharray:none" /> -<path sodipodi:nodetypes="ccc" d="m 677.4691,101.0666 -2.6405,-10.1315 9.7457,4.74274" style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" id="path4418-8-1-0" /> -</g> -<g transform="translate(110,2.2e-5)" id="draw-geometry-line-perpendicular" inkscape:label="perp_bisector"> -<path sodipodi:nodetypes="cc" id="path4418-8-1-2" d="M 683.5954,101.6495 672.621,88.41118" style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.72727266;stroke-dasharray:none" /> -<path sodipodi:nodetypes="cc" d="m 674.4659,97.31266 7.1053,-5.38872" style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" id="path4418-8-1-0-1" /> -</g> -<rect style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.30013371;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.3001337, 2.3001337;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="show-bounding-box" width="10.66002" height="16.84721" x="865.56531" y="86.075531" inkscape:label="lpetool_show_bbox" /> -<g transform="translate(92.93803,-0.728071)" id="draw-geometry-circle-from-radius" inkscape:label="circle_3pts"> -<path style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" d="m 658.0599,95.55848 c 0,0.80381 -0.1598,1.60731 -0.4674,2.34994 -0.3076,0.74262 -0.7628,1.4238 -1.3311,1.99217 -0.5683,0.56841 -1.2494,1.02351 -1.9918,1.33111 -0.7424,0.3075 -1.5456,0.4673 -2.3489,0.4673 -0.8033,-1e-4 -1.6061,-0.1599 -2.348,-0.4676 -0.7419,-0.3076 -1.4222,-0.7628 -1.9898,-1.33116 -0.5676,-0.56838 -1.0221,-1.2495 -1.3292,-1.99207 -0.3071,-0.74256 -0.4667,-1.54597 -0.4667,-2.34969 0,-0.80373 0.1596,-1.60714 0.4667,-2.3497 0.3071,-0.74256 0.7616,-1.42369 1.3292,-1.99207 0.5676,-0.56837 1.2479,-1.02353 1.9898,-1.33117 0.7419,-0.30764 1.5447,-0.46752 2.348,-0.46757 0.8033,-4e-5 1.6065,0.15974 2.3489,0.46731 0.7424,0.30758 1.4235,0.76271 1.9918,1.33108 0.5683,0.56838 1.0235,1.24955 1.3311,1.99218 0.3076,0.74262 0.4674,1.54612 0.4674,2.34994" id="circle_with_radius" inkscape:label="circle_with_radius" /> -<path sodipodi:nodetypes="cc" d="m 651.6968,95.73494 5.4178,-3.38872" style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" id="path4418-8-1-0-1-0" /> -<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-4" transform="translate(692.3012,-90.77515)" width="1250" height="1250" /> -<use xlink:href="#use5756-0-3" x="0" y="0" id="use5845-6-1-9-8" transform="translate(697.6194,-94.13558)" width="1250" height="1250" /> -</g> -<g transform="matrix(0.4295736,0.9030318,-0.9030318,0.4295736,560.3677,-559.0022)" id="draw-geometry-line-parallel" inkscape:label="parallel"> -<path sodipodi:nodetypes="cc" d="m 672.4285,92.87286 14.7066,-3.2674" style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" id="path4418-8-1-0-1-4-4" /> -<path sodipodi:nodetypes="cc" d="m 673.2681,96.33213 14.7067,-3.26741" style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" id="path4418-8-1-0-1-4-4-6" /> -</g> -<g id="draw-geometry-inactive" inkscape:label="all_inactive_old" transform="translate(50.20458,0)"> -<rect y="85.500023" x="612.75" height="24" width="20.25" id="rect5112" style="color:#000000;fill:none;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline" /> -<path id="path6027" d="m 617.64905,102.88197 10.4519,-10.763857" style="fill:none;stroke:#000000;stroke-width:4.23622561;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" /> -<path id="path6027-1" d="M 628.25684,102.72593 617.49316,92.274104" style="fill:none;stroke:#000000;stroke-width:4.23622561;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" /> -</g> -<text xml:space="preserve" style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#008f00;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial" x="614.23224" y="103.43147" id="all_inactive" sodipodi:linespacing="100%" inkscape:label="all_inactive"><tspan sodipodi:role="line" id="tspan5899" x="614.23224" y="103.43147">none</tspan></text> -<g transform="matrix(0.4295736,0.9030318,-0.9030318,0.4295736,624.3677,-559.0021)" id="draw-geometry-mirror" inkscape:label="mirror_symmetry"> -<path sodipodi:nodetypes="cs" d="m 674.8734,92.098 c 5.4139,5.20542 2.5695,-7.76863 9.7231,-0.7933" style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" id="path4418-8-1-0-1-4-4-8" /> -<path sodipodi:nodetypes="cc" d="m 673.2681,96.33213 14.7067,-3.26741" style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" id="path4418-8-1-0-1-4-4-6-5" /> -<path sodipodi:nodetypes="cs" d="m 676.5145,99.48186 c 2.6094,-7.04252 5.4004,6.66004 9.0995,-3.51658" style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" id="path4418-8-1-0-1-4-4-8-5" /> -</g> -<g transform="translate(416.9762,-39.9465)" id="object-tweak-push" inkscape:label="#g4416"> -<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect4991" width="16" height="16" x="-45" y="175" /> -<g id="g5135" style="fill:#000000" transform="translate(-416.8263,39.0012)"> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5011" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" /> -<use xlink:href="#path5011" transform="translate(4.825002e-8,2.41142)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5085" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0067742,5.089253)" id="use5087" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.0027824,7.946541)" id="use5091" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.959973,-0.63416)" id="use5095" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.006247,0.88896)" id="use5097" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.034311,2.716243)" id="use5099" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.998324,5.976212)" id="use5101" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.922205,-0.70933)" id="use5105" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.986644,0.3787152)" id="use5107" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.028303,2.049693)" id="use5109" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.985226,4.82628)" id="use5111" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.86036,-0.67653)" id="use5115" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.908855,0.84335)" id="use5117" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.937926,2.560875)" id="use5119" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.901517,5.920781)" id="use5121" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.79723,-0.00985)" id="use5125" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80716,2.53059)" id="use5127" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,5.183143)" id="use5129" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.80214,7.912301)" id="use5131" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5011" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5136" transform="translate(0.0027824,10.71149)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5011" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5138" transform="translate(2.998324,9.724665)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5011" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5140" transform="translate(5.985226,9.503606)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5011" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5142" transform="translate(8.901517,9.887791)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5011" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5144" transform="translate(11.80214,10.67725)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -</g> -</g> -<rect inkscape:label="#rect5080" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_move_mode_inout" width="16" height="16" x="391.9762" y="135.0535" /> -<g id="object-tweak-attract" style="fill:#000000" transform="translate(20.0953,-1.38242)" inkscape:label="#g5082"> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.861385,11.02164)" id="use5124" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5130" transform="translate(2.953795,11.09914)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.11579,3.027365)" id="use5088" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5126" transform="translate(11.0383,9.082095)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(10.38143,6.05473)" id="use5090" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5132" transform="translate(5.90759,10.40446)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" /> -<use xlink:href="#path5084" transform="translate(8.706381,0.9318868)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.953795,0.8543842)" id="use5092" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,0)" id="use5094" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(1.317544,6.05473)" id="use5096" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.7764177,9.082095)" id="use5098" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,1.588803)" id="use5100" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.6601638,3.027365)" id="use5103" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.225052,3.298622)" id="use5106" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.147551,8.733335)" id="use5108" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,4.189904)" id="use5110" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.706381,3.376124)" id="use5112" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(3.961329,6.05473)" id="use5114" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,7.764549)" id="use5116" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.698848,6.05473)" id="use5120" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.90759,6.05473)" id="use5118" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.628879,8.772087)" id="use5122" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5128" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5134" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -</g> -<rect inkscape:label="#rect5080-2" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_move_mode_jitter" width="16" height="16" x="410.95239" y="135.10649" /> -<g id="object-tweak-randomize" style="fill:#000000" transform="translate(39.0715,-1.3294)" inkscape:label="#g5082-9"> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-3" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.24976,-27.879)" /> -<use xlink:href="#path5084-3" transform="translate(8.561625,0.49145)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.84313,2.65475)" id="use5088-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.465,6.015863)" id="use5090-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.800431,0.1644349)" id="use5092-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.808,-0.0096427)" id="use5094-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(-0.4334583,6.118019)" id="use5096-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.2602591,9.383794)" id="use5098-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.0991,-0.2204626)" id="use5100-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(0.4371078,2.794418)" id="use5103-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.823264,2.99384)" id="use5106-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.2685,8.914454)" id="use5108-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.821966,3.036785)" id="use5110-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.506131,3.395216)" id="use5112-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(2.865657,4.495371)" id="use5114-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(5.940444,8.422506)" id="use5116-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(6.998359,5.075075)" id="use5118-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(7.573388,6.436901)" id="use5120-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.395772,9.33012)" id="use5122-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(8.885973,11.77538)" id="use5124-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-3" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5126-2" transform="translate(11.49834,9.064573)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-3" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5128-6" transform="translate(-0.009413,12.10337)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-3" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5130-6" transform="translate(3.166048,12.23381)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-3" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5132-7" transform="translate(5.944623,11.84999)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-3" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5134-4" transform="translate(11.80662,12.10332)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -</g> -<rect inkscape:label="#rect5080-7" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_scale_mode" width="16" height="16" x="372.07108" y="157.0817" /> -<g id="object-tweak-shrink" style="fill:#000000" transform="translate(0.1905,20.64585)" inkscape:label="#g5082-3"> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" inkscape:tile-h="2.223736" inkscape:tile-w="2.223736" inkscape:tile-cy="137.9821" inkscape:tile-cx="375.0941" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5084-2" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" /> -<use xlink:href="#path5084-2" transform="matrix(0.9860759,0,0,0.9860759,14.06913,1.928293)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.28127459" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9791266,0,0,0.9791266,19.62171,5.917923)" id="use5088-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.2832711" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9025255,0,0,0.9025255,48.27027,19.55311)" id="use5090-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.3073135" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9860707,0,0,0.9860707,8.163368,1.928972)" id="use5092-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.28127581" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,0)" id="use5094-42" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9068615,0,0,0.9068615,34.83344,18.95266)" id="use5096-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.3058435" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9828022,0,0,0.9828022,6.431961,11.46371)" id="use5098-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.2822113" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9220478,0,0,0.9220478,35.06151,10.79493)" id="use5100-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.3008064" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9801935,0,0,0.9801935,7.407717,5.770255)" id="use5103-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.28296289" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6146776,0,0,0.6146776,147.0627,56.38727)" id="use5106-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.451224" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6232617,0,0,0.6232617,143.8529,61.25332)" id="use5108-2" style="fill:#000000;stroke:#ffffff;stroke-width:0.44501051" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4296546,0,0,0.4296546,219.2145,82.00947)" id="use5110-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.64553702" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6112925,0,0,0.6112925,154.2364,56.85603)" id="use5112-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.45372361" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4261003,0,0,0.4261003,217.5898,85.52904)" id="use5114-3" style="fill:#000000;stroke:#ffffff;stroke-width:0.65092158" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4378052,0,0,0.4378052,216.1661,86.93554)" id="use5116-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.63351899" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.256807,0,0,0.256807,283.8591,108.9729)" id="use5118-6" style="fill:#000000;stroke:#ffffff;stroke-width:1.08002281" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4222839,0,0,0.4222839,224.9252,86.0576)" id="use5120-92" style="fill:#000000;stroke:#ffffff;stroke-width:0.65680492" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.6190024,0,0,0.6190024,151.3531,61.84314)" id="use5122-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.44807181" width="1250" height="1250" /> -<use xlink:href="#path5084-2" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9884129,0,0,0.9884129,13.19493,13.71404)" id="use5124-2" style="fill:#000000;stroke:#ffffff;stroke-width:0.28060961" width="1250" height="1250" /> -<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.28292781" id="use5126-4" transform="matrix(0.9803125,0,0,0.9803125,19.17819,11.80843)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5128-4" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.2802223" id="use5130-0" transform="matrix(0.9897789,0,0,0.9897789,6.776422,13.52485)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.29816419" id="use5132-1" transform="matrix(0.9302193,0,0,0.9302193,32.00541,21.7728)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#path5084-2" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5134-8" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -</g> -<rect inkscape:label="#rect5080-5" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="tweak_rotate_mode" width="16" height="16" x="392.0683" y="156.9639" /> -<g id="object-tweak-rotate" style="fill:#000000" transform="translate(20.1874,20.52808)" inkscape:label="#g5082-36"> -<use xlink:href="#rect5405" transform="matrix(0.9927752,0.1199887,-0.1199887,0.9927752,28.17842,-43.8731)" x="0" y="0" inkscape:tiled-clone-of="#path5011" id="use5086-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9930841,0.1174035,-0.1174035,0.9930841,30.65864,-39.92162)" id="use5088-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9707895,0.2399317,-0.2399317,0.9707895,55.96322,-79.63037)" id="use5090-9" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9898587,0.142054,-0.142054,0.9898587,26.4169,-51.72114)" id="use5092-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="translate(11.81518,0)" id="use5094-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9520134,0.306057,-0.306057,0.9520134,60.32662,-101.7599)" id="use5096-08" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9893261,0.1457176,-0.1457176,0.9893261,24.16967,-43.93548)" id="use5098-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.964703,0.263341,-0.263341,0.964703,55.57351,-93.59679)" id="use5100-2" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9866073,0.1631128,-0.1631128,0.9866073,27.59522,-56.11927)" id="use5103-7" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.708691,0.705519,-0.705519,0.708691,209.5928,-220.4851)" id="use5106-2" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.7404779,0.6720807,-0.6720807,0.7404779,193.0747,-206.3267)" id="use5108-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4506213,0.8927151,-0.8927151,0.4506213,334.9811,-254.7574)" id="use5110-65" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.7521633,0.6589768,-0.6589768,0.7521633,192.7978,-209.099)" id="use5112-8" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4220244,0.9065843,-0.9065843,0.4220244,344.6426,-252.9571)" id="use5114-5" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.5013396,0.8652508,-0.8652508,0.5013396,312.2107,-245.4545)" id="use5116-6" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.0314108,0.9995066,-0.9995066,0.0314108,506.5457,-233.6188)" id="use5118-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.4941625,0.8693694,-0.8693694,0.4941625,318.4189,-249.0282)" id="use5120-1" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.7802341,0.6254874,-0.6254874,0.7802341,177.6622,-194.4068)" id="use5122-0" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" x="0" y="0" inkscape:tiled-clone-of="#path5011" transform="matrix(0.9957744,0.091834,-0.091834,0.9957744,23.15816,-21.64954)" id="use5124-4" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" width="1250" height="1250" /> -<use xlink:href="#rect5405" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5126-7" transform="matrix(0.9946836,0.102978,-0.102978,0.9946836,28.063,-28.69348)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#rect5405" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5128-0" transform="translate(0,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#rect5405" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5130-7" transform="matrix(0.9938227,0.1109792,-0.1109792,0.9938227,20.63155,-28.53934)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#rect5405" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5132-5" transform="matrix(0.9757626,0.2188315,-0.2188315,0.9757626,45.27406,-66.3732)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<use xlink:href="#rect5405" height="1250" width="1250" style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" id="use5134-1" transform="translate(11.81518,12.10946)" inkscape:tiled-clone-of="#path5011" y="0" x="0" /> -<rect y="136.95441" x="373.47241" height="3.036042" width="1.2579449" id="rect5405" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> -</g> -<rect y="157.0817" x="411.24261" height="16" width="16" id="tweak_moreless_mode" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" inkscape:label="#rect5080-7" /> -<g clip-path="url(#clipPath5905)" transform="translate(37.4344,20.35234)" style="fill:#000000" id="object-tweak-duplicate" inkscape:label="#g5678"> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5685" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.361086,0,0,2.361086,-503.8152,-187.3038)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5687" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.176368,0,0,2.176368,-434.5286,-155.763)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use5828" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.363946,0,0,2.363946,-504.888,-175.5924)" /> -<path transform="matrix(0,2.361086,-2.361086,0,713.6548,-741.0926)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" id="path5885" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path transform="matrix(0,2.363946,-2.363946,0,701.94,-742.1654)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" id="path5889" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5893" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0,2.361086,-2.361086,0,713.6548,-747.1456)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5895" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(0,2.363946,-2.363946,0,701.94,-748.2184)" /> -<path transform="matrix(0,2.361086,-2.361086,0,713.6548,-735.0396)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" id="path5897" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path transform="matrix(0,2.363946,-2.363946,0,701.94,-736.1123)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" id="path5899" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path transform="matrix(2.176368,0,0,2.176368,-433.9294,-155.2869)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" id="path5909" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="path5911" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(2.176368,0,0,2.176368,-433.3154,-154.7343)" /> -</g> -<rect y="181.0817" x="372.07108" height="16" width="16" id="tweak_blur_mode" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" inkscape:label="#rect5080-7" /> -<g transform="translate(0.1905,44.64585)" style="fill:#000000" id="object-tweak-blur" inkscape:label="#g7655"> -<path transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" sodipodi:type="arc" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" id="path7657" sodipodi:cx="375.09409" sodipodi:cy="137.9821" sodipodi:rx="1.111868" sodipodi:ry="1.111868" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" inkscape:tile-cx="375.0941" inkscape:tile-cy="137.9821" inkscape:tile-w="2.223736" inkscape:tile-h="2.223736" inkscape:tile-x0="373.9822" inkscape:tile-y0="136.8702" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7660" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188922,0,0,1.188922,-63.09951,-25.56857)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7662" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.180543,0,0,1.180543,-57.00309,-21.38516)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7664" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.088184,0,0,1.088184,-22.35986,-5.61394)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7666" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.188915,0,0,1.188915,-69.00487,-25.56775)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7668" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-66.44314,-27.88514)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7670" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.093412,0,0,1.093412,-36.13602,-6.3353)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7672" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.184974,0,0,1.184974,-70.48049,-15.94187)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7674" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.111722,0,0,1.111722,-37.0964,-14.9165)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7676" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.181829,0,0,1.181829,-69.30058,-21.56258)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7678" style="color:#000000;fill:url(#radialGradient7818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-180.3604,-63.50353)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7680" style="color:#000000;fill:url(#radialGradient7802);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-180.3597,-57.44874)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7682" style="color:#000000;fill:url(#radialGradient7826);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-177.4064,-63.50356)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7684" style="color:#000000;fill:url(#radialGradient7834);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-174.4526,-63.50354)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7686" style="color:#000000;fill:url(#radialGradient7810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-180.3605,-60.47619)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7688" style="color:#000000;fill:url(#radialGradient7794);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.4858,0,0,1.4858,-177.4101,-57.45014)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7692" style="color:#000000;fill:url(#radialGradient7842);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.485788,0,0,1.485788,-174.4524,-60.47613)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7694" style="color:#000000;fill:url(#radialGradient7786);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.492675,0,0,1.492675,-177.0357,-58.39903)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7696" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.191739,0,0,1.191739,-64.1566,-13.84799)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7698" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.181973,0,0,1.181973,-57.53942,-15.52772)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7700" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-78.25832,-15.77568)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7702" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.193386,0,0,1.193386,-70.68201,-14.07527)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7704" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.121575,0,0,1.121575,-40.79199,-4.166495)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7706" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(1.20571,0,0,1.20571,-66.44314,-15.77568)" /> -<path inkscape:tile-y0="136.8702" inkscape:tile-x0="373.9822" d="m 376.206,137.9821 c 0,0.6141 -0.4978,1.1119 -1.1119,1.1119 -0.6141,0 -1.1119,-0.4978 -1.1119,-1.1119 0,-0.6141 0.4978,-1.1119 1.1119,-1.1119 C 375.7082,136.8702 376.206,137.368 376.206,137.9821 Z" sodipodi:ry="1.111868" sodipodi:rx="1.111868" sodipodi:cy="137.9821" sodipodi:cx="375.09409" id="use7690" style="color:#000000;fill:url(#radialGradient7778);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" sodipodi:type="arc" transform="matrix(6.75293,0,0,6.75293,-2153.081,-787.2478)" /> -</g> -<g inkscape:label="#node_symmetric" transform="translate(736.47168,-120)" id="node-type-auto-smooth"> -<path sodipodi:nodetypes="csc" id="path5383" d="m -44.41296,176.5635 c -0.52712,3.4524 1.3869,9.3867 7.3869,9.3867 6,0 7.98876,-5.9343 7.51588,-9.3867" style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect5385" width="16" height="16" x="-45" y="175" /> -<rect transform="matrix(2.790265e-6,-1,1,-2.867107e-6,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5387" width="4.9663939" height="4.9501772" x="-188.48309" y="-39.479382" ry="2.4750891" /> -</g> -<g id="snap" inkscape:label="#toggle_snap_global"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6" width="16" height="16" x="620" y="30" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0" width="16" height="16" x="620" y="30.00057" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2" width="3.5840631" height="3.621212" x="415.401" y="462.05151" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692000000002;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-8" width="3.5840631" height="3.621212" x="415.401" y="476.28201" /> -<path id="path9093" d="m 631,41 0,-4 -4,4 4,0" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" inkscape:transform-center-y="-2.12133" inkscape:transform-center-x="1.414208" y="466.7135" x="416.69299" height="7.9622078" width="1" id="rect9095" style="fill:#000000;fill-opacity:1;stroke:none" /> -</g> -<g id="snap-bounding-box" inkscape:label="#toggle_snap_bbox"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4" width="16" height="16" x="638" y="30" /> -<path id="path9141" d="m 641,46 0,-13 13,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-2" width="3.5840631" height="3.621212" x="428.12891" y="474.69101" /> -</g> -<g id="snap-bounding-box-edges" inkscape:label="#toggle_snap_to_bbox_path"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-5" width="16" height="16" x="656" y="30.00057" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0-1" width="16" height="16" x="656" y="30.001141" /> -<path id="path9141-9" d="m 669,30 0,13 -13,0" style="color:#000000;fill:none;stroke:#008000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -</g> -<g id="snap-bounding-box-corners" inkscape:label="#toggle_snap_to_bbox_node"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-0" width="16" height="16" x="674" y="30.00057" /> -<path id="path9141-9-2" d="m 687,30 0,13 -13,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-8-6" width="3.5840631" height="3.621212" x="453.58469" y="514.37732" /> -</g> -<g id="snap-nodes" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_nodes"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-7" width="16" height="16" x="692" y="30.00057" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0-8" width="16" height="16" x="692" y="30.001141" /> -<path sodipodi:nodetypes="ccsc" id="path6308" d="m 693,38 c 0,0 0,-5 7,-5 -4,5 -2.25,8 0.5,9.75 2.75,1.75 6.5,2.25 6.5,2.25" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-9" width="3.5840631" height="3.621212" x="469.82391" y="516.5415" /> -</g> -<g id="snap-nodes-path" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_paths"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-8" width="16" height="16" x="710" y="30.00057" /> -<path sodipodi:nodetypes="ccsc" id="path6308-6" d="m 725,39 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 714.75,32.5 711,32 711,32" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="ccsc" id="path6308-6-9" d="m 725,39.00001 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 -2.75,-1.75 -6.5,-2.25 -6.5,-2.25" style="color:#000000;fill:none;stroke:#008000;stroke-width:1.00000019999999989;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -</g> -<g id="snap-nodes-cusp" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_nodes"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-74" width="16" height="16" x="728" y="30.00057" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0-19" width="16" height="16" x="728" y="30.001141" /> -<path sodipodi:nodetypes="ccsc" id="path6308-6-3" d="m 743,38 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 732.75,31.5 729,31 729,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-8-6-5" width="3.5840631" height="3.621212" x="488.233" y="549.02557" /> -</g> -<g id="snap-nodes-smooth" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_smooth_nodes"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-09" width="16" height="16" x="746" y="30.00057" /> -<path sodipodi:nodetypes="ccsc" id="path6308-6-3-2" d="m 761,38 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 750.75,31.5 747,31 747,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<rect transform="matrix(0,-1,1,0,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-8-6-5-6" width="3.5840631" height="3.621212" x="-35.084061" y="751.87878" /> -</g> -<g id="snap-nodes-midpoint" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_midpoints"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-5-8" width="16" height="16" x="764" y="30.001141" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0-1-8" width="16" height="16" x="764" y="30.001711" /> -<path id="path6507" d="M 765,45 779,31" style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path transform="matrix(0.8749999,0,0,0.875,112.6876,9.126711)" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<g transform="matrix(1.5,0,0,1.5,-383.9324,-21.06763)" id="g6242"> -<path style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 766.7737,40.68077 1,4" id="path6218" /> -<path style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 767.9558,39.58974 1,4" id="path6218-9" /> -</g> -<g id="g6242-2" transform="matrix(1.5,0,0,1.5,-375.4835,-29.48977)"> -<path style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 766.7737,40.68077 1,4" id="path6218-2" /> -<path style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 767.9558,39.58974 1,4" id="path6218-9-6" /> -</g> -</g> -<g id="snap-nodes-intersection" transform="translate(36,-0.001709)" inkscape:label="#toggle_snap_to_path_intersections"> -<g id="g6774"> -<rect y="30.001141" x="782" height="16" width="16" id="rect5385-6-4-0-5" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" /> -<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="M 783,45 797,31" id="path6507-9" /> -<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 783,40 14,-4" id="path6507-9-3" /> -<path sodipodi:type="arc" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path6530-3" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" transform="matrix(0.8749999,0,0,0.875,130.6876,9.127)" /> -</g> -</g> -<g id="snap-nodes-rotation-center" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_center"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-7-8" width="16" height="16" x="800" y="30.001141" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-0-8-4" width="16" height="16" x="800" y="30.001711" /> -<path id="path9141-9-0" d="m 813,30 0,13 -13,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path id="path6380" d="m 805,31.5 0,3" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path id="path6380-4" d="m 805,35.5 0,3" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path id="path6380-8" d="m 801.5,35 3,0" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path id="path6380-4-0" d="m 805.5,35 3,0" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -</g> -<g id="snap-page" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_page_border"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-8-3" width="16" height="16" x="818" y="30.001141" /> -<path sodipodi:nodetypes="ccccc" id="path3805-7" d="m 820.7689,31.00114 10.4622,0 0,14 -10.4622,0 0,-14 z" style="color:#000000;fill:url(#linearGradient6465);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6467);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="snap-grid-guide-intersections" transform="translate(54.5,0.5)" inkscape:label="#toggle_snap_grid_guide_intersections"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-8-3-1" width="16" height="16" x="836" y="30.00057" /> -<path id="path6498-9-0" d="m 851,37 -14,0" style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path id="path6498-1" d="m 841.5822,45.57303 4.8364,-15.14606" style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path transform="matrix(0.8749999,0,0,0.875,185.0073,8.125)" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530-3-7" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -</g> -<g id="snap-bounding-box-center" inkscape:label="#toggle_snap_to_bbox_midpoints"> -<path transform="matrix(0.8749999,0,0,0.875,56.39207,5.147436)" d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530-5" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-0-8" width="16" height="16" x="712" y="29.998859" /> -<path id="path9141-9-2-5" d="m 725,29.99829 0,13 -13,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -</g> -<g transform="translate(162.5,0.5)" id="snap-nodes-center" inkscape:label="#toggle_snap_to_bbox_midpoints-3"> -<g id="toggle_snap_to_object_midpoints"> -<rect y="30.00057" x="674" height="16" width="16" id="rect5385-6-4-0-8-1" style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" /> -<path style="color:#000000;fill:none;stroke:#646464;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 687,30 0,13 -13,0" id="path9141-9-2-5-1" /> -<path transform="matrix(0.8749999,0,0,0.875,19.93758,6.375)" d="m 755.5,33 c 0,1.10457 -0.8954,2 -2,2 -1.1046,0 -2,-0.89543 -2,-2 0,-1.10457 0.8954,-2 2,-2 C 754.6046,31 755.5,31.89543 755.5,33 Z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530-3-6" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -</g> -</g> -<g id="snap-bounding-box-midpoints" inkscape:label="#toggle_snap_to_bbox_edge_midpoints"> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" id="rect5385-6-4-0-8-5" width="16" height="16" x="692.5" y="30" /> -<path id="path9141-9-2-5-3" d="m 705.5,29.99943 0,13 -13,0" style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:type="arc" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path6530-4" sodipodi:cx="753.5" sodipodi:cy="33" sodipodi:rx="2" sodipodi:ry="2" d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" transform="matrix(0.8749999,0,0,0.875,46.21002,5.147436)" /> -</g> -<g id="guides" transform="translate(-118,-28)" inkscape:label="#guide"> -<path sodipodi:nodetypes="cc" id="path5235-0" d="m 305.5,421.5 0,15" style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 315.5,421.5 -5.0974,15" id="use5244-0" sodipodi:nodetypes="cc" /> -<use xlink:href="#path5235-0" x="0" y="0" id="use5246-9" transform="translate(12,0)" width="1250" height="1250" style="stroke-linecap:round" /> -</g> -<use xlink:href="#transform-scale-horizontal" inkscape:label="#use5735" height="1250" width="1250" transform="matrix(0,-1,1,0,576.98404,1005.9833)" id="transform-scale-vertical" y="0" x="0" /> -<use xlink:href="#transform-move-horizontal" inkscape:label="#use5770" height="1250" width="1250" transform="matrix(0,-1,-1,0,942,973.9749)" id="transform-move-vertical" y="0" x="0" /> -<g id="draw-polygon-star" inkscape:label="#g6798"> -<g id="g6790"> -<path style="color:#000000;fill:url(#linearGradient5939);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5941);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 462.07367,189.31546 -7.77133,0 -2.22033,-7.54952 6.10599,-4.85323 6.10609,4.85323 -2.22042,7.54952 z" id="path6584" sodipodi:nodetypes="cccccc" /> -<path style="color:#000000;fill:none;stroke:url(#linearGradient5936);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 462.87165,190.34592 -9.36809,0 -2.6767,-8.86924 7.36074,-5.70167 7.36075,5.70167 -2.6767,8.86924 z" id="star" sodipodi:nodetypes="cccccc" /> -</g> -<rect y="173.99997" x="449.99997" height="23.999996" width="23.999998" id="rect3610" style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> -<g id="g6786"> -<path sodipodi:type="star" style="color:#000000;fill:#fffbc5;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6644);stroke-width:0.67829257;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="path2669" sodipodi:sides="5" sodipodi:cx="103" sodipodi:cy="195" sodipodi:r1="6.158659" sodipodi:r2="3" sodipodi:arg1="-0.122765" sodipodi:arg2="0.5055535" inkscape:flatsided="false" inkscape:rounded="0" inkscape:randomized="0" d="m 109.1123,194.2458 -3.4876,2.2071 -0.019,4.1272 -3.1768,-2.6349 -3.93097,1.2577 1.52427,-3.8355 -2.41085,-3.35 4.11875,0.2644 2.441,-3.328 L 105.1928,192.9527 Z" transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" /> -<path transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" d="m 107.5277,194.4445 -2.569,1.6153 -0.031,3.0747 -2.3302,-1.9442 -2.93379,0.9204 1.12889,-2.8168 -1.78192,-2.5058 3.02782,0.2032 1.8325,-2.4691 L 104.6132,193.4647 Z" inkscape:randomized="0" inkscape:rounded="0" inkscape:flatsided="false" sodipodi:arg2="0.49597247" sodipodi:arg1="-0.12207873" sodipodi:r2="2.2270374" sodipodi:r1="4.5616722" sodipodi:cy="195" sodipodi:cx="103" sodipodi:sides="5" id="path5971" style="color:#000000;fill:url(#linearGradient6636-2);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6625-4);stroke-width:0.67829257;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:80;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="star" /> -</g> -</g> -<use xlink:href="#object-columns" inkscape:label="#use5494" height="1250" width="1250" transform="matrix(0,1,-1,0,1044.0083,-459)" id="object-rows" y="0" x="0" /> -<g id="draw-geometry" transform="translate(82.158875,-154.53542)" inkscape:label="#g7080"> -<rect y="235.53542" x="503.84113" height="24" width="24" id="rect7049" style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="ccccc" id="rect6919" d="m 512.76764,243.3399 9.04823,7.73133 -1.00281,1.17362 -9.04823,-7.73133 c 0.116,-0.72045 0.51121,-1.01974 1.00281,-1.17362 z" style="color:#000000;fill:url(#linearGradient7072);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="ccccccc" id="path6913" d="m 521.76669,239.93433 0.41802,-1.35648 2.27331,-1.90169 1.20466,1.02933 -1.61915,2.59959 -1.12717,0.49472 -1.14967,-0.86547 z" style="color:#000000;fill:url(#linearGradient7069);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="cccc" id="path6124" d="m 507.22246,249.54909 -1.20288,3.01674 2.05323,-2.08949 -0.85021,-0.92719 z" style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="cccccc" id="path6904" d="m 508.07267,250.47628 -0.85021,-0.92719 0.11692,-1.26029 11.89882,-8.27525 -0.25485,2.84225 -10.91068,7.62048 z" style="color:#000000;fill:url(#linearGradient7065);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:nodetypes="ccccccc" id="path6908" d="m 521.6141,239.68707 c -0.86987,-0.31989 -1.7651,-0.27296 -2.37535,0.32361 l -0.25651,2.8496 c -0.64083,1.27305 0.33526,1.8966 1.42451,1.21718 l 2.77469,-0.69791 c 0.49407,-0.69585 0.40078,-1.58745 -0.0509,-2.39676 -0.28341,-0.72585 -0.78316,-1.12526 -1.51642,-1.29572 z" style="color:#000000;fill:url(#linearGradient7062);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path style="color:#000000;fill:url(#linearGradient7059);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 514.58867,256.0406 1.04848,0.69516 1.22662,-0.31211 6.31767,-13.0441 -2.76769,0.69513 -5.82508,11.96592 z" id="path6917" sodipodi:nodetypes="cccccc" /> -<path transform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,34.899768)" d="m 612.6257,215.7293 c 0,2.3462 -0.8357,4.2481 -1.8666,4.2481 -1.0309,0 -1.8666,-1.9019 -1.8666,-4.2481 0,-2.3461 0.8357,-4.248 1.8666,-4.248 C 611.79,211.4813 612.6257,213.3832 612.6257,215.7293 Z" sodipodi:ry="4.2480874" sodipodi:rx="1.8665838" sodipodi:cy="215.72934" sodipodi:cx="610.75909" id="path6923" style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<path transform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.58894,35.35265)" sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient7074);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path6925" sodipodi:cx="610.75909" sodipodi:cy="215.72934" sodipodi:rx="1.8665838" sodipodi:ry="4.2480874" d="m 612.6257,215.7293 c 0,2.3462 -0.8357,4.2481 -1.8666,4.2481 -1.0309,0 -1.8666,-1.9019 -1.8666,-4.2481 0,-2.3461 0.8357,-4.248 1.8666,-4.248 C 611.79,211.4813 612.6257,213.3832 612.6257,215.7293 Z" /> -<path transform="matrix(0.67177764,0.57400547,-0.57400547,0.67177764,236.7316,-232.3531)" d="m 592.8656,198.5761 c 0,0.4088 -0.3314,0.7402 -0.7402,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 C 592.5342,197.8359 592.8656,198.1673 592.8656,198.5761 Z" sodipodi:ry="0.740197" sodipodi:rx="0.740197" sodipodi:cy="198.57608" sodipodi:cx="592.12543" id="path6927" style="color:#000000;fill:url(#linearGradient7102);fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<path id="path6947" d="m 508.31361,248.61207 4.07087,-2.80954" style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.40000001;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 515.63715,256.73576 -2.79207,1.65891 1.74359,-2.35407 1.04848,0.69516 z" id="path6949" sodipodi:nodetypes="cccc" /> -<path id="path6998" d="m 522.9128,238.97897 1.50906,-1.24867" style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<use xlink:href="#path6927" height="540" width="1250" transform="translate(1.4564128,1.1833354)" id="use7078" y="0" x="0" /> -</g> -<g id="dialog-geometry" inkscape:label="#g2858" transform="translate(2.0000007,7.2467919e-6)"> -<g transform="matrix(1.5000667,0,0,1.4950108,711.15574,-419.4617)" id="g2770"> -<rect y="338.80829" x="115.5577" height="11.99987" width="14.99917" id="rect2772" style="color:#000000;fill:url(#linearGradient2876);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.66776335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="335.7579" x="115.5588" height="3.011261" width="14.99819" id="rect2774" style="color:#000000;fill:url(#linearGradient2878);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.66776329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<path style="color:#000000;fill:url(#linearGradient2880);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 893.90864,90.944372 4.50115,8.555326 -1.10969,0.583832 -4.50114,-8.555327 c 0.30425,-0.508689 0.69248,-0.615615 1.10968,-0.583831 z" id="path2794" sodipodi:nodetypes="ccccc" /> -<path style="color:#000000;fill:url(#linearGradient2882);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 901.723,91.082024 0.72346,-0.897722 2.28732,-0.750961 0.59927,1.139035 -2.00369,1.474323 -0.99929,0.03418 -0.60707,-0.998859 z" id="path2796" sodipodi:nodetypes="ccccccc" /> -<path style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 887.85685,93.9611 -1.8151,1.914293 2.17775,-0.958865 -0.36256,-0.95534 z" id="path2798" sodipodi:nodetypes="cccc" /> -<path style="color:#000000;fill:url(#linearGradient2884);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 888.21942,94.916441 -0.36257,-0.955341 0.46735,-0.915725 11.4672,-2.664223 -1.04732,2.067833 -10.52466,2.467456 z" id="path2800" sodipodi:nodetypes="cccccc" /> -<path style="color:#000000;fill:url(#linearGradient2886);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 901.68225,90.849561 c -0.56009,-0.503042 -1.24967,-0.736945 -1.88957,-0.470409 l -1.05079,2.072879 c -0.86648,0.767746 -0.31759,1.531856 0.70864,1.346907 l 2.30348,0.308131 c 0.58211,-0.376393 0.77994,-1.077177 0.68261,-1.823687 0.005,-0.632917 -0.25239,-1.084615 -0.75436,-1.433815 z" id="path2802" sodipodi:nodetypes="ccccccc" /> -<path sodipodi:nodetypes="cccccc" id="path2804" d="m 891.46188,101.07497 0.58196,0.83992 1.01939,0.13351 8.69078,-7.941331 -2.29736,-0.308122 -7.99477,7.276023 z" style="color:#000000;fill:url(#linearGradient2889);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path sodipodi:type="arc" style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path2806" sodipodi:cx="610.75909" sodipodi:cy="215.72934" sodipodi:rx="1.8665838" sodipodi:ry="4.2480874" d="m 612.6257,215.7293 c 0,2.3462 -0.8357,4.2481 -1.8666,4.2481 -1.0309,0 -1.8666,-1.9019 -1.8666,-4.2481 0,-2.3461 0.8357,-4.248 1.8666,-4.248 C 611.79,211.4813 612.6257,213.3832 612.6257,215.7293 Z" transform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.55597,-101.43481)" /> -<path d="m 612.6257,215.7293 c 0,2.3462 -0.8357,4.2481 -1.8666,4.2481 -1.0309,0 -1.8666,-1.9019 -1.8666,-4.2481 0,-2.3461 0.8357,-4.248 1.8666,-4.248 C 611.79,211.4813 612.6257,213.3832 612.6257,215.7293 Z" sodipodi:ry="4.2480874" sodipodi:rx="1.8665838" sodipodi:cy="215.72934" sodipodi:cx="610.75909" id="path2808" style="color:#000000;fill:url(#linearGradient2891);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" transform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.81964,-100.93366)" /> -<path sodipodi:type="arc" style="color:#000000;fill:url(#linearGradient2893);fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path2810" sodipodi:cx="592.12543" sodipodi:cy="198.57608" sodipodi:rx="0.740197" sodipodi:ry="0.740197" d="m 592.8656,198.5761 c 0,0.4088 -0.3314,0.7402 -0.7402,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 C 592.5342,197.8359 592.8656,198.1673 592.8656,198.5761 Z" transform="matrix(0.33418365,0.63518235,-0.63518235,0.33418365,828.73985,-351.00961)" /> -<path style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.32490754;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 888.96202,93.582362 3.91669,-0.895182" id="path2812" /> -<path sodipodi:nodetypes="cccc" id="path2814" d="m 892.04384,101.91489 -2.60569,0.41172 2.02373,-1.25164 0.58196,0.83992 z" style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.32490754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 902.87514,90.705982 1.51424,-0.488162" id="path2816" /> -<use xlink:href="#path6927" x="0" y="0" id="use2818" transform="matrix(0.75450792,0.30082971,-0.30082971,0.75450792,580.96816,-245.58228)" width="1250" height="540" /> -</g> -<g id="draw-geometry-set-bounding-box" inkscape:label="#g3679"> -<rect style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.30013371;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.3001337, 2.3001337;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" id="rect2895" width="10.66002" height="16.84721" x="865.15009" y="115.15007" inkscape:label="lpetool_show_bbox" /> -<path id="path2897" d="m 860,120 0,7.85252 3.99063,-3.99062 L 860,120 z" style="color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path style="color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 881,120 0,7.85252 -3.99063,-3.99062 L 881,120 z" id="path3677" /> -</g> -<g id="draw-geometry-show-measuring-info" transform="translate(23.01003,-32.10901)" inkscape:label="#g3731"> -<path style="color:#000000;fill:url(#linearGradient3740);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" d="m 891.48997,114.60901 22.99994,0 6e-5,14.42552 -4.18179,0 -4.60727,8.57448 -0.61997,-8.57448 -13.59082,0 -1.5e-4,-14.42552 z" id="rect5189-6" sodipodi:nodetypes="cccccccc" /> -<g id="text3706" style="font-size:8.74605656px;writing-mode:lr-tb"> -<path id="path3719" d="m 895.99405,119.29585 c -0.84773,-0.0207 -1.20026,0.90061 -1.27292,1.60217 -0.0917,1.04553 -0.16819,2.19733 0.35882,3.14607 0.41648,0.73692 1.61508,0.62486 1.91767,-0.15314 0.43913,-1.01113 0.38314,-2.17037 0.23062,-3.23901 -0.11066,-0.63205 -0.47841,-1.38829 -1.23419,-1.35609 z m 0,-0.68328 c 0.95681,-0.0602 1.75787,0.70179 1.98172,1.59211 0.31196,1.15879 0.31439,2.42417 -0.0466,3.572 -0.25633,0.88825 -1.128,1.55578 -2.06715,1.44765 -1.03314,0.005 -1.76992,-0.9324 -1.93065,-1.88214 -0.22337,-1.20675 -0.23824,-2.52448 0.29066,-3.65638 0.3215,-0.67313 1.02532,-1.10265 1.77201,-1.07324 z" /> -<path id="path3721" d="m 899.71795,124.01907 c 0.30036,0 0.60073,0 0.90109,0 0,0.36157 0,0.72314 0,1.08471 -0.30036,0 -0.60073,0 -0.90109,0 0,-0.36157 0,-0.72314 0,-1.08471 z" /> -<path id="path3723" d="m 903.24542,124.37779 c 1.00357,0 2.00715,0 3.01072,0 0,0.242 0,0.48399 0,0.72599 -1.34949,0 -2.69897,0 -4.04846,0 0,-0.242 0,-0.48399 0,-0.72599 0.95244,-1.03556 2.05014,-1.94675 2.88394,-3.08493 0.43708,-0.57314 0.32843,-1.53951 -0.39176,-1.82918 -0.82389,-0.32425 -1.72065,0.0454 -2.44948,0.44286 0,-0.2904 0,-0.58079 0,-0.87119 1.07463,-0.45607 2.49913,-0.71183 3.45362,0.13582 0.78212,0.71284 0.60707,1.99676 -0.072,2.7189 -0.75829,0.86206 -1.59084,1.65991 -2.38662,2.48772 z" /> -<path id="path3725" d="m 910.68469,121.666 c 0.89363,0.12497 1.4826,1.05773 1.2925,1.92328 -0.0941,1.00279 -1.11367,1.5906 -2.04198,1.62018 -0.72256,0.0699 -1.45173,-0.0589 -2.13313,-0.29781 0,-0.27759 0,-0.55517 0,-0.83276 0.83664,0.45611 1.92451,0.60201 2.80073,0.17757 0.80169,-0.43444 0.69059,-1.81155 -0.19684,-2.08095 -0.48076,-0.18386 -1.00008,-0.10942 -1.50209,-0.12512 0,-0.2363 0,-0.47261 0,-0.70891 0.6676,-0.0288 1.50939,0.14892 1.9565,-0.47536 0.4177,-0.66094 -0.14468,-1.53437 -0.90782,-1.51097 -0.66571,-0.0681 -1.33009,0.0928 -1.95831,0.2995 0,-0.25623 0,-0.51247 0,-0.7687 1.08005,-0.28661 2.40764,-0.52909 3.35334,0.23188 0.80208,0.64443 0.62653,2.14224 -0.3992,2.46393 l -0.12785,0.0456 -0.13585,0.0387" /> -</g> -</g> -<g transform="matrix(0.8557944,0,0,0.8106021,188.92188,242.35843)" id="spray-mode-copy"> -<path d="m 368.21875,315.40625 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.051 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" id="rect6196" style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<g transform="translate(-3.5450574e-7,0.5149192)" id="g6335"> -<rect width="26.775824" height="21.111708" ry="1.0718389" x="367.13776" y="315.42078" id="rect6337" style="fill:url(#linearGradient6466-2);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<g transform="translate(7.2088757,-31.410101)" id="g6339"> -<rect width="26.775824" height="21.111708" ry="1.0718389" x="352.72" y="356.61435" id="rect6341" style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="26.775824" height="21.111708" ry="1.0718389" x="352.20511" y="356.09943" id="rect6343" style="fill:url(#linearGradient6468-0);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -</g> -</g> -<g transform="matrix(0.8413762,0,0,0.8105392,266.3079,183.1218)" id="spray-mode-union"> -<path d="m 377.48731,389.03977 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.0511 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" id="path6506" style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<path d="m 377.47944,388.53223 c -0.5938,0 -1.0625,0.49995 -1.0625,1.09375 l 0,8.1875 -6.65625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.44535 0.27129,0.83772 0.65625,1 0.17597,0.35015 0.51748,0.59376 0.9375,0.59375 l 24.65625,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" id="rect6510" style="fill:url(#linearGradient6563-3);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<g transform="translate(164.42529,191.5008)" id="spray-mode-clone" inkscape:label="#g5793"> -<path transform="matrix(0.8269532,0,0,0.8236011,70.705122,33.206996)" d="m 373.36795,331.88368 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.051 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" id="path6442" style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<g id="g5785"> -<g id="g5780"> -<rect width="22.142353" height="17.387625" ry="0.88276768" x="378.569" y="306.55872" id="rect6446" style="fill:url(#linearGradient5783-6-3);fill-opacity:1;stroke:#000000;stroke-width:0.99000001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<g id="g5775"> -<rect transform="matrix(0.8269532,0,0,0.8236011,80.498855,-10.474112)" width="26.775824" height="21.111708" ry="1.0718389" x="353.23492" y="394.71841" id="rect6450" style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<rect width="22.142353" height="17.387625" ry="0.88276768" x="372.51971" y="314.02679" id="rect6452" style="fill:url(#linearGradient6583-7);fill-opacity:1;stroke:#c2c2c2;stroke-width:1.88999999;stroke-linejoin:miter;stroke-miterlimit:4.19999981;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> -<rect style="fill:none;stroke:#000000;stroke-width:1.88999999;stroke-linejoin:miter;stroke-miterlimit:4.19999981;stroke-opacity:1;stroke-dasharray:3.77999997, 3.77999997;stroke-dashoffset:0" id="rect6585" y="314.02679" x="372.51971" ry="0.88276768" height="17.387625" width="22.142353" /> -</g> -</g> -</g> -<g id="connector-ignore" inkscape:label="#g8308" transform="translate(16.916975,1.0009742)"> -<g id="g5802" style="stroke:url(#linearGradient8290-1);stroke-opacity:1" transform="matrix(0.625904,0,0,0.672041,489.16821,222.32729)"> -<rect style="fill:none;stroke:url(#linearGradient8288-3);stroke-width:1.54186893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5792" width="7.9986801" height="2.959625" x="8.5082998" y="211.5502" /> -</g> -<path style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.8469945" d="m 494.5,361.4977 6,8" id="path7667" sodipodi:nodetypes="cc" /> -<g transform="matrix(0.689556,0,0,0.507098,484.56529,256.2643)" id="g5761" style="stroke:#000000;stroke-opacity:1"> -<rect style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5763" width="4.5088892" height="2.0118859" x="11.50698" y="205.5087" /> -</g> -<use xlink:href="#g5761" height="1250" width="1250" transform="matrix(0.997702,0,0,1.018967,8.1086669,2.1407896)" id="use5785" y="0" x="0" /> -</g> -<g id="connector-avoid" inkscape:label="#g8327" transform="translate(16.916975,1.0009742)"> -<path style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.83060111" d="m 517.5,361.4977 5,3 0,5" id="path12164" sodipodi:nodetypes="ccc" /> -<g transform="matrix(0.689556,0,0,0.507098,506.56529,256.2643)" id="use5787" style="stroke:#000000;stroke-opacity:1"> -<rect style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8286" width="4.5088892" height="2.0118859" x="11.50698" y="205.5087" /> -</g> -<g transform="matrix(0.689556,0,0,0.507098,513.514,265.26677)" id="use5790" style="stroke:#000000;stroke-opacity:1"> -<rect style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8282" width="4.5088892" height="2.0118859" x="11.50698" y="205.5087" /> -</g> -<g id="use5814" style="stroke:url(#linearGradient8278-4);stroke-opacity:1" transform="matrix(0.625904,0,0,0.672041,509.17462,223.32729)"> -<rect style="fill:none;stroke:url(#linearGradient8276-2);stroke-width:1.54186893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8274" width="7.9986801" height="2.959625" x="8.5082998" y="211.5502" /> -</g> -</g> -<g id="connector-orthogonal" inkscape:label="#g8327" transform="matrix(-1,0,0,1,1072.9748,1.0009342)"> -<path style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.83060111" d="m 517.5,360.9977 2,0.002 0,9.00234 3,-0.002" id="path5193" sodipodi:nodetypes="cccc" /> -<g transform="matrix(0.689556,0,0,0.507098,506.56529,256.2643)" id="g5195" style="stroke:#000000;stroke-opacity:1"> -<rect style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5197" width="4.5088892" height="2.0118859" x="11.50698" y="205.5087" /> -</g> -<g transform="matrix(0.689556,0,0,0.507098,513.514,265.26677)" id="g5199" style="stroke:#000000;stroke-opacity:1"> -<rect style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5201" width="4.5088892" height="2.0118859" x="11.50698" y="205.5087" /> -</g> -<g id="g5203" style="stroke:url(#linearGradient5209);stroke-opacity:1" transform="matrix(0.625904,0,0,0.672041,509.17462,223.32729)" /> -</g> -<g id="connector-edit" transform="matrix(0.5008045,0,0,0.5008045,547.98616,270.83347)" inkscape:label="#draw_node"> -<rect y="180" x="-110" height="24" width="24" id="rect5213" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="fill:#ff0000;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.99678624;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5217" width="6.1177049" height="5.9961362" x="-108.26915" y="181.73476" /> -<path sodipodi:nodetypes="cccc" id="path5221" d="m -104.98202,185.05712 10.198948,18.1231 6.79927,-6.79616 -16.998218,-11.32694 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99839354;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -</g> -<g transform="translate(-11.083035,0.97828419)" id="connector-new-connpoint" inkscape:label="#g6061"> -<path sodipodi:end="4.7170453" sodipodi:start="3.1455643" d="m 578.0001,371.9603 c 0.022,-5.5228 4.5168,-9.9822 10.0396,-9.9602 0,0 0,0 0.01,0 L 588,372 Z" sodipodi:ry="10" sodipodi:rx="10" sodipodi:cy="372" sodipodi:cx="588" id="path6018" style="fill:#b0c5da;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" sodipodi:type="arc" /> -<rect y="360.98068" x="577" height="12.019308" width="12.019308" id="rect5199" style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<rect style="fill:#ff7777;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.94117647;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect5202" width="3" height="3" x="580" y="363" /> -</g> -<g transform="translate(-11.083035,0.97828419)" id="connector-remove-connpoint" inkscape:label="#g6098"> -<rect style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect6086" width="12.019308" height="12.019308" x="591.5" y="361" /> -<g transform="matrix(0.5555556,0,0,0.5555556,57.499957,271.55555)" id="g6088"> -<path id="path6090" d="m 972,171 1,-1 7,0 1,1 0,7 -1,1 -7,0 -1,-1 0,-7 z" style="fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:#aa0000;stroke-width:1.79999971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="ccccccccc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:2.15999985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 974,171.85 5,5" id="path6092" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#ffffff;stroke-width:2.15999985;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 979,171.85 -5,5" id="path6094" sodipodi:nodetypes="cc" /> -</g> -<rect y="363" x="593" height="3" width="3" id="rect6096" style="fill:#ff7777;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.94117647;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="node-transform" inkscape:label="#g5821"> -<path sodipodi:nodetypes="ccccccccccc" id="path5786" d="m 480,55 0,5 1.5,-1.5 2,2 -1.5,1.5 5,0 0,-5 -1.5,1.5 -2,-2 1.5,-1.5 -5,0 z" style="fill:#000000;stroke:none;stroke-width:0.15833369999999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> -<use height="540" width="1250" transform="matrix(-1,0,0,1,976,0)" id="use5795" xlink:href="#path5786" y="0" x="0" /> -<use height="540" width="1250" transform="matrix(1,0,0,-1,0,126)" id="use5805" xlink:href="#path5786" y="0" x="0" /> -<use height="540" width="1250" transform="matrix(-1,0,0,-1,976,126)" id="use5819" xlink:href="#path5786" y="0" x="0" /> -</g> -<g id="tool-spray" inkscape:label="#g7080" transform="translate(0,-1.97016)"> -<path id="path5769" d="m 452.01281,501.97016 24,0 0,24 -24,0 0,-24 z" style="fill:none;stroke:none" inkscape:connector-curvature="0" /> -<path inkscape:connector-curvature="0" style="fill:#ffffff;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 469.84518,510.27318 -0.6125,-2.12647 c -0.5069,-1.41581 -4.19993,-1.08963 -3.67673,0.37912 l 0.42518,2.06099" id="path6331-0" sodipodi:nodetypes="cccc" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccc" id="path6315-8" d="m 473.73077,513.59345 -1.56685,-0.76789 -7.77667,1.05925 -1.34563,1.49786 1.2612,7.06278 c 2.65486,-1.53278 4.20967,6.06515 11.1123,2.07992 l -1.68435,-10.93192 z" style="fill:url(#linearGradient7073);fill-opacity:1;fill-rule:evenodd;stroke:none" /> -<path inkscape:connector-curvature="0" style="fill:url(#linearGradient7067);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7070);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" d="m 471.97327,512.76682 -0.85175,-2.5639 -6.47412,1.04874 -0.35347,2.9386" id="path5211-1" sodipodi:nodetypes="cccc" /> -<path inkscape:connector-curvature="0" id="path6317-2" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" d="m 463.99631,521.91457 -0.79118,-5.6356 c -0.21484,-0.93904 0.42907,-2.16731 1.14937,-2.12761 2.65324,0.14615 5.24124,-0.19924 7.73737,-1.27803 0.4782,-0.20671 1.68816,0.69377 1.79436,1.34468 l 1.22233,9.7764" sodipodi:nodetypes="ccsscc" /> -<path inkscape:connector-curvature="0" style="fill:none;stroke:none" d="m 470.92728,507.98887 -6.00498,0.63511 0.24648,4.10555 5.69839,-1.1661 0.0601,-3.57456 z" id="path6311-1" sodipodi:nodetypes="ccccc" /> -<path inkscape:connector-curvature="0" style="fill:none;stroke:#ffffff;stroke-width:1.22622585px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 471.42015,516.19988 1.02383,7.90446" id="path6321-0" sodipodi:nodetypes="cc" /> -<path transform="matrix(0.4357219,0,0,0.4357219,373.84569,283.24992)" d="m 207.5149,518.4219 c 0,0.511 -0.4143,0.9253 -0.9253,0.9253 -0.5111,0 -0.9254,-0.4143 -0.9254,-0.9253 0,-0.5111 0.4143,-0.9254 0.9254,-0.9254 C 207.1006,517.4965 207.5149,517.9108 207.5149,518.4219 Z" sodipodi:ry="0.92537314" sodipodi:rx="0.92537314" sodipodi:cy="518.42188" sodipodi:cx="206.58955" id="path23475" style="color:#000000;fill:#000000;stroke:none;stroke-width:0.22950419000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.0586461,0,0,1.0586461,-27.969181,-28.729696)" id="use23477" xlink:href="#path23475" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(0,-2.2081683)" id="use23479" xlink:href="#use23477" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(-0.69823087,1.0789188)" id="use23481" xlink:href="#use23479" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.3762691,0,0,1.3762691,-175.63564,-191.13423)" id="use23483" xlink:href="#use23477" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.3762691,0,0,1.3762691,-175.96745,-192.06739)" id="use23485" xlink:href="#use23479" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.3762691,0,0,1.3762691,-175.6304,-191.57278)" id="use23487" xlink:href="#use23481" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.5012295,0,0,1.5012295,-233.37625,-255.20287)" id="use23489" xlink:href="#use23483" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.5012295,0,0,1.5012295,-233.50101,-255.12925)" id="use23491" xlink:href="#use23485" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.5012295,0,0,1.5012295,-233.25387,-255.19482)" id="use23493" xlink:href="#use23487" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.4856427,0,0,1.4856427,-226.34972,-247.01891)" id="use23495" xlink:href="#use23489" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.4856427,0,0,1.4856427,-226.14425,-246.95651)" id="use23497" xlink:href="#use23491" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="matrix(1.4856427,0,0,1.4856427,-226.09634,-247.25898)" id="use23499" xlink:href="#use23493" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(-4.2358148,-1.3033276)" id="use23501" xlink:href="#path23475" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(0.44801887,2.6881132)" id="use23503" xlink:href="#use23501" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(-4.7245626,0)" id="use23505" xlink:href="#use23485" y="0" x="0" /> -<use height="1052.3622" width="744.09448" transform="translate(0.69239279,4.1136278)" id="use23509" xlink:href="#use23505" y="0" x="0" /> -</g> -<g transform="translate(-1.367187e-5,-1.000977e-6)" id="exchange-positions" inkscape:label="#g5791"> -<rect y="217.9579" x="1105.989" height="24" width="24" id="rect5511" style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g transform="translate(1106.989,-822.8055)" id="g6870"> -<rect style="fill:none;stroke:url(#linearGradient6608);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6878" width="9.674352" height="9.673169" x="0.462824" y="1042.226" /> -<rect style="fill:url(#linearGradient6610);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6612);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6880" width="7.840812" height="7.835659" x="1.379594" y="1043.145" /> -</g> -<g id="g6888" transform="translate(1119.244,-812.1375)"> -<rect y="1042.226" x="0.462824" height="9.673169" width="9.674352" id="rect6890" style="fill:none;stroke:url(#linearGradient6614);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="1043.145" x="1.379594" height="7.835659" width="7.840812" id="rect6892" style="fill:url(#linearGradient6616);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6618-9);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="g6894" transform="matrix(-1.5,0,0,-1.5,1679.065,1036.244)" style="fill:#ffff00"> -<path inkscape:connector-curvature="0" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 373.1989,533.2837 0,0.7 3,0 1.1645,1 0,2.5154 -1.2973,0 1.6269,1.9968 1.6838,-1.9968 -1.2954,0 0,-2.782 -1.6826,-1.4334 -3.1999,0 z" id="path6896" sodipodi:nodetypes="cccccccccccc" /> -</g> -<g style="fill:#ffff00" transform="matrix(1.5,0,0,1.5,556.9348,-576.9256)" id="g5473"> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc" id="path5524" d="m 373.1989,533.2837 0,0.7 3,0 1.1645,1 0,2.5154 -1.2973,0 1.6269,1.9968 1.6838,-1.9968 -1.2954,0 0,-2.782 -1.6826,-1.4334 -3.1999,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> -</g> -</g> -<g id="exchange-positions-zorder" transform="translate(31.999986,-26.000001)" inkscape:label="exchange-positions-zorder"> -<rect y="244" x="1106" height="24" width="24" id="rect5511-4" style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> -<g transform="matrix(0.8490566,0,0,0.8490566,1107,-639.5161)" id="g6870-3"> -<rect style="fill:none;stroke:url(#linearGradient8772);stroke-width:0.92564797;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6878-1" width="9.6743517" height="9.6731691" x="0.46282399" y="1042.226" /> -<rect style="fill:url(#linearGradient8774);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8776);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect6880-9" width="7.8408122" height="7.835659" x="1.379594" y="1043.145" /> -</g> -<g id="g6888-1" transform="matrix(0.8490566,0,0,0.8490566,1120,-632.5151)"> -<rect y="1042.226" x="0.46282399" height="9.6731691" width="9.6743517" id="rect6890-0" style="fill:none;stroke:url(#linearGradient8766);stroke-width:0.92564797;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="1043.145" x="1.379594" height="7.835659" width="7.8408122" id="rect6892-9" style="fill:url(#linearGradient8768);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8770);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g id="g6894-4" transform="matrix(-1.214009,0,0,-1.214009,1572.567,906.4111)" style="fill:#ffff00"> -<path style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 372.8308,534.9312 0,0.7 5.0155,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.2154,0 z" id="path6896-5" sodipodi:nodetypes="cccccccccccc" inkscape:connector-curvature="0" /> -</g> -<g style="fill:#ffff00" transform="matrix(1.214009,0,0,1.214009,661.8316,-398.1738)" id="g5473-6"> -<path sodipodi:nodetypes="cccccccccccc" id="path5524-2" d="m 373.9715,533.0883 0,0.7 5.606,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.8059,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" inkscape:connector-curvature="0" /> -</g> -<use xlink:href="#path10475" height="1250" width="1250" id="use7638-0" y="0" x="0" style="display:inline" transform="translate(1155.035,83.0092)" /> -<use xlink:href="#path10483" height="1250" width="1250" id="use8589-6" y="0" x="0" style="display:inline" transform="translate(1152.062,76.0092)" /> -<use transform="translate(1155.062,79.0092)" style="display:inline" x="0" y="0" id="use7946" width="1250" height="1250" xlink:href="#path10483" /> -<path id="path10449-0" d="m 1116.127,258 -0.936,0 0,5.4545 -1.873,0 2.256,2.5524 2.426,-2.5524 -1.873,0 0,-5.4545 z" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="cccccccc" inkscape:connector-curvature="0" /> -<path id="path10449-0-8" d="m 1112.236,266 -0.882,0 0,-2.9358 0,-2.5187 -1.763,0 2.373,-2.3834 2.036,2.3834 -1.764,0 0,5.4545 z" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="ccccccccc" inkscape:connector-curvature="0" /> -</g> -<g id="exchange-positions-clockwise" transform="translate(23.99999,-26)" inkscape:label="exchange-positions-clockwise"> -<rect style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" id="rect8798" width="24" height="24" x="1146" y="244" /> -<g id="g8800" transform="matrix(0.8490566,0,0,0.8490566,1147,-639.5161)"> -<rect y="1042.226" x="0.462824" height="9.673169" width="9.674352" id="rect8802" style="fill:none;stroke:url(#linearGradient8980);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<rect y="1043.145" x="1.379594" height="7.835659" width="7.840812" id="rect8804" style="fill:url(#linearGradient8982);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8984);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -</g> -<g transform="matrix(0.8490566,0,0,0.8490566,1160,-632.5151)" id="g8806"> -<rect style="fill:none;stroke:url(#linearGradient8986);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8808" width="9.674352" height="9.673169" x="0.462824" y="1042.226" /> -<rect style="fill:url(#linearGradient8988);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8990);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect8810" width="7.840812" height="7.835659" x="1.379594" y="1043.145" /> -</g> -<g style="fill:#ffff00" transform="matrix(-1.214009,0,0,-1.214009,1612.567,906.4111)" id="g8812"> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccccccccccc" id="path8814" d="m 372.8308,534.9312 0,0.7 5.0155,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.2154,0 z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> -</g> -<g id="g8816" transform="matrix(1.214009,0,0,1.214009,701.8316,-398.1738)" style="fill:#ffff00"> -<path inkscape:connector-curvature="0" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 373.9715,533.0883 0,0.7 5.606,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.8059,0 z" id="path8818" sodipodi:nodetypes="cccccccccccc" /> -</g> -<g inkscape:transform-center-x="3.042784" transform="matrix(0.5350629,0.5892249,-0.5892249,0.5350629,686.558,-576.3326)" id="g8956"> -<path inkscape:connector-curvature="0" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0;marker:none;display:inline" d="m 1173.915,279.6085 c 3.028,0 5.485,-2.458 5.485,-5.4866 0,-3.0286 -2.457,-5.4866 -5.485,-5.4866" id="path11132-6" sodipodi:nodetypes="csc" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cccc" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" d="m 1172.21,279.2058 3.771,-3.1433 0,6.2868 -3.771,-3.1435 z" id="path11140-4" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="csc" id="path8948" d="m 1173.102,268.4294 c -3.028,0 -5.485,2.458 -5.485,5.4866 0,3.0286 2.457,5.4866 5.485,5.4866" style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0.3015402;marker:none;display:inline" /> -<path inkscape:connector-curvature="0" id="path8950" d="m 1174.61,268.7807 -3.771,3.1434 0,-6.2867 3.771,3.1433 z" style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" sodipodi:nodetypes="cccc" /> -</g> -</g> -<g id="text_remove_kerns" transform="translate(-693.87,270.0361)"> -<g transform="matrix(0.922438,0,0,0.922438,106.4646,4.828925)" id="g2607"> -<rect style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7402338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3019" width="29.18541" height="29.19199" x="1352.876" y="51.67942" /> -<path id="text3027" d="m 1357.349,63.74015 -1.275,3.44056 2.555,0 -1.28,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.976,0 -0.634,-1.77353 -3.13,0 -0.633,1.77353 -0.991,0 2.652,-6.91352 m 7.304,0.92149 -1.275,3.44056 2.554,0 -1.279,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.977,0 -0.633,-1.77353 -3.131,0 -0.632,1.77353 -0.992,0 2.653,-6.91352" style="font-size:7.9593143px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:102.9672503%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" inkscape:connector-curvature="0" /> -<path id="text3097" d="m 1370.815,63.74015 -1.275,3.44056 2.555,0 -1.28,-3.44056 m -0.531,-0.92149 1.066,0 2.647,6.91352 -0.977,0 -0.632,-1.77353 -3.131,0 -0.633,1.77353 -0.991,0 2.651,-6.91352 m 7.305,0.92149 -1.275,3.44056 2.554,0 -1.279,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.977,0 -0.633,-1.77353 -3.131,0 -0.633,1.77353 -0.99,0 2.652,-6.91352" style="font-size:7.9593143px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:102.9672503%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" inkscape:connector-curvature="0" /> -</g> -<rect y="51.96389" x="1353.87" height="28" width="28" id="rect6752" style="font-size:12px;fill:none;stroke:none" /> -</g> -<g id="text_line_spacing" transform="translate(-0.0508118,0.0123038)"> -<rect y="321.9877" x="480.0508" height="28" width="28" id="rect6696" style="font-size:12px;fill:none;stroke:none" /> -<g transform="translate(-787.9306,270.3015)" id="g7600"> -<use xlink:href="#g3805" height="1250" width="1250" transform="matrix(0.684222,0,0,0.684222,1257.669,-36.0664)" id="use3810" y="0" x="0" /> -<g transform="matrix(0.684211,0,0,0.684211,1257.617,-22.11736)" id="g3813"> -<path inkscape:connector-curvature="0" style="font-size:24px;fill:url(#linearGradient12388);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" d="m 33,129.5 5,0 6.5,18 -4,0 -1,-2.5 -8,0 -1,2.5 -4,0 6.5,-18 z m 5.5,12 -3,-8.5 -3,8.5 6,0 z" id="path3815" sodipodi:nodetypes="ccccccccccccc" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817" d="M 33.5,130.5 28,146" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:1.0000002px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3819" d="m 38,142.5244 -5.5,0" style="fill:url(#radialGradient12390);fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient12392);stroke-width:1.0000002px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -</g> -<g id="text_word_spacing" transform="matrix(0.942859,0,0,0.942859,-695.392,273.9242)"> -<g transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" id="g7621-3"> -<rect style="font-size:12px;fill:none;stroke:none" id="rect6706-6" width="29.92172" height="30" x="1310" y="49.93628" /> -</g> -<g transform="matrix(1.060604,0,0,1.060604,769.377,-305.3736)" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.5;font-family:Arial;-inkscape-font-specification:Arial" id="text11660"> -<path style="font-weight:bold;color:#000000;fill:url(#linearGradient5857-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="M 510,347.3125 510,349 c 0.2685,0.074 0.5104,0.2153 0.7187,0.4375 0.3125,0.3281 0.4532,0.8021 0.4688,1.4375 l -1.1875,0 0,1.3437 3.375,0 c 0.031,-1.6822 -0.3177,-2.9062 -1.0313,-3.7187 -0.5988,-0.6862 -1.3781,-1.0772 -2.3437,-1.1875 z m 1.0625,5.7812 c -0.1198,0.4167 -0.2969,0.7188 -0.5313,0.9063 -0.1565,0.1253 -0.3258,0.2084 -0.5312,0.25 l 0,1.6562 c 0.7568,-0.048 1.4126,-0.2317 1.9375,-0.5937 0.6094,-0.4219 1.0312,-1.0417 1.3125,-1.8438 l -2.1875,-0.375 z" transform="translate(8.87136e-6,9.40804e-6)" id="path11665" inkscape:connector-curvature="0" /> -<path inkscape:connector-curvature="0" d="m 522.7891,355.75 -2.0391,0 0,-1.2188 c -0.3386,0.474 -0.7396,0.8282 -1.2031,1.0625 -0.4584,0.2292 -0.9219,0.3438 -1.3907,0.3438 -0.9531,0 -1.7708,-0.3828 -2.4531,-1.1484 -0.6771,-0.7709 -1.0156,-1.8438 -1.0156,-3.2188 0,-1.4062 0.3307,-2.4739 0.9922,-3.2031 0.6614,-0.7344 1.4974,-1.1016 2.5078,-1.1016 0.9271,0 1.7292,0.3854 2.4062,1.1563 l 0,-4.125 2.1954,0 0,11.4531 m -5.8594,-4.3281 c 0,0.8854 0.1224,1.526 0.3672,1.9218 0.3541,0.573 0.8489,0.8594 1.4843,0.8594 0.5052,0 0.9349,-0.2135 1.2891,-0.6406 0.3542,-0.4323 0.5313,-1.0755 0.5313,-1.9297 0,-0.9531 -0.1719,-1.638 -0.5157,-2.0547 -0.3437,-0.4218 -0.7838,-0.6328 -1.3203,-0.6328 -0.5208,0 -0.9583,0.2084 -1.3125,0.625 -0.3489,0.4115 -0.5234,1.0287 -0.5234,1.8516" style="font-weight:bold;color:#000000;fill:url(#linearGradient5857-64);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path11667" /> -<path inkscape:connector-curvature="0" d="m 533.2031,347.4531 0,1.75 -1.5,0 0,3.3438 c 0,0.6771 0.013,1.0729 0.039,1.1875 0.031,0.1093 0.096,0.2005 0.1953,0.2734 0.1042,0.073 0.2292,0.1094 0.375,0.1094 0.2031,0 0.4974,-0.07 0.8828,-0.211 l 0.1875,1.7032 c -0.5104,0.2187 -1.0885,0.3281 -1.7343,0.3281 -0.3959,0 -0.7526,-0.065 -1.0704,-0.1953 -0.3177,-0.1354 -0.552,-0.3073 -0.7031,-0.5156 -0.1458,-0.2136 -0.2474,-0.5 -0.3047,-0.8594 -0.047,-0.2552 -0.07,-0.7708 -0.07,-1.5469 l 0,-3.6172 -1.0078,0 0,-1.75 1.0078,0 0,-1.6484 2.2032,-1.2813 0,2.9297 1.5,0" style="font-weight:bold;color:#000000;fill:url(#linearGradient5621-6);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path11669" /> -<path style="font-weight:bold;color:#000000;fill:url(#linearGradient5621-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.684211;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" d="m 534.75,344.2812 0,11.4688 2.1875,0 0,-4.1563 c 0,-0.6979 0.057,-1.2395 0.1875,-1.5937 0.1354,-0.3594 0.3385,-0.6042 0.625,-0.7813 0.077,-0.048 0.1448,-0.09 0.2279,-0.125 l 0,-1.4687 c -0.3851,0.2058 -0.714,0.4934 -1.0404,0.875 l 0,-4.2188 z" transform="translate(8.87136e-6,9.40804e-6)" id="path11671" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccc" /> -<path style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0;word-spacing:0;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" d="m 537.9836,347.3884 c -0.2626,0.1113 -0.5715,0.3803 -0.7961,0.5803 l 0,-3.6875 0,-0.25 -0.25,0 -2.1875,0 -0.25,0 0,0 0,0.25 0,11.4688 0,0.25 0.25,0 2.1875,0 0.25,0 0,-0.25 0,-4.1563 c 0,-0.6842 0.078,-1.201 0.1875,-1.5 l -0.031,0 c 0.1195,-0.3172 0.2875,-0.5055 0.5312,-0.6562 0.06,-0.037 0.055,-0.106 0.1334,-0.1309 M 535,344.5312 l 1.6875,0 0,3.9688 0,0.6875 0.4375,-0.5313 c 0.1921,-0.2245 0.638,-0.5655 0.846,-0.7209 l 0,0.7812 c -0.044,0.022 -0.3031,0.257 -0.346,0.2835 -0.3292,0.2035 -0.5675,0.5047 -0.7188,0.9062 l -0.031,0 c -0.1504,0.4094 -0.1875,0.976 -0.1875,1.6875 l 0,3.9063 -1.6875,0 0,-10.9688 z" id="path11671-3" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" /> -<path style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0;word-spacing:0;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" d="m 509.9927,349.2942 c 0.2272,0.063 0.3601,0.1092 0.5385,0.2995 l 0,0.031 c 0.2036,0.2137 0.2632,0.583 0.3125,1 l -0.8437,0 0,1.8437 3.375,0 0.25,0 0,-0.25 c 0.032,-1.7191 -0.3247,-2.9993 -1.0938,-3.875 -0.6385,-0.7317 -1.5164,-1.1651 -2.5331,-1.2812 z m 2.1635,-0.638 c 0.6193,0.7052 0.9252,1.8183 0.9375,3.3125 l -3.0923,0 0,-0.8437 1.1861,0 0.25,0 0,-0.25 c -0.016,-0.6576 -0.1755,-1.207 -0.5313,-1.5938 -0.01,-0.01 -0.025,0.01 -0.031,0 -0.1799,-0.1865 -0.6563,-0.3916 -0.8791,-0.4835 l 0,-1.1765 c 0.8775,0.137 1.5383,0.4788 2.1603,1.035 z m -1.2812,4.1563 -0.062,0.2187 c -0.1106,0.3847 -0.2575,0.6373 -0.4375,0.7813 -0.1301,0.1041 -0.2074,0.1594 -0.3768,0.1865 l 0,2.1583 c 0.7896,-0.017 1.5178,-0.2313 2.0902,-0.626 0.6591,-0.4564 1.1124,-1.131 1.4062,-1.9688 l 0.094,-0.2812 -0.3125,-0.062 -2.1875,-0.375 -0.2187,-0.031 z m 0.3125,0.5625 1.625,0.2812 c -0.2595,0.5903 -0.5614,1.1123 -1.0313,1.4375 -0.4028,0.2779 -1.1988,0.4841 -1.7798,0.5572 l 0,-1.1563 c 0.1572,-0.057 0.5579,-0.2045 0.6861,-0.3071 0.2284,-0.1827 0.3745,-0.4901 0.5,-0.8125 z" id="path11665-7" inkscape:connector-curvature="0" sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817-5" d="m 537.7359,348.3968 c -0.26,0.1703 -0.5421,0.4041 -0.8021,0.75" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path inkscape:connector-curvature="0" d="m 515.1958,351.9239 c 0,-1.4062 0.2202,-2.5181 0.8817,-3.2473 0.6614,-0.7344 1.5416,-0.9911 2.552,-0.9027" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12203);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" id="path11667-0" sodipodi:nodetypes="ccc" /> -<path inkscape:connector-curvature="0" d="m 520.929,352.4257 c 0,0.7286 -0.286,1.2427 -0.7661,1.7266 -0.3607,0.3635 -0.8208,0.5355 -1.3442,0.4897" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12201);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" id="path11667-0-3" sodipodi:nodetypes="csc" /> -<path inkscape:connector-curvature="0" d="m 511.4152,353.5647 c -0.2823,0.6881 -0.5979,0.9388 -1.1869,1.2819" style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12220);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" id="path11667-0-3-8" sodipodi:nodetypes="cc" /> -</g> -<path style="fill:#b2dafe;fill-opacity:1;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 1333.3,63.71495 1.046,0" id="path3819-4" inkscape:connector-curvature="0" /> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3817-9" d="m 1330.49,63.76263 0.488,-9.6e-4" style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -<g id="text_letter_spacing" transform="matrix(0.942859,0,0,0.942859,-725.403,273.9242)"> -<g transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" id="g7621"> -<rect style="font-size:12px;fill:none;stroke:none" id="rect6706" width="29.92172" height="30" x="1310" y="49.93628" /> -</g> -<g id="g11383" transform="translate(-0.306361,0)"> -<use xlink:href="#use3810" x="0" y="0" id="use11377" transform="matrix(1.060604,0,0,1.060604,-41.64705,2.913479)" width="1250" height="1250" /> -<use xlink:href="#g3813" x="0" y="0" id="use11379" transform="matrix(1.060604,0,0,1.060604,-26.74292,-11.87951)" width="1250" height="1250" /> -</g> -</g> -<g id="text_horz_kern" transform="translate(-668.472,236.5637)"> -<g transform="translate(0.437484,0)" id="g7628"> -<path style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1457608;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" d="m 1283.273,89.56319 0,20.74611" id="path2219" transform="translate(-1.25,-0.5)" inkscape:connector-curvature="0" /> -<use xlink:href="#g11383" height="1250" width="1250" id="use11389" y="0" x="0" transform="matrix(0.942859,0,0,0.942859,32.60846,37.50304)" /> -</g> -<g transform="matrix(0.935775,0,0,0.933333,42.8409,7.095812)" id="g7662-8"> -<g id="g6738-8" transform="translate(0.232684,0.559354)" /> -<rect style="font-size:12px;fill:none;stroke:none" id="rect6736-4" width="29.92172" height="30" x="1309.75" y="83.93627" /> -</g> -</g> -<g id="text_vert_kern" transform="translate(-741.483,236.5637)"> -<g transform="matrix(0.935775,0,0,0.933333,85.72702,7.095784)" id="g7662"> -<rect style="font-size:12px;fill:none;stroke:none" id="rect6736" width="29.92172" height="30" x="1309.884" y="83.93627" /> -</g> -<g id="g7648"> -<path id="path2221" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.199;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" d="m 1324.696,87.52091 0,21.71199 m 13.383,-7.8478 -13.191,0 m -0.5,4.5 -13,0" sodipodi:nodetypes="cccccc" transform="translate(0.755145,1.059354)" inkscape:connector-curvature="0" /> -<use xlink:href="#use11377" height="1250" width="1250" transform="matrix(0.942859,0,0,0.942859,75.57607,38.50326)" id="use11392" y="0" x="0" /> -</g> -<use xlink:href="#g3813" height="1250" width="1250" transform="translate(50.538,22.7904)" id="use3728" y="0" x="0" /> -</g> -<g id="text_rotation" transform="translate(-724.5715,236.3563)"> -<g transform="matrix(0.935775,0,0,0.933333,88.85183,7.069861)" id="g7699"> -<g id="g6769" transform="translate(-0.990112,0.559353)" /> -<rect style="font-size:12px;fill:none;stroke:none" id="rect6775" width="29.92172" height="30" x="1352.59" y="84.18627" /> -</g> -<g transform="matrix(0.9996731,0,0,1,2.594501,1.121155e-6)" id="g7685"> -<path id="path3005" style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1707308;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" d="m 1366.121,88.83886 0,21.19484 m 11.923,0.04 -11.625,-6.625" sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" /> -<use xlink:href="#use11392" height="1250" width="1250" transform="translate(40.65159,-3.000001)" id="use11398" y="0" x="0" /> -<use xlink:href="#g3813" x="0" y="0" id="use3744" transform="matrix(0.866026,0.5,-0.5,0.866026,301.6845,-602.4203)" width="1250" height="1250" /> -</g> -<g transform="matrix(0.935775,0,0,0.933333,167.3071,6.369855)" id="g7641"> -<rect style="font-size:12px;fill:none;stroke:none" id="rect15695" width="29.92172" height="30" x="1268.75" y="84.93627" /> -</g> -</g> -<g id="text_subscript" transform="matrix(0.942859,0,0,0.942859,-575.14529,244.63136)" style="fill:#cccccc"> -<rect style="font-size:12px;fill:none;stroke:none" id="rect5911" width="29.921721" height="30" x="1310" y="49.936279" /> -<g transform="matrix(1.060604,0,0,1.060604,610.00136,-259.457)" style="font-size:24px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill:none;stroke:#000000;stroke-width:0.75;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold Italic" id="text5975"> -<path inkscape:connector-curvature="0" d="M 669.69141,306.50781 666.59766,310 l -4.125,0 5.7539,-6.375 -3.16406,-6.07031 3.57422,0 1.8164,3.55078 3.15235,-3.55078 4.08984,0 -5.77734,6.45703 3.14062,5.98828 -3.57422,0 -1.79296,-3.49219" style="color:#000000;fill:url(#linearGradient5918-3-6);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path5935" /> -<path inkscape:connector-curvature="0" d="m 677.66193,306.71043 2.17855,0 0.54844,4.02955 c 0.13711,1.03596 0.21328,1.76214 0.22852,2.17855 0.28438,-0.82774 0.6754,-1.70119 1.17307,-2.62035 l 1.93479,-3.58775 2.31566,0 -4.99695,8.88177 c -0.41134,0.73634 -0.73634,1.25177 -0.97501,1.54631 -0.2336,0.29453 -0.51798,0.52559 -0.85314,0.69317 -0.33008,0.16758 -0.72872,0.25137 -1.19591,0.25137 -0.46212,0 -0.98264,-0.0813 -1.56155,-0.24375 l 0.19043,-1.6301 c 0.26407,0.0762 0.52052,0.11426 0.76935,0.11426 0.67032,0 1.2213,-0.50782 1.65295,-1.52346 l -1.4092,-8.08957" style="font-size:65.00091553%;baseline-shift:sub;color:#000000;fill:url(#linearGradient5932-9-2);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" id="path5937" /> -<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6782" d="m 663.8155,309.4334 4.86915,-5.38212 m 1.99525,-2.25349 3.13212,-3.60616" style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6792" d="m 677.16618,316.79906 c 0.90551,0 1.48175,-0.28808 2.26378,-1.60523 m 1.6464,-2.42842 2.94292,-5.51541" style="fill:none;stroke:#83c3fd;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g id="text_superscript"> -<rect y="292" x="629.99963" height="27.999998" width="28.000008" id="rect5896" style="font-size:12px;fill:none;stroke:none" /> -<g id="text5926" style="font-size:24px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill-opacity:1;stroke:#000000;stroke-width:0.75;font-family:Arial;-inkscape-font-specification:Arial Bold Italic"> -<path id="path5908" style="fill:url(#linearGradient5918);fill-opacity:1" d="M 639.69141,308.50781 636.59766,312 l -4.125,0 5.7539,-6.375 -3.16406,-6.07031 3.57422,0 1.8164,3.55078 3.15235,-3.55078 4.08984,0 -5.77734,6.45703 3.14062,5.98828 -3.57422,0 -1.79296,-3.49219" inkscape:connector-curvature="0" /> -<path id="path5910" style="font-size:65.00091553%;baseline-shift:super;fill:url(#linearGradient5932);fill-opacity:1;stroke:#000000;stroke-width:0.75" d="m 647.66193,294.31043 2.17855,0 0.54844,4.02955 c 0.13711,1.03596 0.21328,1.76214 0.22852,2.17855 0.28438,-0.82775 0.6754,-1.70119 1.17307,-2.62035 l 1.93479,-3.58775 2.31566,0 -4.99695,8.88177 c -0.41134,0.73634 -0.73634,1.25177 -0.97501,1.54631 -0.2336,0.29453 -0.51798,0.52559 -0.85314,0.69317 -0.33008,0.16758 -0.72872,0.25137 -1.19591,0.25137 -0.46212,0 -0.98264,-0.0812 -1.56155,-0.24375 l 0.19043,-1.6301 c 0.26407,0.0762 0.52052,0.11426 0.76935,0.11426 0.67032,0 1.2213,-0.50782 1.65295,-1.52346 l -1.4092,-8.08957" inkscape:connector-curvature="0" /> -<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6006" d="m 633.8112,311.45286 4.86915,-5.38212 m 1.99525,-2.25349 3.13212,-3.60616" style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path sodipodi:nodetypes="cccc" inkscape:connector-curvature="0" id="path6790" d="m 647.19598,304.48388 c 0.90551,0 1.48175,-0.28808 2.26378,-1.60523 m 1.6464,-2.42842 2.94292,-5.51541" style="fill:none;stroke:#82c2fe;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -</g> -</g> -<g style="display:inline" id="tool-measure" transform="matrix(0,0.99999999,0.99999999,0,303.35939,23.950225)" inkscape:label="#tool-measure"> -<rect transform="matrix(-0.5,0.86602541,0.86602541,0.5,0,0)" style="fill:url(#linearGradient10236);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10238);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect10234" width="9" height="17" x="-125.51743" y="455.10529" /> -<g transform="matrix(-0.5,0.86602541,0.86602541,0.5,583.01743,-336.60527)" id="g11186"> -<rect y="117.5082" x="456.5083" height="18.991779" width="10.99167" id="rect10232" style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<g id="g11166" transform="matrix(-0.50000001,-0.86602541,-0.86602541,0.50000001,827.03618,462.44953)"> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 468.44435,154.45624 0.99999,1.73204" id="path11168" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" /> -<path inkscape:connector-curvature="0" id="path11170" d="m 469.17643,151.72417 c 0,0 2,3.4641 2,3.4641" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 471.90848,152.45622 1,1.73205" id="path11172" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" /> -<path inkscape:connector-curvature="0" id="path11174" d="m 472.64053,149.72417 c 0,0 2,3.4641 2,3.4641" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> -<path inkscape:connector-curvature="0" id="path11176" d="m 475.37258,150.45622 0.99996,1.73206" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 476.10463,147.72417 c 0,0 2,3.4641 2,3.4641" id="path11180" inkscape:connector-curvature="0" /> -<path inkscape:connector-curvature="0" id="path11182" d="m 478.83668,148.45622 1,1.73205" style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" sodipodi:nodetypes="cc" /> -<path style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" d="m 479.56873,145.72417 c 0,0 2,3.4641 2,3.4641" id="path11184" inkscape:connector-curvature="0" /> -</g> -</g> -</g> -<g id="g7621-2" transform="matrix(0.9357753,0,0,0.9333333,-316.61139,-22.531117)"> -<rect y="49.936279" x="1310" height="30" width="29.921721" id="rect6706-4" style="font-size:12px;fill:none;stroke:none" /> -</g> -<g id="snap-text-baseline" inkscape:label="#toggle_snap_text_baseline"> -<path style="fill:none;stroke:#008000;stroke-width:0.94135743px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" d="m 912.5,44.986907 12,-1e-6" id="path13356" inkscape:connector-curvature="0" sodipodi:nodetypes="cc" /> -<use height="1250" width="1250" transform="translate(-363.35011,-20.145792)" id="use11377-6" y="0" x="0" xlink:href="#use3810" /> -<rect transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" id="rect3224-2-8-6-5-8" width="3.5840631" height="3.621212" x="611.27881" y="674.88129" /> -</g> -<rect style="color:#000000;fill:none;stroke:none;stroke-width:0.4532662;marker:none;display:inline" id="rect2808-3" width="24" height="24" x="930" y="25" /> -<g id="snap-others" inkscape:label="#toggle_snap_others"> -<path inkscape:connector-curvature="0" sodipodi:nodetypes="cc" id="path3570-5" d="m 935,31.25 0,8.5" style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<rect y="30.1269" x="932.9951" height="4.01786" width="4.0099" id="rect3568-1" style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> -<path sodipodi:nodetypes="cc" inkscape:connector-curvature="0" id="path6498-1-8" d="m 939,39 6,-9" style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path transform="matrix(0.8749999,0,0,0.875,282.6876,5.625)" d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530-3-7-6" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -<g transform="translate(1.5,0.5)" id="g13570"> -<path inkscape:connector-curvature="0" id="path6380-5" d="m 943,37.5 0,3" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path inkscape:connector-curvature="0" id="path6380-4-1" d="m 943,41.5 0,3" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path inkscape:connector-curvature="0" id="path6380-8-4" d="m 939.5,41 3,0" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -<path inkscape:connector-curvature="0" id="path6380-4-0-5" d="m 943.5,41 3,0" style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> -</g> -<path transform="matrix(0.8749999,0,0,0.875,277.1876,14.625)" d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" sodipodi:ry="2" sodipodi:rx="2" sodipodi:cy="33" sodipodi:cx="753.5" id="path6530-3-7-6-0" style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" sodipodi:type="arc" /> -</g> -<g inkscape:label="#mesh-gradient" id="mesh-gradient" transform="translate(507.9575,294.89331)"> -<rect style="color:#000000;fill:none;stroke:none" id="box" width="24" height="24" x="-19.9575" y="90.106689" /> -<path sodipodi:nodetypes="ccccc" id="path6190" d="m -0.4575,109.60669 c -3.5,-7.5 4.5,-7.5 0,-15 -7.5,4.5 -7.5,-3.5 -15,0 4.5,7.5 -3.5,7.5 0,15 7.5,-3.5 7.5,4.5 15,0 z" style="fill:url(#linearGradient6212);fill-opacity:1;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> -<rect style="fill:#ffffff;stroke:#000000;stroke-width:1" id="rect6105" width="4" height="4" x="-17.4575" y="92.606689" /> -<use transform="matrix(1,0,0,0.99644,13.7166,13.067552)" xlink:href="#rect3568" id="use3133" /> -<use transform="matrix(1,0,0,0.99644,13.7265,-1.932448)" xlink:href="#rect3568" id="use3135" /> -<use transform="matrix(1,0,0,0.99644,-1.2735,13.067552)" xlink:href="#rect3568" id="use3137" /> -</g> -<g id="paint-gradient-mesh" inkscape:label="#fill_mesh"> -<rect style="fill:#99b6d4" height="9.5" width="9.5" y="347" x="1095.5" id="rect3140" /> -<rect style="fill:#ffffff" height="9.5" width="9.5" y="357" x="1095.5" id="rect3142" /> -<rect style="fill:#99b6d4" height="9.5" width="9.5" y="357" x="1105" id="rect3144" /> -<rect style="fill:#ffffff" height="9.5" width="9.5" y="347" x="1105" id="rect3146" /> -<use xlink:href="#rect4381" transform="translate(425.035091 282.020218)" id="use3148" /> -</g> -<g id="paint-gradient-conical" inkscape:label="#fill_conical"> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" sodipodi:start="0" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="1.0471976" d="m1144.5 357a9.5 9.5 0 0 1 -4.75 8.2272l-4.8-8.23z" id="path3145" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" sodipodi:start="4.1887902" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="5.2359878" d="m1130.2 348.77a9.5 9.5 0 0 1 9.5 0l-4.7 8.23z" id="path3147" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" sodipodi:start="1.0471976" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="2.0943951" d="m1139.8 365.23a9.5 9.5 0 0 1 -9.5 0l4.7-8.23z" id="path3149" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#ffffff" sodipodi:type="arc" d="m1130.2 365.23a9.5 9.5 0 0 1 -4.7 -8.23h9.5z" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="3.1415927" sodipodi:start="2.0943951" id="path3151" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" sodipodi:start="3.1415927" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="4.1887902" d="m1125.5 357a9.5 9.5 0 0 1 4.75 -8.2272l4.8 8.23z" id="path3153" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:#99b6d4" sodipodi:type="arc" d="m1139.8 348.77a9.5 9.5 0 0 1 4.7 8.23h-9.5z" sodipodi:cy="357" sodipodi:cx="1135" sodipodi:end="6.2831853" sodipodi:start="5.2359878" id="path3155" /> -<path sodipodi:rx="9.5" sodipodi:ry="9.5" style="fill:none;stroke:#000000" sodipodi:type="arc" d="m1144.5 357a9.5 9.5 0 1 1 -19 0 9.5 9.5 0 1 1 19 0z" sodipodi:cy="357" sodipodi:cx="1135" id="path3157" /> -</g> -<g id="dialog-filters" inkscape:label="#dialog-filters"> -<path sodipodi:nodetypes="cscccccc" inkscape:connector-curvature="0" id="path7138" d="m 272.415,308.6281 c 0.094,-3.3143 5.6445,-3.5094 7.46,-3.5204 1.9957,-0.012 7.3463,0.2617 7.4598,3.4365 l -6.0191,6.2866 0,4.1909 c -1.4294,0.465 -1.6006,0.5246 -2.9496,0 L 278.3661,314.8308 Z" style="opacity:0.909;fill:url(#linearGradient7163);fill-opacity:1;stroke:#000000;stroke-width:0.9143469;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:10;display:inline" /> -<path d="m 294.9642,496.273 a 60.6092,14.6472 0 1 1 -121.2184,0 A 60.6092,14.6472 0 1 1 294.9642,496.273 Z" sodipodi:ry="14.6472" sodipodi:rx="60.6092" sodipodi:cy="496.273" sodipodi:cx="234.355" id="path7140" style="opacity:0.909;fill:url(#radialGradient7218);fill-opacity:1.0;stroke:url(#radialGradient7220);stroke-width:3.5711801;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:10;display:inline" sodipodi:type="arc" transform="matrix(0.115021,0,0,0.1903986,253.0723,212.7017)" /> -<rect style="fill:none;stroke:none" id="rect4326-5" width="16" height="16" x="272" y="304" /> -</g> -<g id="symbols_old" inkscape:label="#symbols" transform="translate(0.6024061,-0.83343494)"> -<path transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-108.76002,51.062605)" d="m 339.0043,147.2229 c -0.5586,0.3411 -3.6668,-2.4828 -4.299,-2.6522 -0.6527,-0.1749 -4.8622,0.6799 -5.2143,0.1032 -0.3411,-0.5586 2.4828,-3.6668 2.6522,-4.299 0.1749,-0.6527 -0.6798,-4.8621 -0.1031,-5.2143 0.5585,-0.3411 3.6667,2.4828 4.2989,2.6522 0.6527,0.1749 4.8622,-0.6798 5.2143,-0.1031 0.3411,0.5585 -2.4828,3.6667 -2.6522,4.2989 C 338.7262,142.6613 339.581,146.8708 339.0043,147.2229 Z" inkscape:randomized="0" inkscape:rounded="0.12956553" inkscape:flatsided="false" sodipodi:arg2="1.8079867" sodipodi:arg1="1.0471976" sodipodi:r2="3.4762988" sodipodi:r1="6.9641943" sodipodi:cy="141.19177" sodipodi:cx="335.52216" sodipodi:sides="4" id="path6040-9" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#c80000;stroke-width:0.79027408;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.790274, 0.790274;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" sodipodi:type="star" /> -<path transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-106.22945,53.360636)" d="m 339.0043,147.2229 c -0.5586,0.3411 -3.6668,-2.4828 -4.299,-2.6522 -0.6527,-0.1749 -4.8622,0.6799 -5.2143,0.1032 -0.3411,-0.5586 2.4828,-3.6668 2.6522,-4.299 0.1749,-0.6527 -0.6798,-4.8621 -0.1031,-5.2143 0.5585,-0.3411 3.6667,2.4828 4.2989,2.6522 0.6527,0.1749 4.8622,-0.6798 5.2143,-0.1031 0.3411,0.5585 -2.4828,3.6667 -2.6522,4.2989 C 338.7262,142.6613 339.581,146.8708 339.0043,147.2229 Z" inkscape:randomized="0" inkscape:rounded="0.12956553" inkscape:flatsided="false" sodipodi:arg2="1.8079867" sodipodi:arg1="1.0471976" sodipodi:r2="3.4762988" sodipodi:r1="6.9641943" sodipodi:cy="141.19177" sodipodi:cx="335.52216" sodipodi:sides="4" id="path6040" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:0.7902742;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" sodipodi:type="star" /> -</g> -<g transform="translate(10.12068,24.83988)" inkscape:label="#symbols" id="symbols"> -<rect style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="rect14677" width="16" height="16" x="319.423" y="108.194" /> -<path style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient5545-0-70);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" d="m 321.4694,109.627 c 4.013,-1.1346 7.9876,-1.2788 11.9072,0 -0.9623,3.0613 -0.1342,5.9645 -0.5253,8.9123 -0.3223,2.4291 -2.7191,3.8905 -5.3932,5.1263 -2.235,-1.2411 -4.943,-2.2279 -5.4283,-5.1263 C 321.5371,115.5973 322.3342,111.8965 321.4694,109.627 Z" id="path13801" inkscape:connector-curvature="0" sodipodi:nodetypes="ccscsc" /> -<g id="g14615" style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" transform="matrix(0.0362255,0,0,0.0374743,341.0312,112.2468)"> -<path sodipodi:nodetypes="czczc" inkscape:connector-curvature="0" id="path13803" d="m -477.8634,129.033 c -47.7622,-35.34842 40.4745,-98.71298 71.2745,-29.15779 30.8001,69.55519 -22.9969,107.72809 -39.6868,64.79499 17.4149,-0.107 34.161,-19.3157 13.7689,-48.5962 C -452.899,86.79346 -476.4068,97.43427 -477.8634,129.033 Z" style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> -<path sodipodi:nodetypes="ccccccc" inkscape:connector-curvature="0" id="path13805" d="m -406.5888,201.5225 c 42.8118,-38.3565 24.4831,-122.22255 -19.4385,-158.74789 9.1169,-27.50161 24.6669,-51.989057 51.026,-70.86957 21.4731,16.69615 40.2672,37.030722 51.0261,70.86957 -46.9482,33.5572 -62.3216,121.69019 -19.4385,158.74789 -7.7569,14.5018 -13.3081,31.1485 -31.5875,37.2323 C -389.3257,233.7161 -400.9014,219.5169 -406.5888,201.5225 Z" style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> -<path inkscape:transform-center-y="-7.288905" inkscape:transform-center-x="-68.84826" style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" d="m -273.4425,129.033 c 47.7622,-35.34842 -40.4745,-98.71298 -71.2745,-29.15779 -30.8001,69.55519 22.9969,107.72809 39.6868,64.79499 -17.4149,-0.107 -34.161,-19.3157 -13.7689,-48.5962 C -298.4069,86.79346 -274.8991,97.43427 -273.4425,129.033 Z" id="path13807" inkscape:connector-curvature="0" sodipodi:nodetypes="czczc" /> -<path inkscape:connector-curvature="0" id="path13809" d="m -443.0312,121.4688 a 10.001,10.001 0 1 0 0,20 l 135.25,0 a 10.001,10.001 0 1 0 0,-20 L -443.0312,121.4688 Z" style="font-size:xx-small;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient15270-5);fill-opacity:1;stroke:none;stroke-width:20;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill-rule:evenodd" /> -</g> -</g> -<g id="symbol-add" inkscape:label="#symbols" transform="translate(10.12068,44.83988)"> -<rect y="108.194" x="319.6498" height="16" width="16" id="rect15227" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> -<path sodipodi:type="arc" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="path10909" sodipodi:cx="337.3443" sodipodi:cy="163.0209" sodipodi:rx="3.963478" sodipodi:ry="4.113043" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" /> -<path inkscape:connector-curvature="0" id="path4685-2" d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" sodipodi:nodetypes="cccccccccc" /> -</g> -<g id="no-marker" inkscape:label="#markers" transform="translate(10.75523,88.20311)"> -<rect y="107.8581" x="319.3575" height="16" width="16" id="rect3997" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> -<g id="g7224" transform="translate(-0.0655561,0.8269009)"> -<path inkscape:connector-curvature="0" id="path4011" d="m 334.5089,115.0312 -14.1716,0" style="fill:none;stroke:#000000;stroke-width:1.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> -</g> -</g> -<g transform="matrix(0,1,1,0,221.5126,-146.552)" inkscape:label="#symbols" id="symbol-remove"> -<rect style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="rect10952" width="16" height="16" x="319.6498" y="108.194" /> -<path transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" sodipodi:ry="4.113043" sodipodi:rx="3.963478" sodipodi:cy="163.0209" sodipodi:cx="337.3443" id="path10954" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:0.9166216;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.9166216,1.8332432;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" sodipodi:type="arc" /> -<path sodipodi:nodetypes="cccccccccc" style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" id="path10956" inkscape:connector-curvature="0" /> -</g> -<g transform="translate(30.12068,44.83988)" inkscape:label="#symbols" id="symbol-smaller"> -<rect style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="rect10979" width="16" height="16" x="319.6498" y="108.194" /> -<path sodipodi:type="arc" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.6086934;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.6086934,0.6086934;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="path10989" sodipodi:cx="337.3443" sodipodi:cy="163.0209" sodipodi:rx="3.963478" sodipodi:ry="4.113043" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" /> -<path transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" sodipodi:ry="4.113043" sodipodi:rx="3.963478" sodipodi:cy="163.0209" sodipodi:cx="337.3443" id="path10981" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" sodipodi:type="arc" /> -</g> -<g id="symbol-bigger" inkscape:label="#symbols" transform="translate(30.12068,64.83988)"> -<rect y="108.194" x="319.6498" height="16" width="16" id="rect11047" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> -<path transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" sodipodi:ry="4.113043" sodipodi:rx="3.963478" sodipodi:cy="163.0209" sodipodi:cx="337.3443" id="path11049" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;stroke:#000000;stroke-width:0.6086935;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;fill-opacity:0.7019608;fill-rule:evenodd" sodipodi:type="arc" /> -<path sodipodi:type="arc" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215,0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="path11051" sodipodi:cx="337.3443" sodipodi:cy="163.0209" sodipodi:rx="3.963478" sodipodi:ry="4.113043" d="m 341.3078,163.0209 c 0,2.2716 -1.7745,4.113 -3.9635,4.113 -2.189,0 -3.9635,-1.8414 -3.9635,-4.113 0,-2.2716 1.7745,-4.113 3.9635,-4.113 C 339.5333,158.9079 341.3078,160.7493 341.3078,163.0209 Z" transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> -</g> -<g transform="translate(30.12068,84.83988)" inkscape:label="#symbols" id="symbol-fit"> -<rect style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient15175-8);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="rect11107" width="16" height="16" x="319.6498" y="108.194" /> -<path transform="matrix(2.894146,0,0,2.833322,-656.743,-353.6308)" d="m 341.3078,163.0209 a 3.963478,4.113043 0 0 1 -3.9635,4.113 L 337.3443,163.0209 Z" sodipodi:ry="4.113043" sodipodi:rx="3.963478" sodipodi:cy="163.0209" sodipodi:cx="337.3443" id="path11111" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.3492142;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" sodipodi:type="arc" sodipodi:start="0" sodipodi:end="1.570796" /> -<path sodipodi:type="arc" style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215, 0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" id="path11051-8" sodipodi:cx="337.3443" sodipodi:cy="163.0209" sodipodi:rx="3.963478" sodipodi:ry="4.113043" d="m 341.3078,163.0209 a 3.963478,4.113043 0 1 1 -7.927,0 A 3.963478,4.113043 0 1 1 341.3078,163.0209 Z" transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> -</g> + <dc:format>image/svg+xml</dc:format> + <dc:type + rdf:resource="http://purl.org/dc/dcmitype/StillImage" /> + <cc:license + rdf:resource="http://creativecommons.org/licenses/GPL/2.0/" /> + <dc:creator> + <cc:Agent> + <dc:title>Inkscape Developers</dc:title> + </cc:Agent> + </dc:creator> + <dc:rights> + <cc:Agent> + <dc:title>Inkscape Developers</dc:title> + </cc:Agent> + </dc:rights> + <dc:title /> + </cc:Work> + <cc:License + rdf:about="http://creativecommons.org/licenses/GPL/2.0/"> + <cc:permits + rdf:resource="http://web.resource.org/cc/Reproduction" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/Distribution" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/Notice" /> + <cc:permits + rdf:resource="http://web.resource.org/cc/DerivativeWorks" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/ShareAlike" /> + <cc:requires + rdf:resource="http://web.resource.org/cc/SourceCode" /> + </cc:License> + </rdf:RDF> + </metadata> + <g + id="pixelart-trace" + transform="translate(-18.39737,3.8673942)" + inkscape:label="#g10374"> + <g + transform="translate(4.7486953,-1.0469564)" + id="g10366"> + <rect + style="fill:#ff0000;stroke:none" + id="rect10358" + width="8" + height="8" + x="248.68954" + y="82.218292" /> + <rect + y="90.218292" + x="248.68954" + height="8" + width="8" + id="rect10364" + style="fill:#00ff00;stroke:none" /> + <rect + y="90.218292" + x="256.68954" + height="8" + width="8" + id="rect10362" + style="fill:#ffff00;stroke:none" /> + <rect + y="82.218292" + x="256.68954" + height="8" + width="8" + id="rect10360" + style="fill:#0000ff;stroke:none" /> + </g> + <g + transform="translate(2.3527797,0.18483202)" + id="g10339"> + <path + style="fill:none;stroke:url(#linearGradient10399);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 256.013,84.079 c 0,0 4.16491,-0.935092 6.5,1.4 2.33509,2.335092 1.5,6.6 1.5,6.6" + id="path9547" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czc" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect9507" + width="1" + height="1" + x="255.51271" + y="90.578949" /> + <rect + y="83.578949" + x="255.51271" + height="1" + width="1" + id="rect9509" + style="fill:#cccccc;fill-opacity:1;stroke:none" /> + <rect + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + id="rect9513" + width="1" + height="1" + x="254.51271" + y="89.578949" /> + <rect + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + id="rect9515" + width="1" + height="1" + x="254.51271" + y="88.578949" /> + <rect + style="fill:#808080;fill-opacity:1;stroke:none" + id="rect9517" + width="1" + height="1" + x="253.51271" + y="87.578949" /> + <rect + style="fill:#808080;fill-opacity:1;stroke:none" + id="rect9519" + width="1" + height="1" + x="253.51271" + y="86.578949" /> + <rect + style="fill:#b3b3b3;fill-opacity:1;stroke:none" + id="rect9521" + width="1" + height="1" + x="254.51271" + y="85.578949" /> + <rect + style="fill:#b3b3b3;fill-opacity:1;stroke:none" + id="rect9523" + width="1" + height="1" + x="254.51271" + y="84.578949" /> + <rect + y="91.578949" + x="256.5127" + height="1" + width="1" + id="rect9525" + style="fill:#000000;fill-opacity:1;stroke:none" /> + <rect + y="92.578949" + x="257.5127" + height="1" + width="1" + id="rect9527" + style="fill:#4d4d4d;fill-opacity:1;stroke:none" /> + <rect + style="fill:#4d4d4d;fill-opacity:1;stroke:none" + id="rect9531" + width="1" + height="1" + x="258.5127" + y="92.578949" /> + <rect + style="fill:#808080;fill-opacity:1;stroke:none" + id="rect9533" + width="1" + height="1" + x="259.5127" + y="93.578949" /> + <rect + style="fill:#808080;fill-opacity:1;stroke:none" + id="rect9535" + width="1" + height="1" + x="260.5127" + y="93.578949" /> + <rect + style="fill:#b3b3b3;fill-opacity:1;stroke:none" + id="rect9537" + width="1" + height="1" + x="261.5127" + y="92.578949" /> + <rect + style="fill:#b3b3b3;fill-opacity:1;stroke:none" + id="rect9539" + width="1" + height="1" + x="262.5127" + y="92.578949" /> + <rect + style="fill:#cccccc;fill-opacity:1;stroke:none" + id="rect9541" + width="1" + height="1" + x="263.5127" + y="91.578949" /> + </g> + </g> + <use + xlink:href="#g6790" + inkscape:label="#use6796" + height="1250" + width="1250" + transform="translate(49.67355,1.5750314)" + id="draw-polygon" + y="0" + x="0" /> + <use + xlink:href="#g6786" + inkscape:label="#use6794" + height="1250" + width="1250" + transform="translate(64.149513,-2.9231615)" + id="draw-star" + y="0" + x="0" /> + <use + xlink:href="#transform-skew-horizontal" + inkscape:label="#use5772" + height="1250" + width="1250" + transform="matrix(0,-1,1,0,608.00241,1037.0645)" + id="transform-skew-vertical" + y="0" + x="0" /> + <g + id="inkscape-logo" + transform="matrix(0.1336824,0,0,0.1336824,329.5233,64.55912)" + inkscape:label="#inkscape_options"> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + style="opacity:0.1;fill:none;stroke:none" + id="use32" + class="outline-big" /> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + style="opacity:0.2;fill:none;stroke:none" + id="use34" + class="outline-small" /> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + id="use36" + class="black;" /> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + style="opacity:0.2;fill:none;stroke:none" + id="use38" + class="stroke-highlight" + clip-path="url(#clipoutline1)" /> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + id="use40" + class="specularity" + style="opacity:0.5;fill:url(#linearGradient3731)" /> + <use + xlink:href="#outline1" + height="128" + width="128" + y="0" + x="0" + id="use42" + class="low-specularity" + style="opacity:0.25;fill:url(#linearGradient3733);fill-opacity:1" /> + <path + class="specularity" + style="opacity:0.5;fill:url(#linearGradient3735)" + d="m 16.8,56.9 c -11.1,11 8.4,7.9 23.4,13.8 l 31,-54.5 c -4.7,-4.8 -10.7,-4.4 -15,0 z" + id="path44" /> + <path + style="fill:url(#linearGradient3737)" + class="shade" + d="m 8.9,61.7 c -2.6,9.4 13.4,9.2 22.3,12.7 1.5,-0.9 2.3,-2 1.2,-3 C 25.2,67.8 11,67.8 8.9,61.7 z m 111.1,1 c -2.7,8.9 -25.5,12.3 -33.4,17 -1.1,1.1 -0.4,2.1 0.9,3.1 9.8,-4.9 35.7,-8.7 32.5,-20.1 z m -75.7,11 c -3.2,0 -5.2,1.6 0.6,3.7 7.7,0.6 18.8,3.7 21.2,4.7 3.7,-6.6 -21,-8.4 -21.8,-8.4 z m -21.1,8.5 c -1.3,0.9 -2,1.9 -0.9,2.9 3.5,3.7 21.5,7.1 25.2,10.7 0.9,-1.2 1.2,-2.4 0.1,-3.6 -3.4,-3.4 -19.4,-6.6 -24.4,-10 z m 79.8,9.1 c -0.7,0.8 -1.3,1.7 -1.5,2.7 0,2.1 15.4,3.4 15.4,-0.6 -0.3,-0.7 -0.6,-1.4 -1.2,-2.1 -2.8,1.6 -9.7,1.2 -12.7,0 z m -7.4,0.4 c -3.4,7.1 -11.3,2.5 -19.8,11.1 -1.4,1.5 -0.6,2.3 0.7,3 8.7,-8.2 16.7,-2.9 19.7,-11.8 0.2,-0.9 0,-1.6 -0.6,-2.3 z m -54,7 c -2.4,3.2 -6.6,5.3 -9.6,2.7 -0.3,-0.2 -0.5,-0.5 -0.7,-0.8 -1.1,1.4 -1.1,2.9 0.7,4.5 3.6,3.1 9.3,-0.8 11,-5.2 -0.3,-0.5 -0.9,-0.9 -1.4,-1.2 z m 56.7,1 c -2.3,3.7 2.3,6.7 6.4,4.4 0.6,-0.7 0.5,-2.1 -0.6,-3.5 -2.4,1.2 -4.7,0.5 -5.8,-0.9 z m -54.4,3.9 c -0.9,1.1 -1.2,2.4 -0.1,3.6 3.6,3.6 12,0.1 13.5,8.6 1.1,6.1 14.7,2.9 21.5,-2 1.5,-1.64 0.8,-2.7 -0.5,-3.5 -7.1,4.8 -20,7.7 -21,1.9 -1.5,-8.5 -9.8,-5.1 -13.4,-8.6 z" + id="path46" /> + <path + id="icecap" + class="full-specularity" + style="fill:url(#linearGradient3739)" + d="m 70.5,15.5 16.3,16.6 c 1.5,1.5 1.5,4.6 0.6,5.5 L 79.3,31 77.7,40.7 71,37.1 60.1,44 56.5,29.5 50.7,42.1 36.2,42 c -2.8,0 -2.4,-2.9 0.5,-5.8 5.7,-6.3 16.8,-17 20.3,-20.7 3.6,-3.7 9.9,-3.6 13.5,0 z" /> + </g> + <g + transform="translate(839.0362,80.70908)" + id="layer1" /> + <g + style="stroke:#000000;stroke-opacity:1" + transform="translate(-251.412,155.0283)" + id="path-simplify" + inkscape:label="#simplify"> + <path + id="path10936" + style="fill:none;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4" + d="m 486.953,205.5 15,0 m 0,-4.0745 c -6.5,4.5 -8.5,-6.9713 -15,-1 m 0,-6.7577 c 2,5 2.1366,-2.0683 4,-3 2,-1 2.3412,3.0236 3,5 1,3 2,-3 4,-4 2.8284,-1.4142 0,7 4,3" + inkscape:connector-curvature="0" /> + </g> + <g + id="paint-none" + transform="matrix(0.79999,0,0,0.799999,325.90376,309.79868)" + inkscape:label="#fill_none"> + <rect + y="11.50168" + x="773.88013" + height="24.99999" + width="25" + id="rect194" + style="fill:none;stroke:none" /> + <path + id="path2473" + d="m 781.3777,19.00161 10.0031,10.00004" + style="fill:none;stroke:#000000;stroke-width:2.95878911;stroke-linecap:round" /> + <path + id="path2474" + d="M 791.3808,19.00161 781.3777,29.00164" + style="fill:none;stroke:#000000;stroke-width:2.95878911;stroke-linecap:round" /> + </g> + <g + id="stroke-cap-butt" + transform="translate(44.5,219.7886)" + inkscape:label="#cap_butt"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect3854" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 903,181.7114 0,-13.9227 17,0 0,13.9227" + id="path3844" + sodipodi:nodetypes="cccc" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,1)" + id="use5734" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,5)" + id="use5736" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,9)" + id="use5738" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,13)" + id="use5741" + y="0" + x="0" /> + </g> + <g + transform="translate(75.52,219.75)" + id="stroke-cap-square" + inkscape:label="#cap_square"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect3876" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 902.98,181.75 -0.04,-23 17.04,0 0.04,23" + id="path3878" + sodipodi:nodetypes="cccc" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,13)" + id="use5743" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,9)" + id="use5746" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,5)" + id="use5748" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,1)" + id="use5751" + y="0" + x="0" /> + </g> + <g + transform="translate(105.56,219.75)" + id="stroke-cap-round" + inkscape:label="#cap_round"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect3904" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 902.94,181.75 0.04,-13 c 0,-6 2.5,-10 8.5,-10 6,0 8.5,4 8.54,10 l -0.04,13" + id="path3906" + sodipodi:nodetypes="ccscc" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,13)" + id="use5753" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,9)" + id="use5755" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,5)" + id="use5759" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-9.999997,1)" + id="use5761" + y="0" + x="0" /> + </g> + <g + transform="translate(74.46,189.75)" + id="stroke-join-bevel" + inkscape:label="#join_bevel"> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 900.04,181.75 -0.04,-10.5 12,-12.5 11,0 0,17.5 -6,0 0,5.5" + id="path3939" + sodipodi:nodetypes="ccccccc" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect3918" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + id="path3920" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 900.04,181.75 -0.04,-10.5 12,-12.5 11,0 m -6,23 0,-6 6,0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + id="use5703" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-3.999997,0)" + id="use5705" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-7.999997,0)" + id="use5707" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,0)" + id="use5709" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,4)" + id="use5711" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,8)" + id="use5713" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,12)" + id="use5715" + y="0" + x="0" /> + </g> + <g + transform="translate(105.46,189.75)" + id="stroke-join-round" + inkscape:label="#join_round"> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 900.04,181.75 -0.04,-3 c 0,-12.5 7,-20 19.5,-20 l 3.5,0 0,17.5 -6,0 0,5.5" + id="path3949" + sodipodi:nodetypes="ccccccc" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect3951" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + id="path3953" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 900.04,181.75 -0.04,-3 c 0,-12.5 7,-20 19.5,-20 l 3.5,0 m -6,23 0,-6 6,0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + id="use5718" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-3.999997,0)" + id="use5720" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-7.999997,0)" + id="use5722" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,0)" + id="use5724" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,4)" + id="use5726" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,8)" + id="use5728" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,12)" + id="use5731" + y="0" + x="0" /> + </g> + <g + transform="matrix(0.791665,0,0,0.833336,428.27965,305.42141)" + id="paint-unknown" + inkscape:label="#fill_unset"> + <g + id="g2496" + transform="matrix(0.959998,0,0,0.96,344.8925,1.216355)"> + <rect + style="fill:none;stroke-width:0.0520834" + id="rect2499" + width="25" + height="24.99999" + x="596.87488" + y="15.62504" /> + </g> + <path + id="text2490" + d="m 930.6839,16.18176 c 1.9766,2e-5 3.7292,0.45218 5.2575,1.35647 1.7322,1.03622 2.5983,2.43037 2.5983,4.18246 0,1.46953 -0.5299,2.62818 -1.5895,3.47597 l -2.9039,2.22799 c -0.9578,0.58404 -0.9578,1.21518 -0.9578,2.27021 l -6.3682,0 c -0.3493,-2.58372 0.805,-3.29698 1.7016,-4.1071 0.2445,-0.22607 1.2746,-0.97345 2.4759,-1.9454 0.7489,-0.60583 1.345,-0.94198 1.345,-1.63907 0,-0.48982 -0.214,-0.88546 -0.6419,-1.18691 -0.4076,-0.30143 -0.8967,-0.45214 -1.4672,-0.45216 -0.6318,2e-5 -1.7183,0.22608 -1.7488,2.11948 l 0.0305,0.93258 -6.2968,0 c 0,-1.13038 0.2445,-2.61873 0.7336,-3.4477 0.4687,-0.84778 1.1717,-1.5637 2.1091,-2.14776 1.5488,-0.97965 3.1753,-1.63904 5.7226,-1.63906 m -3.8773,15.71245 6.2358,0 0,5.88748 -6.2358,0 0,-5.88748" + style="font-size:24px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Hegel-Black" + sodipodi:nodetypes="ccsccccsssssccccscccccc" /> + </g> + <g + id="align-horizontal-baseline" + transform="matrix(-1,0,0,0.997921,1118.2063,-16.516926)" + inkscape:label="#al_baselines_vert"> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5262" + y="0" + x="0" + style="display:inline" + transform="matrix(-1,0,0,1.000085,-38.76176,-94.35424)" /> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect2758" + width="24.049999" + height="24" + x="80.685799" + y="-28.802999" + transform="matrix(0,1,1,0,0,0)" /> + <path + id="text3357" + d="m -11.9668,90.11223 c -0.7787,-0.67701 -2.1025,-0.43431 -2.6929,0.34854 -0.9754,1.18561 -1.2575,2.70228 -1.6164,4.12145 -0.2662,1.21031 -0.4334,2.4394 -0.501,3.67318 -0.7883,-1.56023 -1.6965,-3.23606 -1.713,-4.99301 -0.0218,-0.88805 0.5124,-1.6408 0.8692,-2.42613 0.2947,-0.65823 -0.5167,-1.34316 -1.2125,-1.13198 -0.8522,0.16578 -0.9942,1.10615 -0.9696,1.78045 0.0896,2.00548 0.9121,3.97467 1.7444,5.80752 1.1795,2.42043 2.8678,4.66505 5.076,6.36815 0.8684,0.6241 3.0647,1.3479 4.1492,0.972 2,-0.9952 2,-2.9856 0,-2.9856 -0.7186,-0.3241 -2.5391,1.2439 -3.2752,1.2192 -1.2149,-0.009 -2.081,-1.0514 -2.4089,-2.0443 -0.3332,-1.31356 -0.0214,-2.6707 0.1844,-3.98039 0.3353,-1.70254 0.7126,-3.43957 1.5965,-4.97978 0.1808,-0.59819 1.5972,-0.95372 0.7698,-1.7493 z" + style="font-size:19.23077393px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Baskerville-Nova" + sodipodi:nodetypes="cccccsccccccccccc" /> + <path + transform="scale(-1.036041,0.965213)" + style="font-size:14.62716293px;font-style:normal;font-weight:normal;fill:url(#linearGradient5555);fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" + d="m 15.59046,88.20062 c -0.53328,0 -0.93563,0.09047 -1.20702,0.2714 -0.26665,0.18094 -0.39997,0.44758 -0.39997,0.79992 0,0.32378 0.10713,0.57852 0.3214,0.76421 0.21903,0.18094 0.52138,0.27141 0.90706,0.27141 0.4809,0 0.88562,-0.17141 1.21417,-0.51424 0.32853,-0.34758 0.4928,-0.78087 0.49281,-1.29987 l 0,-0.29283 -1.32844,0 m 3.90676,-0.96419 0,4.56384 -2.57832,0 0,-1.1856 c -0.34283,0.48567 -0.72851,0.8404 -1.15703,1.06418 -0.42854,0.21903 -0.94992,0.32854 -1.56414,0.32854 -0.82849,0 -1.50224,-0.24045 -2.02123,-0.72136 -0.51424,-0.48566 -0.77136,-1.11417 -0.77136,-1.88553 0,-0.938 0.3214,-1.62603 0.96419,-2.06409 0.64756,-0.43804 1.66175,-0.65707 3.04257,-0.65708 l 1.507,0 0,-0.19998 c -10e-6,-0.40471 -0.15952,-0.69992 -0.47853,-0.88563 -0.31902,-0.19045 -0.81659,-0.28568 -1.49271,-0.28568 -0.54757,0 -1.05705,0.05476 -1.52843,0.16427 -0.47138,0.10952 -0.90943,0.27379 -1.31416,0.49281 l 0,-1.94981 c 0.54757,-0.13332 1.09752,-0.23331 1.64985,-0.29998 0.55232,-0.07141 1.10465,-0.10712 1.65698,-0.10713 1.44271,1e-5 2.48309,0.2857 3.12113,0.85706 0.64278,0.56662 0.96418,1.49034 0.96419,2.77116" + id="text5563" /> + </g> + <g + transform="matrix(-1,0,0,1,1113.1812,14.063474)" + id="align-vertical-baseline" + inkscape:label="#al_baselines_hor"> + <use + xlink:href="#use5843" + height="1250" + width="1250" + id="use5850" + y="0" + x="0" + transform="matrix(-1,0,0,1,1079.687,-98.5528)" /> + <rect + transform="matrix(0,1,1,0,0,0)" + y="-33.803001" + x="79.963608" + height="24" + width="24" + id="rect2784" + style="font-size:12px;fill:none;stroke:none" /> + <use + xlink:href="#text5563" + height="1250" + width="1250" + id="use5253" + y="0" + x="0" + transform="matrix(1,0,0,0.997921,-12.75291,5.405751)" /> + <use + xlink:href="#text3357" + height="1250" + width="1250" + id="use5256" + y="0" + x="0" + transform="matrix(1,0,0,0.997921,-2.522537,-4.58035)" /> + </g> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1105,339 c 10.3967,0 12.8854,-20 6.4206,-20 -6.5472,0 -16.8424,16.0032 -6.3839,16.0032 10.3264,0 0.09,-16.0032 -6.432,-16.0032 -6.5223,0 -4.1844,20 6.3953,20 z" + id="fill-rule-even-odd" + sodipodi:nodetypes="ccccs" + inkscape:label="#fillrule_evenodd" /> + <path + sodipodi:nodetypes="ccccs" + id="fill-rule-nonzero" + d="m 1135,339 c 10.3966,0 12.8854,-20 6.4205,-20 -6.5472,0 -16.8424,16.0031 -6.3839,16.0031 10.3264,0 0.09,-16.0031 -6.4319,-16.0031 -6.5223,0 -4.1844,20 6.3953,20 z" + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none" + inkscape:label="#fillrule_nonzero" /> + <g + id="draw-rectangle" + inkscape:label="#draw_rect"> + <rect + y="115" + x="450" + height="24" + width="24" + id="rect4167" + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> + <rect + y="117.5082" + x="452.5083" + height="18.991779" + width="18.991671" + id="draw_rect1" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="118.5" + x="453.5" + height="17" + width="17" + id="rect5872" + style="color:#000000;fill:url(#linearGradient9254);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient9256);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="draw-spiral" + inkscape:label="#draw_arc" + transform="translate(365,55.03909)"> + <path + id="path225" + d="m 96.15762,162.8596 c 0.9734,-0.2466 1.42103,1.1976 1.25344,2.0538 -0.35048,1.7905 -2.20576,2.4131 -3.56363,1.8242 -2.11688,-0.9182 -2.80091,-3.9049 -1.91734,-6.147 1.2163,-3.0864 4.58912,-4.0434 7.12105,-2.5881 3.25106,1.8687 4.23186,6.6593 2.58126,10.2402 -2.02684,4.3972 -6.98766,5.6979 -10.67849,3.352 -4.39336,-2.7925 -5.67379,-9.4221 -3.24514,-14.3335 2.82541,-5.7137 9.39039,-7.3599 14.23593,-4.1158 5.5388,3.7082 7.1199,12.1879 3.909,18.4267 -0.0105,0.0204 -0.0211,0.0409 -0.0317,0.0612" + style="font-size:12px;fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <rect + y="150" + x="85" + height="24" + width="24" + id="rect4211" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + </g> + <g + id="zoom" + transform="translate(280,-64.96091)" + inkscape:label="#draw_zoom"> + <path + transform="matrix(1.087654,0,0,1.087684,-16.16957,-14.33312)" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="159" + sodipodi:cx="179" + id="path4199" + style="color:#000000;fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:#c8c8c8;stroke-width:0.87048578;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <rect + y="150" + x="170" + height="24" + width="24" + id="rect4242" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="159" + sodipodi:cx="179" + id="path4272" + style="color:#000000;fill:url(#linearGradient5536);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.93012607;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <path + style="fill:url(#linearGradient5524);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 172,160 c 5,-1 4,-6 9,-7 -2,-2 -5.5,-1.1667 -7,0 -1.5,1.1667 -3,5 -2,7 z" + id="path5507" + sodipodi:nodetypes="cczc" /> + <g + transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" + id="g4696"> + <path + style="fill:url(#linearGradient4723);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 85.625,124.8009 c 1.66667,-1 3.33333,-1 5,0 l -0.37872,-8.8418 c -1.34906,-0.6533 -2.61846,-0.4612 -4.16666,0 l -0.45462,8.8418 z" + id="path4701" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient5492);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4728);stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 90.62502,124.8009 -0.04238,-8.8198 c -0.84595,-1 -4.18514,-1.0458 -5.03108,-0.0458 l 0.07344,8.8656" + id="path4709" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient5476);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4726);stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 85.625,124.8009 0.91846,1.7806 c 1.03983,-0.2114 2.01992,-0.173 3,0 l 1.08154,-1.7806 c -0.84594,-1 -4.15406,-1 -5,0 z" + id="path4705" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cc" + id="path4711" + d="m 86.62925,116.947 -0.0042,6.2357" + style="fill:none;stroke:#ffffff;stroke-width:0.96486819;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + </g> + <g + id="draw-text" + transform="translate(425,196.9756)" + inkscape:label="#draw_text"> + <path + sodipodi:nodetypes="ccccccccccccc" + id="path604" + d="m 41.91177,127.0244 0,3 2,0 0,18 -2,0 0,3 7,0 0,-3 -2,0 0,-18 2,0 0,-3 -7,0 z" + style="fill:#ffffff;fill-rule:evenodd;stroke:none" /> + <path + id="path598" + d="m 45.41177,129.5 0,19.0369" + style="fill:none;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + id="path599" + d="m 46.38747,128.5244 1.30813,-0.0111" + style="fill:none;stroke:#000000;stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path600" + d="m 46.39879,149.5244 1.12625,0" + style="fill:none;stroke:#000000;stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + id="path601" + d="m 44.5,149.5244 -1.17647,0" + style="fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + id="path602" + d="m 44.46788,128.5244 -1.15635,0" + style="fill:none;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <rect + y="127" + x="25" + height="24" + width="24" + id="rect5171" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + id="g3805"> + <path + style="font-size:24px;fill:url(#linearGradient5857);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 33,129.5 5,0 6.5,18 -4,0 -1,-2.5 -8,0 -1,2.5 -4,0 6.5,-18 z m 5.5,12 -3,-8.5 -3,8.5 6,0 z" + id="text2410" + sodipodi:nodetypes="ccccccccccccc" /> + <path + sodipodi:nodetypes="cc" + id="path5817" + d="M 33.5,130.5 28,146" + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cc" + id="path5828" + d="m 38,142.5244 -5.5,0" + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient5859);stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="color-gradient" + transform="translate(470,295)" + inkscape:label="#draw_gradient"> + <rect + y="90" + x="-20" + height="24" + width="24" + id="rect2808" + style="color:#000000;fill:none;stroke:none;stroke-width:0.4532662;marker:none;display:inline" /> + <rect + style="color:#000000;fill:url(#linearGradient4246);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.45326599;marker:none;display:inline" + id="rect4244" + width="22.1569" + height="22.1569" + x="-3.0785899" + y="-113.076" + transform="scale(-1,-1)" /> + <rect + y="92.123901" + x="-17.875999" + height="19.7519" + width="19.7519" + id="rect3548" + style="color:#000000;fill:url(#linearGradient10520);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.45326599;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cc" + id="path3570" + d="M -15.3527,96.3045 -0.647354,107.695" + style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <rect + y="94.8769" + x="-16.184" + height="4.0178599" + width="4.0099001" + id="rect3568" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#rect3568" + height="1250" + width="1250" + transform="matrix(1,0,0,0.99644,12.2265,10.564)" + id="use4906" + y="0" + x="0" /> + </g> + <g + id="color-picker" + transform="translate(439,260)" + inkscape:label="#draw_dropper"> + <path + style="fill:url(#linearGradient3628);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5670);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="M 28.8634,163 21,171 l -3,2 -1,-1 2,-3 7.8634,-8 2,2 z" + id="path3620" + sodipodi:nodetypes="ccccccc" /> + <rect + y="155" + x="11" + height="24" + width="24" + id="rect3581" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:url(#linearGradient4369);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4360);stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 17.15103,173.5 c 0,0 -2.15103,1.6058 -2.15103,3.5529 0,1.9471 3,1.9471 3,0 0,-1.9471 -0.84897,-3.5529 -0.84897,-3.5529 z" + id="path4352" + sodipodi:nodetypes="czzc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.60000002;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 20,169 7,-7" + id="path4372" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="ccccsccc" + id="path3583" + d="m 25,160 5,5 1,-1 -1.5,-1.5 c 3.5,-0.5 6.3634,-4.2596 4.3634,-6.2596 -2,-2 -5.8634,0.7596 -6.3634,4.2596 L 26,159 l -1,1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:url(#linearGradient4349);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 28,160 c -0.40639,-0.2032 0.15657,-1.7676 1.5,-3 1.83949,-1.6846 3.33144,-1.1712 3.3634,-0.7596 C 33,158 30,161 28,160 z" + id="path4341" + sodipodi:nodetypes="csss" /> + </g> + <g + id="node-join" + transform="translate(586.95749,-119.97066)" + inkscape:label="#node_join"> + <use + xlink:href="#path4385" + height="1250" + width="1250" + transform="translate(12,0)" + id="use5652" + y="0" + x="0" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect3630" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#646464;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.4762,177.4465 2,0" + id="path4385" + sodipodi:nodetypes="cc" /> + <rect + y="175.5" + x="-43.51186" + height="3.9896359" + width="3.0356951" + id="rect3632" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.47804,188.5 c 13.97545,0 13.97545,0 13.97545,0" + id="path4389" /> + <rect + y="186.5" + x="-39.457489" + height="3.970665" + width="3.9574931" + id="rect4374" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path4376" + d="m -38,180 1,0 -4e-6,2 L -35,182 -37.500004,185 -40,182 l 1.999996,0 4e-6,-2 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#rect3632" + height="1250" + width="1250" + transform="translate(9.035664,-0.0534999)" + id="use16129" + y="0" + x="0" /> + </g> + <g + id="node-join-segment" + transform="translate(608.95848,-119.91717)" + style="display:inline" + inkscape:label="#node_join_segment"> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5657" + y="0" + x="0" + transform="translate(12,0)" /> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5654" + y="0" + x="0" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4393" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#path4389" + height="1250" + width="1250" + id="use5727" + y="0" + x="0" + transform="translate(0.0018391,-0.0534999)" /> + <rect + y="186.4465" + x="-43.458481" + height="3.970665" + width="2.982275" + id="rect4411" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#rect3632" + height="1250" + width="1250" + id="use17004" + y="0" + x="0" + transform="translate(0.0356638,-0.0534999)" /> + <use + xlink:href="#rect3632" + height="1250" + width="1250" + id="use17007" + y="0" + x="0" + transform="translate(9.035664,-0.0431358)" /> + <use + xlink:href="#rect4411" + style="fill:#e30000;fill-opacity:1" + height="1250" + width="1250" + transform="translate(9.000001,0.0293315)" + id="use17887" + y="0" + x="0" /> + <use + xlink:href="#path4376" + height="1250" + width="1250" + id="use5749" + y="0" + x="0" + transform="translate(0.0238,-0.0535)" /> + </g> + <g + id="node-delete-segment" + transform="translate(629.95848,-119.9465)" + style="display:inline" + inkscape:label="#node_delete_segment"> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5662" + y="0" + x="0" + transform="translate(12,11)" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4415" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#path4389" + height="1250" + width="1250" + id="use5730" + y="0" + x="0" + transform="translate(0.0018391,-11.0535)" /> + <use + xlink:href="#rect3632" + height="1250" + width="1250" + id="use17882" + y="0" + x="0" + transform="translate(0.0356638,-0.0431358)" /> + <use + xlink:href="#rect3632" + height="1250" + width="1250" + id="use17885" + y="0" + x="0" + transform="translate(8.999968,-0.0534999)" /> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5660" + y="0" + x="0" + transform="translate(0,11)" /> + <use + xlink:href="#use17887" + height="1250" + width="1250" + id="use17891" + y="0" + x="0" + style="display:inline" + transform="translate(-9.000001,2.498039e-6)" /> + <use + xlink:href="#use17887" + height="1250" + width="1250" + id="use17894" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0177254,2.498039e-6)" /> + <use + xlink:href="#path4376" + height="1250" + width="1250" + id="use5752" + y="0" + x="0" + transform="translate(0.0238,0.9465)" /> + </g> + <g + id="tool-pointer" + transform="translate(560,-109.961)" + inkscape:label="#draw_select"> + <rect + y="135" + x="-110" + height="24" + width="24" + id="rect10522" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="csssssss" + id="path730" + d="m -104.4426,154.8912 c 0,0 -0.0575,-18.2662 -0.0575,-18.2662 0,0 12.04014,12.8752 12.04014,12.8752 0,0 -5.20198,-0.1182 -5.20198,-0.1182 0,0 3.4254,5.6771 3.4254,5.6771 0,0 -4.47307,2.1183 -4.47307,2.1183 0,0 -2.00879,-6.4587 -2.00879,-6.4587 0,0 -3.7242,4.1725 -3.7242,4.1725 z" + style="font-size:12px;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" /> + </g> + <g + id="tool-node-editor" + transform="translate(560,-124.961)" + inkscape:label="#draw_node"> + <rect + y="180" + x="-110" + height="24" + width="24" + id="rect10524" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="csc" + id="path10536" + d="m -107.5,202 c -0.5,-8 0.6365,-12.357 3.9649,-15.4022 C -100.5976,183.9103 -96,182 -88,182.5" + style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <rect + style="color:#000000;fill:#0000ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10534" + width="6.1177049" + height="5.9961362" + x="-106.5" + y="183.50391" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10541" + width="3.9980321" + height="3.9996819" + x="-109.5" + y="199.5" /> + <path + sodipodi:nodetypes="cccc" + id="path10543" + d="m -103,187 9,16 6,-6 -15,-10 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <use + xlink:href="#rect10541" + height="1250" + width="1250" + transform="translate(19.00197,-19.03868)" + id="use5791" + y="0" + x="0" /> + </g> + <g + id="node-break" + transform="translate(650.98228,-119.91717)" + inkscape:label="#node_break"> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5666" + y="0" + x="0" + transform="translate(11.9762,11)" /> + <use + xlink:href="#path4385" + height="1250" + width="1250" + id="use5664" + y="0" + x="0" + transform="translate(-0.0238,11)" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10555" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#path4389" + height="1250" + width="1250" + id="use5732" + y="0" + x="0" + transform="translate(0.0025879,-11.0535)" /> + <use + xlink:href="#rect4411" + height="1250" + width="1250" + id="use5737" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0237986,-2.327919e-6)" /> + <use + xlink:href="#use5737" + height="1250" + width="1250" + transform="translate(9,0)" + id="use5740" + y="0" + x="0" /> + <use + xlink:href="#path4376" + height="1250" + width="1250" + id="use5754" + y="0" + x="0" + transform="translate(0,0.9465)" /> + <use + xlink:href="#use5791" + height="1250" + width="1250" + id="use5793" + y="0" + x="0" + transform="translate(51,-5.014501)" /> + </g> + <g + id="node-add" + transform="translate(545,-120.01641)" + inkscape:label="#node_insert"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10573" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.41109,187.5 c 14.91109,0 14.91109,0 14.91109,0" + id="path10583" /> + <rect + y="184.5076" + x="-39.506001" + height="5.9682379" + width="5.0068879" + id="rect10585" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path10587" + d="m -38,175 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + transform="matrix(1,0,0,-1,566,421.98359)" + id="node_insert_max_y"> + <rect + width="16" + height="16" + x="-45" + y="175" + id="rect6085" + style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + d="m -44.5,175.48359 c 0,0 2,3.49999 7.5,3.5 5.5,1e-5 7.5,-3.5 7.5,-3.5" + id="path6087" + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="5.0060005" + height="4.9759912" + x="-39.506001" + y="176.5076" + id="rect6089" + style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" + id="path6091" + style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + transform="translate(547,56)" + id="node_insert_min_y"> + <rect + width="16" + height="16" + x="-45" + y="175" + id="rect6115" + style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + d="m -44.5,175.48359 c 0,0 2,3.5164 7.5,3.51641 5.5,1e-5 7.5,-3.51641 7.5,-3.51641" + id="path6117" + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="5.0060005" + height="4.9759912" + x="-39.506001" + y="176.5" + id="rect6119" + style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" + id="path6121" + style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + transform="matrix(0,-1,-1,0,730.99179,201.9918)" + id="node_insert_min_x"> + <rect + width="16" + height="16" + x="-45" + y="175" + id="rect6125" + style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + d="m -44.5,175.48359 c 0,0 1.9918,3.50819 7.4918,3.5082 5.5,1e-5 7.5082,-3.5082 7.5082,-3.5082" + id="path6128" + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="5.0060005" + height="4.9759912" + x="-39.514202" + y="176.51579" + id="rect6130" + style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" + id="path6132" + style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + transform="matrix(0,1,1,0,384.00821,275.9918)" + id="node_insert_max_x"> + <rect + width="16" + height="16" + x="-45" + y="175" + id="rect6137" + style="color:black;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + d="m -44.5,175.48359 c 0,0 2.0082,3.50819 7.5082,3.5082 5.5,1e-5 7.4918,-3.5082 7.4918,-3.5082" + id="path6139" + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="5.0060005" + height="4.9759912" + x="-39.491798" + y="176.51579" + id="rect6141" + style="color:black;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:blue;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + d="m -38,183 2,0 0,3 3,0 0,2 -3,0 0,3 -2,0 0,-3 -3,0 0,-2 3,0 0,-3 z" + id="path6143" + style="fill:black;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + id="node-delete" + transform="translate(566.006,-119.97584)" + inkscape:label="#node_delete"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10591" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#path10583" + height="1250" + width="1250" + transform="translate(-0.0651068,-0.0534998)" + id="use15253" + y="0" + x="0" /> + <rect + y="184.5076" + x="-39.506001" + height="5.9682379" + width="5.0068879" + id="rect10595" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#8686e5;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path10597" + d="m -33,178 0,2 -8,0 0,-2 8,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="zoom-in" + transform="matrix(1,0,0,0.997925,495,-162.4833)" + inkscape:label="#zoom_in"> + <g + id="g5796"> + <path + sodipodi:type="arc" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.94033492;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.26512966;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path4220" + sodipodi:cx="179" + sodipodi:cy="159" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(1.00786,0,0,1.007983,-167.1731,96.0569)" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect10601" + width="16" + height="16" + x="5.0272999" + y="248.02901" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 18.03125,259 16,261.0312 l 3,3 2.03125,-2.0312 -3,-3 z" + id="path10605" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#radialGradient5855);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99317169;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path10607" + sodipodi:cx="179" + sodipodi:cy="159" + sodipodi:rx="7" + sodipodi:ry="7" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + transform="matrix(1.00786,0,0,1.007983,-167.8785,95.25998)" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccc" + id="path10609" + d="m 11,251.0208 2,0 0.0273,3 3,0.029 -0.0273,1.9938 -3,-0.0291 0.0273,3.0063 -2,0 -0.0273,-3.0063 -3.0273,0 0.0273,-1.9937 3.0273,0 -0.0273,-3 z" + style="fill:url(#linearGradient4088);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + id="zoom-out" + transform="translate(515.0312,-162.961)" + inkscape:label="#zoom_out"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5803" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.06245,0.476586)" /> + <path + sodipodi:nodetypes="ccccc" + id="path10652" + d="m 16.03125,253.971 -0.0039,2.029 -7.99605,0 0.00395,-2.029 7.99605,0 z" + style="color:#000000;fill:url(#linearGradient3208);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> + </g> + <g + id="zoom-half-size" + inkscape:label="#g6895"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5818" + y="0" + x="0" + transform="matrix(0.996399,0,0,0.997925,95.044487,-202.45778)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 108.53664,50.5646 c 0.4982,-1.5 2.98919,-1.5 2.98919,0.5 0,2 -2.98919,2.5 -2.98919,4.5 l 2.98919,0" + id="path10692" + sodipodi:nodetypes="cccc" /> + <path + d="m 103,49.5 1.5,0 0,6.5 m 1.5,-3.5 1,0 m -1,3 1,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3806" + sodipodi:nodetypes="ccccccc" /> + </g> + <g + id="zoom-fit-width" + transform="matrix(0.996399,0,0,0.998403,95.11635,-102.5393)" + inkscape:label="#zoom_pagewidth"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5834" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> + <path + transform="translate(-49.99998,18)" + style="color:#000000;fill:url(#linearGradient4013);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4072);stroke-width:1.00260663;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 57.5,236.5 10,0 0.03137,6.0314 C 65.02942,245.251 59.78235,245.1882 57.5,242.4373 l 0,-5.9373 z" + id="rect3056" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="zoom-fit-page" + transform="matrix(0.996399,0,0,1,95.11635,-122.961)" + inkscape:label="#zoom_page"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5826" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> + <path + transform="translate(-49.99998,18)" + style="color:#000000;fill:url(#linearGradient4005);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4080);stroke-width:1.00180554;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 59.5,233.5312 6,0 0,8 -6,0 0,-8 z" + id="path3805" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="zoom-fit-selection" + transform="matrix(0.996399,0,0,0.998404,95.11635,-162.5398)" + inkscape:label="#zoom_select"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5822" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.07212,0.477615)" /> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3901" + width="9" + height="7" + x="18" + y="232" + transform="translate(-9.99998,20)" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3873" + width="1" + height="1" + x="18" + y="232" + transform="translate(-9.99998,20)" /> + <rect + y="252" + x="10.00002" + height="1" + width="1" + id="rect3875" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3877" + width="1" + height="1" + x="12.00002" + y="252" /> + <rect + y="252" + x="14.00002" + height="1" + width="1" + id="rect3879" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3881" + width="1" + height="1" + x="16.000019" + y="252" /> + <rect + y="254" + x="16.000019" + height="1" + width="1" + id="rect3883" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3885" + width="1" + height="1" + x="16.000019" + y="256" /> + <rect + y="258" + x="16.000019" + height="1" + width="1" + id="rect3887" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3889" + width="1" + height="1" + x="14.00002" + y="258" /> + <rect + y="258" + x="12.00002" + height="1" + width="1" + id="rect3891" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3893" + width="1" + height="1" + x="10.00002" + y="258" /> + <rect + y="258" + x="8.00002" + height="1" + width="1" + id="rect3895" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect3897" + width="1" + height="1" + x="8.00002" + y="256" /> + <rect + y="254" + x="8.00002" + height="1" + width="1" + id="rect3899" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + </g> + <g + id="zoom-fit-drawing" + transform="matrix(0.996399,0,0,0.998403,95.11635,-142.5705)" + inkscape:label="#zoom_draw"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5824" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.07212,0.508815)" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 74,282 1,0 0,-2 2,0 0,-1 -3,0 0,3 z" + id="path4192" + sodipodi:nodetypes="ccccccc" + transform="translate(-64.99998,-27)" /> + <g + id="g5984"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5849);stroke-width:1.00260699;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4828" + width="5.0003939" + height="5.0406842" + x="8.4587202" + y="251.4922" /> + <rect + style="color:#000000;fill:url(#linearGradient5851);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5853);stroke-width:1.00260735;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4830" + width="3.008755" + height="3.010303" + x="9.4499798" + y="252.4818" /> + </g> + <use + xlink:href="#g5984" + height="1250" + width="1250" + transform="translate(3.000016,2.959313)" + id="use5989" + y="0" + x="0" /> + </g> + <g + id="zoom-previous" + transform="matrix(0.996399,0,0,0.998404,95.11635,-82.57091)" + inkscape:label="#zoom_previous"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5836" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.07212,0.508745)" /> + <g + id="g6036"> + <path + sodipodi:nodetypes="ccccccccc" + id="path3974" + d="m 9.53125,251.5312 0,0 0,4 5.92788,-4.0391 0,8 -5.92788,-3.9609 0,4 0,0 0,-8 z" + style="color:#000000;fill:#ffd400;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5847);stroke-width:1.00260592;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cc" + id="path4188" + d="m 11.33756,255.4455 3.2458,-2.2227" + style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="zoom-next" + transform="matrix(0.996399,0,0,0.998404,95.08516,-62.56986)" + inkscape:label="#zoom_next"> + <use + xlink:href="#g5796" + height="1250" + width="1250" + id="use5838" + y="0" + x="0" + transform="matrix(1,0,0,0.997925,-0.04082,0.507716)" /> + <g + id="g6043"> + <path + sodipodi:nodetypes="ccccccccc" + id="path3990" + d="m 15.50002,251.5 0,0 0,8 0,0 0,-4 -6,4 0,-8 6,4 0,-4 z" + style="color:#000000;fill:#ffd400;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5845);stroke-width:1.00260592;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cc" + id="path4191" + d="m 10.43978,257.6603 3.2458,-2.2228" + style="fill:none;stroke:#ffffff;stroke-width:1.0026058px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="node-type-cusp" + transform="translate(673.00979,-120.0032)" + inkscape:label="#node_cusp"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect3216" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.50979,175.5032 c 6.98772,0 6.97087,9.1359 6.97087,11.1359 4.51512,-2.5192 7.51512,-5.6391 8.03482,-11.1359" + id="path3226" + sodipodi:nodetypes="ccc" /> + <rect + y="103.5115" + x="-160.3997" + height="3.831147" + width="3.7918439" + id="rect3224" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510178;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + transform="matrix(0.7071088,-0.7071048,0.7071088,0.7071048,0,0)" /> + </g> + <g + id="node-type-smooth" + transform="translate(693.94349,-119.91716)" + inkscape:label="#node_smooth"> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.41296,176.5635 c -0.52712,3.4524 0.87103,8.8935 6.87103,8.8935 6,0 7.55886,-5.5701 7.08598,-9.0225" + id="path3254" + sodipodi:nodetypes="csc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect3252" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use5742" + y="0" + x="0" + transform="translate(0.0140001,-3.0535)" /> + </g> + <g + id="node-type-symmetric" + transform="translate(714.97991,-119.98321)" + inkscape:label="#node_symmetric"> + <path + id="path10667" + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.41296,176.5635 c -0.52712,3.4524 1.3869,9.5301 7.3869,9.5301 6,0 7.98876,-6.0777 7.51588,-9.5301 m -12.93758,9.634 10.89258,0" + sodipodi:nodetypes="csccc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10669" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="-39.479382" + x="-188.48309" + height="4.9501772" + width="4.9663939" + id="rect10671" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + transform="matrix(2.790265e-6,-1,1,-2.867107e-6,0,0)" /> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10673" + width="2.0676479" + height="2.0177431" + x="-44.54361" + y="185.22279" + ry="1.008872" + rx="1.008872" /> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10675" + width="2.022052" + height="2.0266621" + x="-31.531851" + y="185.1983" + ry="1.011026" + rx="1.011026" /> + </g> + <g + id="node-segment-curve" + transform="translate(757.93369,-119.91717)" + inkscape:label="#node_curve"> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -42.38772,188.4395 c 0,-7 3.97563,-10.8272 10.97563,-10.8272" + id="path10679" + sodipodi:nodetypes="cc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10681" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use5745" + y="0" + x="0" + transform="translate(-4.9762,-0.0534998)" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use5747" + y="0" + x="0" + transform="translate(5.981293,-11.02417)" /> + </g> + <g + id="node-segment-line" + transform="translate(778.9762,-119.9465)" + inkscape:label="#node_line"> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -42.5,188.5 11,-11" + id="path4418" + sodipodi:nodetypes="cc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4420" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use5756" + y="0" + x="0" + transform="translate(-5.018707,-0.0241656)" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use5758" + y="0" + x="0" + transform="translate(6.0238,-11.02417)" /> + </g> + <g + id="object-to-path" + transform="translate(280.041,-149.9465)" + inkscape:label="#object_tocurve"> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -37.0131,188.9855 c 2,4 9.20151,-0.6776 7.20151,-3.6776 -1.29515,-1.9427 -9.43,0.365 -12.7582,-1.8538 -3,-2 -2.55095,-8.4795 2.51639,-7.9119 4.63729,0.5239 1.42785,10.2184 3.0403,13.4433 z" + id="path4438" + sodipodi:nodetypes="cssss" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4440" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="-39.5126" + x="-178.495" + height="3.0235641" + width="3.009614" + id="rect4442" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.0000025;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + transform="matrix(2.812379e-6,-1,1,-2.844556e-6,0,0)" /> + <use + xlink:href="#rect4442" + height="1250" + width="1250" + transform="translate(-4.027901,6.951345)" + id="use6691" + y="0" + x="0" /> + <use + xlink:href="#rect4442" + height="1250" + width="1250" + transform="translate(6.948524,11.95135)" + id="use6693" + y="0" + x="0" /> + </g> + <g + id="stroke-to-path" + transform="translate(280.0489,-129.9566)" + inkscape:label="#stroke_tocurve"> + <path + id="path4464" + style="color:#000000;fill:#8ab3df;fill-opacity:0.58823529;fill-rule:evenodd;stroke:none;stroke-width:1.00000238;marker:none;display:inline" + d="m -39.52195,190.3973 -4.92126,-1.9492 c -0.53904,-7.6303 5.46096,-13.5111 12.96096,-13.0111 l 1.9603,4.9603 c -7,0 -10,3 -10,10 z" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -44.43436,188.5363 c -0.53903,-7.6302 5.46097,-13.5111 12.96097,-13.0111" + id="path4450" + sodipodi:nodetypes="cc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4452" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -39.5131,190.4855 c 0,-7 3,-10 10,-10" + id="path4458" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#use6693" + height="1250" + width="1250" + transform="translate(-7.0079,-11.98028)" + id="use6695" + y="0" + x="0" /> + <use + xlink:href="#use6693" + height="1250" + width="1250" + transform="translate(-11.98432,-6.989905)" + id="use6698" + y="0" + x="0" /> + <use + xlink:href="#use6693" + height="1250" + width="1250" + transform="translate(-8.0079,-2.989905)" + id="use6700" + y="0" + x="0" /> + <use + xlink:href="#use6693" + height="1250" + width="1250" + transform="translate(-3.0079,-7.98028)" + id="use6702" + y="0" + x="0" /> + </g> + <g + id="selection-bottom" + transform="translate(235.0423,10.04822)" + style="display:inline" + inkscape:label="#selection_bot"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect6698" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7653" + y="0" + x="0" + style="display:inline" + transform="translate(8.934884,-0.0391259)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7655" + y="0" + x="0" + style="display:inline" + transform="translate(8.9612,2.960874)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7657" + y="0" + x="0" + style="display:inline" + transform="translate(8.9612,5.960874)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7659" + y="0" + x="0" + style="display:inline" + transform="translate(8.934884,8.960874)" /> + <use + xlink:href="#rect8574" + height="1250" + width="1250" + id="use8586" + y="0" + x="0" + style="display:inline" + transform="translate(0,2.999993)" /> + <use + xlink:href="#path10449" + height="1250" + width="1250" + transform="matrix(1,0,0,-1,-10,364.9817)" + id="use4704" + y="0" + x="0" /> + </g> + <g + id="selection-top" + transform="translate(235.0423,-9.96096)" + style="display:inline" + inkscape:label="#selection_top"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10445" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + id="path10449" + d="m -31,189.9908 -1,0 -3e-6,-8 -1.999997,0 2.499997,-3 2.500003,3 -2.000003,0 3e-6,8 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7645" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0387999,3.97005)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7647" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0387999,6.97005)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7649" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0387999,9.97005)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7651" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0387999,12.97005)" /> + <use + xlink:href="#rect10479" + height="1250" + width="1250" + id="use8534" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0384184,-3.002595)" /> + </g> + <g + id="selection-raise" + transform="translate(235.0423,-49.96096)" + style="display:inline" + inkscape:label="#selection_up"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10473" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:url(#linearGradient5835);stroke-width:1.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -43.97588,175.9908 c 4.97368,0 4.97368,0 4.97368,0" + id="path10475" /> + <rect + y="178.46091" + x="-44.50185" + height="2.002599" + width="14.99927" + id="rect10479" + style="color:#000000;fill:url(#linearGradient5837);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5839);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:url(#linearGradient5842);stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;display:inline" + d="m -44.00221,185.9908 c 7.94048,0 7.94048,0 7.94048,0" + id="path10483" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + transform="translate(-0.0387999,6.97005)" + id="use7634" + y="0" + x="0" /> + <use + xlink:href="#use7634" + height="1250" + width="1250" + transform="translate(0,6)" + id="use7636" + y="0" + x="0" /> + <use + xlink:href="#path10505" + height="1250" + width="1250" + id="use5413" + y="0" + x="0" + style="display:inline" + transform="matrix(-1,0,0,-1,-74.00271,364.9954)" /> + </g> + <g + id="selection-lower" + transform="translate(235.0423,-29.95179)" + style="display:inline" + inkscape:label="#selection_down"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect10501" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + id="path10505" + d="m -42,177.9908 1,0 0,1 -1,0 -3e-6,1 2.000003,0 -2.500003,3 -2.499997,-3 1.999997,0 3e-6,-1 1,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccccc" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7638" + y="0" + x="0" + style="display:inline" + transform="translate(8.934884,-0.0391201)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7641" + y="0" + x="0" + style="display:inline" + transform="translate(8.9612,5.96088)" /> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7643" + y="0" + x="0" + style="display:inline" + transform="translate(8.934884,12.96088)" /> + <rect + y="184.4491" + x="-44.540272" + height="2.002599" + width="14.99927" + id="rect8574" + style="color:#000000;fill:url(#linearGradient5831);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5833);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#path10483" + height="1250" + width="1250" + id="use8589" + y="0" + x="0" + style="display:inline" + transform="translate(5.961212,-7.03912)" /> + </g> + <g + id="object-flip-vertical" + transform="translate(235.0013,89.99992)" + style="display:inline" + inkscape:label="#object_flip_ver"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4332" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -43.5,182.5 1,0" + id="path4335" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:url(#linearGradient7544);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6743);stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -43.49833,184.5 13.04827,0 0,5 -13.04827,-5 z" + id="rect4339" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:url(#linearGradient6727);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6745);stroke-width:0.89999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -43.49838,180.5 13.04676,0 0,-5 -13.04676,5 z" + id="path5098" + sodipodi:nodetypes="cccc" /> + <use + xlink:href="#path4335" + height="1250" + width="1250" + transform="translate(2.959,-0.0391199)" + id="use7626" + y="0" + x="0" /> + <use + xlink:href="#use7626" + height="1250" + width="1250" + transform="translate(3,0)" + id="use7628" + y="0" + x="0" /> + <use + xlink:href="#use7628" + height="1250" + width="1250" + transform="translate(3,0)" + id="use7630" + y="0" + x="0" /> + <use + xlink:href="#use7630" + height="1250" + width="1250" + transform="translate(3,0)" + id="use7632" + y="0" + x="0" /> + </g> + <g + id="object-flip-horizontal" + transform="translate(235.0423,70.03904)" + style="display:inline" + inkscape:label="#object_flip_hor"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect6649" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -37.49238,176.4968 0,1" + id="path6651" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:url(#linearGradient6665);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6667);stroke-width:0.89999992;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -39.45,176.45 0,13.0935 -5.08475,0 L -39.45,176.45 z" + id="path6653" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:url(#linearGradient6737);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6739);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -35.49238,176.4968 0,13 5,0 -5,-13 z" + id="path6655" + sodipodi:nodetypes="cccc" /> + <use + xlink:href="#path6651" + height="1250" + width="1250" + transform="translate(-0.0486211,2.96407)" + id="use7618" + y="0" + x="0" /> + <use + xlink:href="#use7618" + height="1250" + width="1250" + transform="translate(0,3)" + id="use7620" + y="0" + x="0" /> + <use + xlink:href="#use7620" + height="1250" + width="1250" + transform="translate(0,3)" + id="use7622" + y="0" + x="0" /> + <use + xlink:href="#use7622" + height="1250" + width="1250" + transform="translate(0,3)" + id="use7624" + y="0" + x="0" /> + </g> + <g + id="object-rotate-left" + transform="matrix(-1,0,0,1,161.0423,50.03904)" + style="display:inline" + inkscape:label="#object_rotate_90_CCW"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect7457" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -37.5,175.5 0,15 -6,0 6,-15 z" + id="path7459" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:url(#linearGradient6690);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6731);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -29.5,188.5 -15,0 0,-6 15,6 z" + id="path7461" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="cccccccc" + id="use7610" + d="m -36.03125,176.96875 0,1 3,0 1.0149,0.99215 1,0 -2.0149,-1.99217 -3,0 0,2e-5 z" + style="font-size:medium;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Bitstream Vera Sans;-inkscape-font-specification:Bitstream Vera Sans" /> + <use + xlink:href="#path7514" + height="1250" + width="1250" + id="use5439" + y="0" + x="0" + style="display:inline" + transform="translate(0.070634,3.868655e-4)" /> + </g> + <g + id="object-rotate-right" + transform="translate(235.0423,30.03905)" + style="display:inline" + inkscape:label="#object_rotate_90_CW"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect7508" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -37.5,175.5 0,15 -6,0 6,-15 z" + id="path7510" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:url(#linearGradient6672);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7548);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m -29.5,188.5 -15,0 0,-6 15,6 z" + id="path7512" + sodipodi:nodetypes="cccc" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 199,207 0,1 3,0 1.03125,1 0,3.03125 -2,0 2.5,3 2.5,-3 -2,0 0,-3.03125 -2.03125,-2 -3,0 z" + transform="translate(-235.0423,-30.03905)" + id="path7514" /> + </g> + <g + id="dialog-fill-and-stroke" + transform="translate(235,-150.0546)" + style="display:inline" + inkscape:label="#fill_and_stroke"> + <path + style="fill:none;stroke:url(#linearGradient10473);stroke-width:2;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 191,40 0,-14 14,0" + id="path10465" + sodipodi:nodetypes="ccc" + transform="translate(-235,150.0546)" /> + <path + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" + d="m -42.96863,177.0546 14,0 -14,14 0,-14 z" + id="rect10562" + sodipodi:nodetypes="cccc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect9766" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + id="g10509"> + <path + transform="translate(-235,150.0546)" + sodipodi:nodetypes="ccc" + id="path10491" + d="m 191.5,40.5 c 5.5,0 8.5,-0.5 9,-3.5 l 5,-3" + style="opacity:0.3;fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + id="path10571" + d="m -33.36912,180.455 3,3 1.40049,-0.4004 0,-7" + style="fill:url(#linearGradient10579);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="cccc" + id="path10544" + d="m -44.46863,190.5546 c 3.46126,-2.1071 3.46863,-5.5546 7.23386,-6.1545 0.5,0.5 1.65555,1.8323 2.25703,2.0537 -0.22141,2.7786 -4.02226,4.1893 -9.49089,4.1008 z" + style="fill:url(#radialGradient10597);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10481);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + id="path10558" + d="m -37.0151,184.4115 3.84491,-4.0888 c 1.06653,0.6673 2.1996,2 2.73385,3.2661 l -4.80016,2.9112 -1.7786,-2.0885 z" + style="color:#000000;fill:url(#linearGradient10560);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10489);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cccc" + id="path10568" + d="m -29.65866,176.2759 c -1.39145,1.238 -2.56289,2.6544 -3.64461,4.1133 1.4214,0.8669 2.1109,2 2.73386,3.2661 0.76999,-0.289 0.56511,-0.1789 1.06941,-0.4679" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + </g> + </g> + <g + id="dialog-text-and-font" + transform="translate(140.041,-179.961)" + inkscape:label="#object_font"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + d="m 144,220 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path10616" /> + <path + inkscape:label="#object_font" + id="asda" + d="m 146,220 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + style="fill:url(#linearGradient10641);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + transform="translate(-163.3209,-147.1542)" + id="object-ungroup" + inkscape:label="#selection_ungroup"> + <g + id="g6068"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5825);stroke-width:1.00000048;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect9496" + width="8.9967346" + height="6.9991608" + x="355.82739" + y="258.65411" /> + <rect + style="color:#000000;fill:url(#linearGradient5827);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5829);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect9498" + width="6.994853" + height="4.9729452" + x="356.8273" + y="259.6532" /> + </g> + <use + xlink:href="#rect10765" + height="1250" + width="1250" + id="use8598" + y="0" + x="0" + transform="translate(4.959,-0.03898)" /> + <use + xlink:href="#rect10765" + height="1250" + width="1250" + id="use8601" + y="0" + x="0" + transform="translate(13.959,-0.0389847)" /> + <use + xlink:href="#rect10765" + height="1250" + width="1250" + id="use8603" + y="0" + x="0" + transform="translate(-0.0409897,3.96102)" /> + <use + xlink:href="#use8603" + height="1250" + width="1250" + transform="translate(13.99999,4.999995)" + id="use8605" + y="0" + x="0" /> + <use + xlink:href="#use8605" + height="1250" + width="1250" + transform="translate(-1.99999,5.000005)" + id="use8607" + y="0" + x="0" /> + <use + xlink:href="#use8607" + height="1250" + width="1250" + transform="translate(-12.00001,5.157472e-8)" + id="use8609" + y="0" + x="0" /> + <use + xlink:href="#use8598" + height="1250" + width="1250" + transform="translate(5.073548e-8,9)" + id="use9484" + y="0" + x="0" /> + <use + xlink:href="#g10421" + height="1250" + width="1250" + id="use10425" + y="0" + x="0" + transform="translate(-0.0348992,-0.0284392)" /> + </g> + <g + transform="translate(-163.3209,-167.1542)" + id="object-group" + inkscape:label="#selection_group"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient10394);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10382" + width="8.9968081" + height="7.0038061" + x="355.8222" + y="258.6503" /> + <rect + style="color:#000000;fill:url(#linearGradient10396);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10398);stroke-width:1.00000072;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10384" + width="6.9948139" + height="4.999979" + x="356.8222" + y="259.6496" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" + id="rect10765" + width="2.00001" + height="1.999995" + x="353.36319" + y="252.1931" /> + <use + xlink:href="#rect10765" + height="1250" + width="1250" + transform="translate(13.959,-0.03898)" + id="use8592" + y="0" + x="0" /> + <use + xlink:href="#use8592" + height="1250" + width="1250" + transform="translate(-14,14)" + id="use8594" + y="0" + x="0" /> + <use + xlink:href="#use8594" + height="1250" + width="1250" + transform="translate(14,-5.001575e-6)" + id="use8596" + y="0" + x="0" /> + <g + transform="matrix(1,0,0,1.008019,335.3152,51.42912)" + id="g10379" /> + <g + id="g10421"> + <path + sodipodi:type="arc" + style="color:#000000;fill:none;stroke:url(#linearGradient5819);stroke-width:1.37303555;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path10763" + sodipodi:cx="105.5" + sodipodi:cy="210.5" + sodipodi:rx="5.5" + sodipodi:ry="5.5" + d="m 111,210.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 3.03757,0 5.5,2.46243 5.5,5.5 z" + transform="matrix(0.727881,0,0,0.728748,287.069,104.2892)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient5821);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5823);stroke-width:1.82622421;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path10409" + sodipodi:cx="105.5" + sodipodi:cy="210.5" + sodipodi:rx="5.5" + sodipodi:ry="5.5" + d="m 111,210.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 3.03757,0 5.5,2.46243 5.5,5.5 z" + transform="matrix(0.547085,0,0,0.548073,306.1137,142.2991)" /> + </g> + </g> + <g + id="edit-duplicate" + transform="translate(50.0399,-119.9404)" + inkscape:label="#edit_duplicate"> + <g + id="g6144"> + <rect + y="205.4404" + x="5.4601002" + height="7.9962969" + width="8.9968081" + id="rect6120" + style="color:#000000;fill:none;stroke:url(#linearGradient6124);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="206.4404" + x="6.4601302" + height="5.9933238" + width="6.9948139" + id="rect6122" + style="color:#000000;fill:url(#linearGradient6126);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6128);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="208.4686" + x="8.4778118" + height="11.99031" + width="11.99355" + id="rect6134" + style="color:#000000;fill:none;stroke:url(#linearGradient6138);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="209.4688" + x="9.4778109" + height="9.9715872" + width="9.9823189" + id="rect6136" + style="color:#000000;fill:url(#linearGradient6140);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6142);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + </g> + <g + transform="translate(-298.3567,-147.1852)" + id="edit-clone" + inkscape:label="#edit_clone"> + <g + id="use6150" + transform="translate(348.3966,47.24474)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5807);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5607" + width="8.9968081" + height="7.9962969" + x="5.4601002" + y="205.4404" /> + <rect + style="color:#000000;fill:url(#linearGradient5809);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5811);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5609" + width="6.9948139" + height="5.9933238" + x="6.4601302" + y="206.4404" /> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5813);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5611" + width="11.99355" + height="11.99031" + x="8.4778118" + y="208.4686" /> + <rect + style="color:#000000;fill:url(#linearGradient5815);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5817);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5613" + width="9.9823189" + height="9.9715872" + x="9.4778109" + y="209.4688" /> + </g> + <rect + y="260.74731" + x="359.909" + height="4.0014329" + width="5.9790282" + id="rect10978" + style="color:#000000;fill:url(#linearGradient11815);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6573);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.5,131.5 c 0,1 0,1 0,1" + id="path6162" + transform="translate(298.368,127.2036)" /> + <use + xlink:href="#path6162" + height="1250" + width="1250" + transform="translate(4,0)" + id="use6164" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.5,130.5 2,0" + id="path6167" + transform="translate(298.368,127.2036)" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 360.8567,263.6852 0,-2 4,0" + id="path5069" /> + </g> + <g + transform="translate(-298.3836,-127.1851)" + id="edit-clone-unlink" + inkscape:label="#edit_unlink_clone"> + <use + xlink:href="#use6150" + height="1250" + width="1250" + id="use5649" + y="0" + x="0" + transform="translate(0.0269001,-4.867687e-6)" /> + <rect + y="260.7562" + x="359.93729" + height="4.0014329" + width="5.9790282" + id="rect6638" + style="color:#000000;fill:url(#linearGradient6662);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6664);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#path6167" + height="1250" + width="1250" + id="use6169" + y="0" + x="0" + transform="translate(0.0156,0)" /> + <use + xlink:href="#use6164" + height="1250" + width="1250" + id="use6172" + y="0" + x="0" + transform="translate(0.0156,0)" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 360.8836,263.6851 0,-2 4,0" + id="path6005" /> + </g> + <g + id="dialog-align-and-distribute" + transform="matrix(0.997443,0,0,0.995359,234.9271,130.8863)" + style="display:inline" + inkscape:label="#object_align"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect11819" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + id="g6628" + transform="matrix(1.249506,0,0,1.001998,-55.66558,-19.47412)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient6666);stroke-width:0.89694059;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6630" + width="7.9986801" + height="3.9950161" + x="10.5083" + y="205.55811" /> + <rect + style="color:#000000;fill:url(#linearGradient6668);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6670);stroke-width:0.89694053;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6632" + width="6.4003801" + height="1.965379" + x="11.30936" + y="206.5531" /> + </g> + <g + style="display:inline" + id="g6675" + transform="matrix(1.000856,0,0,1.001998,-53.05186,-30.53742)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5801);stroke-width:1.00218284;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6677" + width="5.4917002" + height="3.9950161" + x="10.5083" + y="205.55811" /> + <rect + style="color:#000000;fill:url(#linearGradient5803);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5805);stroke-width:1.00218272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6679" + width="3.4925649" + height="1.965379" + x="11.50743" + y="206.5582" /> + </g> + <g + style="display:inline" + id="g6690" + transform="matrix(1.249506,0,0,0.994331,-55.62604,-22.92368)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient6696);stroke-width:0.90039229;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6692" + width="10.39982" + height="3.0269899" + x="10.50829" + y="205.5446" /> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient6700);stroke-width:0.90039212;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6694" + width="8.7972002" + height="1.002073" + x="11.30861" + y="206.55811" /> + </g> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00361276px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m -44.541,175.4264 0,15.03" + id="path5730" /> + </g> + <g + id="dialog-xml-editor" + inkscape:label="#xml_editor"> + <g + transform="matrix(1,0,0,0.996869,-60.05772,-144.2098)" + id="g5620"> + <rect + y="338.80829" + x="115.5577" + height="11.99987" + width="14.99917" + id="rect5622" + style="color:#000000;fill:url(#linearGradient5684);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="335.7579" + x="115.5588" + height="3.011261" + width="14.99819" + id="rect5624" + style="color:#000000;fill:url(#linearGradient5686);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <path + id="path14887" + d="m 62,196 -4,3 4,3" + style="fill:none;stroke:url(#linearGradient5696);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccc" /> + <path + id="path14889" + d="m 64,196 4,3 -4,3" + style="fill:none;stroke:url(#linearGradient5692);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccc" /> + </g> + <g + id="document-import" + transform="translate(4.95909,-151.05)" + inkscape:label="#file_import"> + <g + id="g5577"> + <path + sodipodi:nodetypes="cccccc" + id="path4679" + d="m 9.54091,196.55 7,0 4,4 0,11 -11,0 0,-15 z" + style="color:#000000;fill:url(#linearGradient5795);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5797);stroke-width:1.00000107;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cccc" + id="path4681" + d="m 16.54091,196.55 4,4 -4,0 0,-4 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5799);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + id="path5602" + d="m 10.54091,210.55 9,0 0,-9" + style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <path + id="path4685" + d="m 5.04091,204.05 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + id="document-export" + inkscape:label="#file_export"> + <use + xlink:href="#g5577" + height="1250" + width="1250" + id="use5582" + y="0" + x="0" + transform="translate(0.959089,-131.05)" /> + <use + xlink:href="#path4685" + height="1250" + width="1250" + id="use5585" + y="0" + x="0" + transform="translate(10.95909,-131.05)" /> + </g> + <g + transform="translate(-54.95913,110.03912)" + id="path-outset" + inkscape:label="#outset_path"> + <path + style="color:#000000;fill:#99b6d4;fill-opacity:0.58999999;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" + d="m 290.5,170.5 0,-8 c 4,0 8,4 8,8 l -8,0 z" + id="path10754" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <path + style="fill:#99b7d4;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 290.5,155.5 0,7 c 4,0 8,4 8,8 l 7,0 c 0,-8 -7,-15 -15,-15 z" + id="path10752" + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path10741" + d="m 290.5,155.5 c 8,0 15,7 15,15" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path10743" + d="m 290.5,162.5 c 4,0 8,4 8,8" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0" + inkscape:connector-curvature="0" /> + <path + id="path10745" + d="m 299.5,161.5 -4,0 4,4 0,-4 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(-54.95913,130.039)" + id="path-inset" + inkscape:label="#inset_path"> + <use + xlink:href="#path10752" + height="1250" + width="1250" + id="use5684" + y="0" + x="0" + transform="translate(-0.04087,-0.039)" /> + <use + xlink:href="#path10754" + height="1250" + width="1250" + id="use5692" + y="0" + x="0" + transform="translate(-0.04087,-0.039)" /> + <path + sodipodi:nodetypes="cc" + id="path10769" + d="m 290.5,155.5 c 8,0 15,7 15,15" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;marker:none;display:inline" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path10771" + d="m 290.5,162.5 c 4,0 8,4 8,8" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + inkscape:connector-curvature="0" /> + <path + id="path10773" + d="m 297.5,163.5 4,0 -4,-4 0,4 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(-54.95913,150.039)" + id="path-offset-dynamic" + inkscape:label="#dynamic_offset"> + <path + style="fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 290.5,155.5 0,8 c 3,0 7,4 7,7 l 8,0 c 0,-8 -7,-15 -15,-15 z" + id="path10779" + sodipodi:nodetypes="ccccc" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path10783" + d="m 290.7799,163.2201 c 3,0 7,4 7,7" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cc" + id="path10787" + d="m 290.5,159.5 c 5,0 11,5 11,11" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + inkscape:connector-curvature="0" /> + <use + xlink:href="#rect4442" + height="1250" + width="1250" + id="use5699" + y="0" + x="0" + transform="translate(335.9487,-14.03415)" /> + <use + xlink:href="#path10769" + height="1250" + width="1250" + transform="translate(-0.04087,-0.039)" + id="use5710" + y="0" + x="0" /> + <use + xlink:href="#path10754" + height="1250" + width="1250" + id="use5695" + y="0" + x="0" + transform="translate(-0.04087,-0.039)" /> + </g> + <g + id="path-offset-linked" + inkscape:label="#linked_offset" + transform="translate(-109.959,175.039)"> + <use + xlink:href="#path10754" + height="1250" + width="1250" + id="use5697" + y="0" + x="0" + transform="translate(54.959,-5.039)" /> + <use + xlink:href="#path10752" + height="1250" + width="1250" + id="use5690" + y="0" + x="0" + transform="translate(54.959,-5.039)" /> + <use + xlink:href="#path10741" + height="1250" + width="1250" + id="use5714" + y="0" + x="0" + transform="translate(54.959,-5.039)" /> + <use + xlink:href="#rect4442" + height="1250" + width="1250" + id="use5702" + y="0" + x="0" + transform="translate(393.9721,-22.02453)" /> + <use + xlink:href="#path10771" + height="1250" + width="1250" + transform="translate(54.959,-5.039)" + id="use5717" + y="0" + x="0" /> + </g> + <g + id="path-reverse" + transform="translate(-149.459,215.539)" + inkscape:label="#selection_reverse"> + <path + style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 385,165 c 0,-5 2.5,-7.5 7.5,-7.5 4,0 7.5,-2.5 7.5,-7.5" + id="path10967" + sodipodi:nodetypes="csc" + inkscape:connector-curvature="0" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 386.5,151.5 7,0 0,-2 3,2.5 -3,2.5 0,-2 -7,0 0,-1 z" + id="path10971" + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" /> + <use + xlink:href="#rect4442" + height="1250" + width="1250" + id="use5704" + y="0" + x="0" + transform="translate(430.4721,-19.53415)" /> + <use + xlink:href="#path10971" + height="1250" + width="1250" + transform="matrix(-1,0,0,-1,784.959,314.961)" + id="use3760" + y="0" + x="0" /> + </g> + <g + id="path-break-apart" + transform="translate(-79.87527,35.9917)" + style="fill:#8ab3df;fill-opacity:0.58823529;stroke:#0000ff;stroke-opacity:1" + inkscape:label="#selection_break"> + <path + style="color:#000000;fill:#99b6d4;fill-opacity:0.7;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 235.5312,230.5312 0,9.9688 10.0938,0 0,-3.9688 c -0.1703,0.016 -0.3256,0.0313 -0.5,0.0313 -3.0445,0 -5.5313,-2.4773 -5.5313,-5.5313 0,-0.167 0.0168,-0.3367 0.0313,-0.5 l -4.0938,0 z" + transform="translate(79.87527,-15.9917)" + id="rect10834" + inkscape:connector-curvature="0" /> + <path + transform="matrix(1.103062,0,0,1.10649,-36.96118,-22.90202)" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + sodipodi:ry="5" + sodipodi:rx="5" + sodipodi:cy="215" + sodipodi:cx="328" + id="path5724" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + </g> + <g + id="path-combine" + transform="translate(-79.87527,16.041279)" + inkscape:label="#selection_combine"> + <path + id="rect10868" + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 315.4161,214.5498 10.0839,0 0,9.948 -10.0839,0 0,-9.948 z m 15.0839,0.4827 c 0,3.0539 -2.4709,5.5324 -5.5153,5.5324 -3.0445,0 -5.5153,-2.4785 -5.5153,-5.5324 0,-3.054 2.4708,-5.5325 5.5153,-5.5325 3.0444,0 5.5153,2.4785 5.5153,5.5325 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="path-union" + transform="translate(-79.87527,-103.961)" + style="fill:#8ea7c4;fill-opacity:1" + inkscape:label="#union"> + <path + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 225.0625,150.5 c -2.8791,0 -5.1577,2.2389 -5.4063,5.0625 l -4.1562,0 0,9.9375 10.0937,0 0,-4.0313 c 2.7853,-0.2784 5,-2.5707 5,-5.4375 0,-3.0539 -2.4867,-5.5312 -5.5312,-5.5312 z" + transform="translate(99.91614,59)" + id="rect10877" + inkscape:connector-curvature="0" /> + </g> + <g + id="path-difference" + transform="translate(-79.87527,-83.961)" + inkscape:label="#difference"> + <path + sodipodi:type="arc" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + id="path10888" + sodipodi:cx="229.5" + sodipodi:cy="155.5" + sodipodi:rx="5.5" + sodipodi:ry="5.5" + d="m 235,155.5 c 0,3.03757 -2.46243,5.5 -5.5,5.5 -3.03757,0 -5.5,-2.46243 -5.5,-5.5 0,-3.03757 2.46243,-5.5 5.5,-5.5 3.03757,0 5.5,2.46243 5.5,5.5 z" + transform="translate(95.41614,59.5)" /> + <path + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" + transform="translate(94.91614,59)" + id="rect10884" + inkscape:connector-curvature="0" /> + </g> + <g + id="draw-eraser-delete-objects" + transform="translate(167.14615,270.59555)" + inkscape:label="#delete_object"> + <rect + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect10920" + width="16" + height="16" + x="314" + y="210" /> + <path + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" + transform="translate(94.91614,59)" + id="path6882" /> + <use + xlink:href="#g5771" + height="12" + width="12" + id="use5777" + y="0" + x="0" + transform="translate(-652,41)" /> + </g> + <g + id="path-cut" + transform="translate(-79.87527,-3.96088)" + inkscape:label="#cut_path"> + <path + transform="translate(95.41614,59.5)" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" + id="path10897" + sodipodi:nodetypes="cscs" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:none;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 220.5,155.5625 0,9.9375 10.0937,0 0,-4.125 c -0.206,0.0234 -0.3814,0.125 -0.5937,0.125 -3.036,0 -5.5,-2.464 -5.5,-5.5 0,-0.1565 0.0809,-0.2843 0.0937,-0.4375 l -4.0937,0 z" + transform="translate(94.91614,59)" + id="path10899" + inkscape:connector-curvature="0" /> + </g> + <g + id="path-intersection" + transform="translate(-79.87523,-63.96088)" + inkscape:label="#intersection"> + <rect + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0.5;marker:none;display:inline" + id="rect6889" + width="10" + height="10" + x="315.41611" + y="214.5" /> + <path + transform="translate(95.4161,59.5)" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" + id="path10903" + sodipodi:nodetypes="cscs" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 204.5937,175.5 c -0.0165,0.1736 -0.0937,0.3221 -0.0937,0.5 0,3.036 2.464,5.5 5.5,5.5 0.1779,0 0.3264,-0.0772 0.5,-0.0938 l 0,-5.9062 -5.9063,0 z" + transform="translate(114.9161,39)" + id="rect10907" + inkscape:connector-curvature="0" /> + </g> + <g + id="path-division" + transform="translate(-79.87523,-23.96088)" + inkscape:label="#division"> + <path + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 235.5312,170.5312 0,9.9688 10.0938,0 -0.0938,-4.0625 c -0.1736,0.0165 -0.322,0.0937 -0.5,0.0937 -3.036,0 -5.4999,-2.4639 -5.5,-5.5 0,-0.1779 0.0773,-0.3263 0.0938,-0.5 l -4.0938,0 z" + transform="translate(79.87523,43.96088)" + id="rect10930" + sodipodi:nodetypes="ccccsscc" + inkscape:connector-curvature="0" /> + <path + transform="translate(95.4161,59.5)" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + d="m 224,155.5 c 0,-3.036 2.464,-5.5 5.5,-5.5 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5" + id="path10924" + sodipodi:nodetypes="cscs" + inkscape:connector-curvature="0" /> + <path + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 319.469,214.4609 c -0.0166,0.1736 -0.0938,0.322 -0.0938,0.5 0,3.036 2.464,5.5 5.5,5.5 0.178,0 0.3264,-0.0772 0.5,-0.0938 l 0,-5.9062 -5.9062,0 z" + id="path5727" + inkscape:connector-curvature="0" /> + </g> + <g + id="path-exclusion" + transform="translate(-79.87527,-43.95873)" + inkscape:label="#exclusion"> + <path + id="path10934" + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 315.4161,214.5498 10.0839,0 0,9.948 -10.0839,0 0,-9.948 z m 15.0839,0.4827 c 0,3.0539 -2.4709,5.5324 -5.5153,5.5324 -3.0445,0 -5.5153,-2.4785 -5.5153,-5.5324 0,-3.054 2.4708,-5.5325 5.5153,-5.5325 3.0444,0 5.5153,2.4785 5.5153,5.5325 z" + inkscape:connector-curvature="0" /> + </g> + <g + id="dialog-object-properties" + inkscape:label="#dialog_item_properties" + transform="translate(-139.9577,-49.99929)"> + <rect + y="120.5063" + x="330.4642" + height="8.9929667" + width="8.9967346" + id="rect10430" + style="color:#000000;fill:none;stroke:url(#linearGradient10434);stroke-width:1.0000006;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="121.5137" + x="331.46411" + height="6.985559" + width="6.994853" + id="rect10432" + style="color:#000000;fill:url(#linearGradient10436);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10438);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cccccccccccccsccccccccscc" + id="path11005" + d="m 343.459,125.4992 c 1.5,0 2,1 2,2 l 0,2.5 -1,0.5 -1,0 0,-2 -4,0 0,2 -1,0 -1,-0.5 0,-2.5 c 0,-1 0.5,-2 2,-2 l 0,-5 c -1.5,0 -2,-1 -2,-2 l 0,-2.5 1,-0.5 1,0 0,2 4,0 0,-2 1,0 1,0.5 0,2.5 c 0,0.5 -0.5,2 -2,2 l 0,5 z" + style="fill:url(#linearGradient11021);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10450);stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 340.459,120.4992 0,4" + id="path10442" + sodipodi:nodetypes="cc" /> + <path + style="fill:#646464;fill-opacity:0.75;fill-rule:evenodd;stroke:#646464;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 342.959,120.4992 -1,0" + id="path10455" /> + <use + xlink:href="#path10455" + style="stroke:#646464" + height="1250" + width="1250" + transform="translate(0,5)" + id="use10459" + y="0" + x="0" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 340.459,126.4992 c -2,0 -2,0 -2,3" + id="path10463" + sodipodi:nodetypes="cc" /> + </g> + <g + id="bitmap-trace" + style="stroke:#000000;stroke-width:0.69999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + inkscape:label="#selection_trace" + transform="translate(-70.10913,-49.13897)"> + <path + id="rect11025" + style="color:#000000;fill:none;stroke-linecap:round;stroke-linejoin:round;stroke-dashoffset:0;marker:none;display:inline" + d="m 308.4986,119.5635 -2.9986,-0.0367 0,9.9744 10,0 0,-2.7702 m -7.0652,-5.4166 -0.9348,0 0,6.2117 6.1875,0 0,-0.9401 m 4.752,-6.0824 c 0,2.1757 -1.7649,3.9416 -3.9395,3.9416 -2.1745,0 -3.9394,-1.7659 -3.9394,-3.9416 0,-2.1759 1.7649,-3.9417 3.9394,-3.9417 2.1746,0 3.9395,1.7658 3.9395,3.9417 z m 2.0324,-0.004 c 0,3.2964 -2.6754,5.9719 -5.9719,5.9719 -3.2965,0 -5.9719,-2.6755 -5.9719,-5.9719 0,-3.2965 2.6754,-5.9719 5.9719,-5.9719 3.2965,0 5.9719,2.6754 5.9719,5.9719 z" /> + </g> + <g + id="dialog-transform" + transform="matrix(0.997361,0,0,0.997566,-193.9405,170.3188)" + inkscape:label="#object_trans"> + <path + sodipodi:nodetypes="cscs" + id="path11132" + d="m 394.9,119.4 c 3.036,0 5.5,2.464 5.5,5.5 0,3.036 -2.464,5.5 -5.5,5.5 -3.036,0 -5.5,-2.464 -5.5,-5.5" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.20305181;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.2030517, 1.2030517;stroke-dashoffset:0.2406103;marker:none;display:inline" /> + <path + id="path11140" + d="m 394,119.50002 3,2.49998 0,-4.99996 -3,2.49998 z" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="cccc" /> + <g + transform="matrix(1,0,0,1.008019,374.9507,-91.76403)" + id="g7590"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient7596);stroke-width:0.99854738;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7592" + width="7.9986801" + height="7.9324479" + x="10.5083" + y="205.57651" /> + <rect + style="color:#000000;fill:url(#linearGradient7598);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7600);stroke-width:0.99854869;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7594" + width="6.00072" + height="5.9478478" + x="11.50669" + y="206.5649" /> + </g> + </g> + <g + id="show-grid" + inkscape:label="#grid" + transform="translate(-304.959,5.0682694)"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" + id="rect13175" + width="16" + height="16" + x="405" + y="220" /> + <rect + y="220" + x="405" + height="1" + width="1" + id="rect13046" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,-0.039128)" + id="use5896" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,-0.039128)" + id="use5898" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,-0.039128)" + id="use5900" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,-0.039128)" + id="use5902" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,-0.039128)" + id="use5904" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(-0.041,2.960872)" + id="use5906" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,2.960872)" + id="use5908" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,2.960872)" + id="use5910" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,2.960872)" + id="use5912" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,2.960872)" + id="use5914" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,2.960872)" + id="use5916" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(-0.041,5.960872)" + id="use5918" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,5.960872)" + id="use5920" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,5.960872)" + id="use5922" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,5.960872)" + id="use5924" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,5.960872)" + id="use5926" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,5.960872)" + id="use5928" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(-0.041,8.960872)" + id="use5930" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,8.960872)" + id="use5932" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,8.960872)" + id="use5934" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,8.960872)" + id="use5936" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,8.960872)" + id="use5938" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,8.960872)" + id="use5940" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(-0.041,11.96087)" + id="use5942" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,11.96087)" + id="use5944" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,11.96087)" + id="use5946" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,11.96087)" + id="use5948" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,11.96087)" + id="use5950" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,11.96087)" + id="use5952" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(-0.041,14.96087)" + id="use5954" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(2.959,14.96087)" + id="use5956" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(5.959,14.96087)" + id="use5958" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(8.959,14.96087)" + id="use5960" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(11.959,14.96087)" + id="use5962" + y="0" + x="0" /> + <use + xlink:href="#rect13046" + height="1250" + width="1250" + transform="translate(14.959,14.96087)" + id="use5964" + y="0" + x="0" /> + </g> + <g + id="show-guides" + transform="translate(-304.959,25.03912)" + inkscape:label="#guides"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" + id="rect13315" + width="16" + height="16" + x="405" + y="220" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 105.5,258.5 1,0" + id="path5974" + transform="translate(304.959,-25.03912)" /> + <use + xlink:href="#path5974" + height="1250" + width="1250" + transform="translate(3,0)" + id="use5976" + y="0" + x="0" /> + <use + xlink:href="#path5974" + transform="translate(6,0)" + height="1250" + width="1250" + id="use5978" + y="0" + x="0" /> + <use + xlink:href="#path5974" + height="1250" + width="1250" + transform="translate(9,0)" + id="use5980" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 407.459,230.4609 0,-1" + id="path5982" /> + <use + xlink:href="#path5982" + height="1250" + width="1250" + transform="translate(0,-3)" + id="use5984" + y="0" + x="0" /> + <use + xlink:href="#path5982" + height="1250" + width="1250" + transform="translate(0,-6)" + id="use5986" + y="0" + x="0" /> + <use + xlink:href="#path5982" + height="1250" + width="1250" + transform="translate(0,-9)" + id="use5988" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 405.459,233.4609 3,0" + id="path5990" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 407.459,235.4609 0,-3" + id="path5992" + sodipodi:nodetypes="cc" /> + </g> + <g + id="window-next" + transform="translate(-15.01687,-30.21803)" + inkscape:label="#window_next"> + <use + xlink:href="#g6011" + height="1250" + width="1250" + id="use6015" + y="0" + x="0" + transform="translate(-0.0408664,-0.0391171)" /> + <use + xlink:href="#g6043" + height="1250" + width="1250" + id="use6047" + y="0" + x="0" + transform="translate(113.0168,89.22898)" /> + </g> + <g + id="window-previous" + transform="matrix(1,0,0,0.996869,-15.05696,-49.20811)" + inkscape:label="#window_previous"> + <g + id="g6011"> + <rect + style="color:#000000;fill:url(#linearGradient5791);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect13417" + width="14.99917" + height="11.99987" + x="115.5577" + y="338.80829" /> + <rect + style="color:#000000;fill:url(#linearGradient5793);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect13419" + width="14.99819" + height="3.011261" + x="115.5588" + y="335.7579" /> + </g> + <use + xlink:href="#g6036" + height="1250" + width="1250" + transform="translate(108.0577,89.23782)" + id="use6040" + y="0" + x="0" /> + </g> + <g + id="window-new" + transform="translate(-10.00246,25.01596)" + inkscape:label="#view_new"> + <rect + y="303.45721" + x="112.4954" + height="10.03091" + width="13.00704" + id="rect13445" + style="color:#000000;fill:url(#linearGradient6026);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="300.48401" + x="112.4954" + height="2.976774" + width="13.00705" + id="rect13447" + style="color:#000000;fill:url(#linearGradient13477);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="309.32901" + x="110.5057" + height="6.1709552" + width="9.9836187" + id="rect13433" + style="color:#000000;fill:url(#linearGradient6034);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="306.48792" + x="110.5053" + height="2.977982" + width="9.9845524" + id="rect13435" + style="color:#000000;fill:url(#linearGradient13473);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="view-fullscreen" + transform="translate(10.040878,-34.960836)" + inkscape:label="#fullscreen"> + <rect + y="306.4892" + x="93.459122" + height="5.9716392" + width="8.0826044" + id="rect13459" + style="color:#000000;fill:url(#linearGradient6001);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="303.5228" + x="93.459152" + height="2.9342251" + width="8.0843163" + id="rect13461" + style="color:#000000;fill:url(#linearGradient13469);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path13486" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 90,307.5 2,-1.5 0,3 -2,-1.5 z m 9,-5.5 -3,0 1.5,-2 1.5,2 z m 6,5.5 -2,-1.5 0,3 2,-1.5 z m -6,6.5 -3,0 1.5,2 1.5,-2 z" + sodipodi:nodetypes="cccccccccccccccc" /> + </g> + <g + id="show-dialogs" + transform="translate(-10.00246,-95)" + inkscape:label="#dialog_toggle"> + <g + id="g14258"> + <path + style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 117.5025,304.5 3,0 0.0153,-3.0287" + id="rect14289" + sodipodi:nodetypes="ccc" /> + <path + style="color:#000000;fill:none;stroke:#bebebe;stroke-width:0.99999899;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 111.5178,310.5154 8.9847,-0.0154 0,-6 -3,0" + id="rect14287" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 117.5025,304.5 -6,0 0,6" + id="path14327" + sodipodi:nodetypes="ccc" /> + <path + style="color:#000000;fill:url(#linearGradient14343);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 120.5025,301.5 -9,0 0,3 6,0" + id="path14331" + sodipodi:nodetypes="cccc" /> + <rect + transform="translate(40.00246,0)" + y="300" + x="70" + height="16" + width="16" + id="rect14256" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient14389);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5632);stroke-width:0.99999958;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:0.99423631;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path14381" + sodipodi:cx="82.5" + sodipodi:cy="309.5" + sodipodi:rx="3.5" + sodipodi:ry="3.5" + d="m 86,309.5 c 0,1.933 -1.567003,3.5 -3.5,3.5 -1.932997,0 -3.5,-1.567 -3.5,-3.5 0,-1.933 1.567003,-3.5 3.5,-3.5 1.932997,0 3.5,1.567 3.5,3.5 z" + transform="translate(39.50246,0.5)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 116.5025,315.5 3,-3" + id="path14391" + sodipodi:nodetypes="cc" /> + </g> + <path + sodipodi:nodetypes="cc" + id="path14405" + d="m 121.5025,300.5 -11,11" + style="fill:none;stroke:#c80000;stroke-width:0.89999998;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + <g + id="paint-solid" + transform="translate(304.95552,253.97978)" + inkscape:label="#fill_solid"> + <rect + inkscape:label="#ccc" + y="66" + x="671" + height="17.9991" + width="18.024401" + id="ccc" + style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> + <use + xlink:href="#rect4381" + height="1250" + width="1250" + id="use5847" + y="0" + x="0" + transform="translate(0.045091,0.0202183)" /> + </g> + <g + id="paint-gradient-linear" + inkscape:label="#fill_gradient" + transform="translate(314.95552,254.01174)"> + <rect + y="65.9991" + x="691.02441" + height="18" + width="17.99999" + id="aaa" + style="color:#000000;fill:url(#linearGradient18352);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> + <use + xlink:href="#rect4381" + height="1250" + width="1250" + id="use5844" + y="0" + x="0" + transform="translate(20.04509,-0.0117415)" /> + </g> + <g + id="paint-gradient-radial" + transform="translate(324.95552,253.97978)" + inkscape:r_cx="true" + inkscape:r_cy="true" + inkscape:label="#fill_radial"> + <rect + y="65.9991" + x="711" + height="18" + width="18.024401" + id="sss" + style="color:#000000;fill:url(#radialGradient4374);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" + inkscape:r_cx="true" + inkscape:r_cy="true" /> + <use + xlink:href="#rect4381" + height="1250" + width="1250" + id="use5840" + y="0" + x="0" + transform="translate(40.04509,0.0202183)" /> + </g> + <g + transform="translate(44.5,189.75)" + id="stroke-join-miter" + inkscape:label="#join_miter"> + <path + style="fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 900.04,181.75 -0.04,-23 23,0 0,17.5 -6,0 0,5.5" + id="path4023" + sodipodi:nodetypes="cccccc" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:9;marker:none;display:inline" + id="rect4025" + width="24" + height="24" + x="899.5" + y="158.25" /> + <path + id="path4027" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 900.04,181.75 -0.04,-23 23,0 m -6,23 0,-6 6,0" /> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:9;marker:none;display:inline" + id="use5673" + width="2" + height="2" + x="920.5246" + y="167.2491" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-3.999997,0)" + id="use5689" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-7.999997,0)" + id="use5691" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,0)" + id="use5693" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,4)" + id="use5696" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,8)" + id="use5698" + y="0" + x="0" /> + <use + xlink:href="#use5673" + height="1250" + width="1250" + transform="translate(-12,12)" + id="use5700" + y="0" + x="0" /> + </g> + <g + id="layer-new" + transform="translate(-820,-145)" + inkscape:label="#new_layer"> + <path + sodipodi:nodetypes="ccccc" + id="rect4045" + d="m 969.5,185.5 11,0 -4,-5 -11,0 4,5 z" + style="opacity:0.48093842;color:#000000;fill:url(#linearGradient5693);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5695);stroke-width:0.99994743;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="ccccc" + id="path4802" + d="m 969.5,182.5 11,0 -4,-5 -11,0 4,5 z" + style="color:#000000;fill:url(#linearGradient5787);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5789);stroke-width:0.99994743;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path4048" + d="m 967,172 0,-2 2,0 0,2 2,0 0,2 -2,0 0,2 -2,0 0,-2 -2,0 0,-2 2,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccccccc" /> + </g> + <g + id="layer-rename" + transform="matrix(1,0,0,0.994505,-839.959,-133.8815)" + inkscape:label="#rename_layer"> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5771" + y="0" + x="0" + transform="matrix(1,0,0,1.004834,19.959,12.07373)" /> + <g + transform="matrix(0,-1,1,0,809,1179)" + id="g5621"> + <path + transform="translate(20,8)" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 965.5,174.5 4,2 0,-4 -4,2 z" + id="path5597" /> + <path + style="fill:url(#linearGradient5644);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 989.5731,180.459 7.5362,0 0,4 -7.5362,0 c 0.5,-1 0.5,-3 0,-4 z" + id="path5599" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:url(#linearGradient5658);stroke-width:1.00275898px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 998.0682,180.459 -9.5,0 -3.0682,2.041 3,2 9.6142,-0.041 c 0.6968,-1.102 0.6872,-2.9601 -0.046,-4 z" + id="path5591" + sodipodi:nodetypes="cccccc" /> + <path + style="fill:none;stroke:url(#linearGradient5669);stroke-width:1.00275862px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 989.0707,184.459 c 0.5,-0.6892 0.5,-3 0,-4" + id="path5593" + sodipodi:nodetypes="cc" /> + <path + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 996.6069,180.459 1.5073,0 c 0.5024,1 0.5024,3 0,4 l -1.5073,0 0,-4 z" + id="path5611" + sodipodi:nodetypes="ccccc" /> + </g> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect6047" + width="1" + height="1.0048341" + x="989.95898" + y="180.8858" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1.00275886px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 990.459,183.3979 0,5.0242" + id="path6049" /> + </g> + <g + id="layer-raise" + transform="translate(-819.959,-24.96088)" + inkscape:label="#raise_layer"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1.39999998;marker:none;display:inline" + id="rect12856" + width="16.000019" + height="16" + x="964.95898" + y="168.96091" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5780" + y="0" + x="0" + transform="translate(-0.0410002,0.96088)" /> + <path + sodipodi:nodetypes="ccccc" + id="path5705" + d="m 969.5,180.5 11,0 -4,-5 -11,0 4,5 z" + style="color:#000000;fill:url(#linearGradient5782);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5784);stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,176 2.5,3 -2,0 0,3 -1,1 0,-4 -2,0 2.5,-3 z" + id="path7204" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5778" + y="0" + x="0" + transform="translate(-0.0410002,-7.03912)" /> + </g> + <g + id="layer-bottom" + transform="translate(-819.959,35.03912)" + inkscape:label="#layer_to_bottom"> + <use + xlink:href="#rect12856" + height="1250" + width="1250" + id="use13605" + y="0" + x="0" /> + <use + xlink:href="#path5705" + height="1250" + width="1250" + id="use5769" + y="0" + x="0" + transform="translate(-0.0409998,2.96088)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5798" + y="0" + x="0" + transform="translate(-0.0409998,-4.03912)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5796" + y="0" + x="0" + transform="translate(-0.0410002,-7.03912)" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,183 2.5,-3 -2,0 0,-7 -1,-1 0,8 -2,0 2.5,3 z" + id="path7975" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + id="layer-top" + transform="translate(-819.959,15.03912)" + inkscape:label="#layer_to_top"> + <use + xlink:href="#rect12856" + height="1250" + width="1250" + id="use13602" + y="0" + x="0" + transform="translate(1.5625e-5,3.535156e-6)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5794" + y="0" + x="0" + transform="translate(-0.0410002,0.96088)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5792" + y="0" + x="0" + transform="translate(-0.0410002,-2.03912)" /> + <use + xlink:href="#path5705" + height="1250" + width="1250" + id="use5767" + y="0" + x="0" + transform="translate(-0.0410002,-5.03912)" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,171 2.5,3 -2,0 0,8 -1,1 0,-9 -2,0 2.5,-3 z" + id="path7995" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + id="layer-delete" + transform="translate(-819.959,55.03912)" + inkscape:label="#delete_layer"> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5800" + y="0" + x="0" + transform="translate(-0.0409998,2.96088)" /> + <use + xlink:href="#path11129" + height="1250" + width="1250" + id="use5864" + y="0" + x="0" + transform="translate(-0.0410002,-3.03912)" /> + <g + id="g5771" + transform="translate(-0.541,0.46088)"> + <path + sodipodi:nodetypes="ccccccccc" + style="fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:#aa0000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 972,171 1,-1 7,0 1,1 0,7 -1,1 -7,0 -1,-1 0,-7 z" + id="path8011" /> + <path + sodipodi:nodetypes="cc" + id="path8023" + d="m 974,171.85 5,5" + style="fill:none;stroke:#ffffff;stroke-width:1.70000005;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cc" + id="path8025" + d="m 979,171.85 -5,5" + style="fill:none;stroke:#ffffff;stroke-width:1.79999995;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + </g> + <g + id="layer-duplicate" + transform="translate(-819.96 95.039)" + inkscape:label="#duplicate_layer"> + <rect + id="rect6972" + height="16" + width="16" + y="171.96" + x="964.96" + fill="none" /> + <use + id="use6122" + transform="translate(-0.041 2.9609)" + height="1250" + width="1250" + xlink:href="#path4802" + y="0" + x="0" /> + <use + id="use6123" + transform="translate(-0.041 1.961)" + height="1250" + width="1250" + xlink:href="#path5705" + y="0" + x="0" /> + </g> + <g + id="selection-move-to-layer-above" + transform="matrix(0.997444,0,0,1,-817.4926,-59)" + inkscape:label="#move_selection_above"> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5774" + y="0" + x="0" + transform="translate(-0.0410002,-11.03912)" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect9602" + width="16" + height="16" + x="965" + y="164" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,167 2.5,3 -2,0 0,5 -1,1 0,-6 -2,0 2.5,-3 z" + id="path9533" + sodipodi:nodetypes="cccccccc" /> + <g + id="g5834"> + <path + id="path9593" + d="m 965.5,173.5 10,0 4,4 -10,0 -4,-4 z" + style="fill:none;stroke:#ffffff;stroke-width:1.00128043px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <rect + y="173" + x="965" + height="1" + width="1" + id="rect9565" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#rect9565" + x="0" + y="0" + id="use5802" + transform="translate(1.959,1.96088)" + width="1250" + height="1250" /> + <use + xlink:href="#use5802" + x="0" + y="0" + id="use5804" + transform="translate(2,2)" + width="1250" + height="1250" /> + <use + xlink:href="#use5804" + x="0" + y="0" + id="use5806" + transform="translate(2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5806" + x="0" + y="0" + id="use5808" + transform="translate(2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5808" + x="0" + y="0" + id="use5810" + transform="translate(2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5810" + x="0" + y="0" + id="use5812" + transform="translate(2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5812" + x="0" + y="0" + id="use5815" + transform="translate(2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5815" + x="0" + y="0" + id="use5817" + transform="translate(-2,-2)" + width="1250" + height="1250" /> + <rect + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="use5821" + width="1" + height="1" + x="970.95898" + y="172.96091" /> + <use + xlink:href="#use5821" + x="0" + y="0" + id="use5823" + transform="translate(-2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5823" + x="0" + y="0" + id="use5825" + transform="translate(-2,0)" + width="1250" + height="1250" /> + <use + xlink:href="#use5817" + x="0" + y="0" + id="use5829" + transform="translate(-2,-2)" + width="1250" + height="1250" /> + <use + xlink:href="#use5829" + x="0" + y="0" + id="use5832" + transform="translate(-2,0)" + width="1250" + height="1250" /> + </g> + </g> + <g + id="selection-move-to-layer-below" + transform="matrix(0.997444,0,0,1,-817.4926,-39)" + inkscape:label="#move_selection_below"> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5776" + y="0" + x="0" + transform="translate(-0.0409998,-5.03912)" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect10345" + width="16" + height="16" + x="965" + y="164" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,177 -2.5,-3 2,0 0,-5 1,-1 0,6 2,0 -2.5,3 z" + id="path10353" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#g5834" + height="1250" + width="1250" + id="use5851" + y="0" + x="0" + transform="translate(-0.041,-6.999996)" /> + </g> + <g + id="layer-previous" + transform="matrix(0.999888,0,0,0.999919,-819.8907,-104.985)" + inkscape:label="#switch_to_layer_above"> + <path + sodipodi:nodetypes="ccccc" + id="path11129" + d="m 969.5,185.5 11,0 -4,-5 -11,0 4,5 z" + style="opacity:0.48093842;color:#000000;fill:url(#linearGradient5770);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5772);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="ccccc" + id="path11131" + d="m 969.5,175.5 11,0 -4,-5 -11,0 4,5 z" + style="color:#000000;fill:url(#linearGradient5775);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5780);stroke-width:1.0000962;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 973.49999,176 971,179 l 2,0 0,5 1,-1 -10e-6,-4 2.00001,0 -2.50001,-3 z" + id="path11143" + sodipodi:nodetypes="cccccccc" /> + </g> + <g + id="layer-next" + transform="translate(-819.959,-84.96088)" + inkscape:label="#switch_to_layer_below"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 973.5,180 2.5,-3 -2,0 0,-5 -1,1 0,4 -2,0 2.5,3 z" + id="path11158" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path11131" + height="1250" + width="1250" + id="use5858" + y="0" + x="0" + transform="translate(-0.0410002,9.96088)" /> + <use + xlink:href="#path11129" + height="1250" + width="1250" + id="use5861" + y="0" + x="0" + transform="translate(-0.0409998,-10.03912)" /> + </g> + <g + id="selection-make-bitmap-copy" + transform="matrix(-1,0,0,1,321.0144,75.92699)" + inkscape:label="#selection_bitmap"> + <path + style="color:#000000;fill:url(#linearGradient11197);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11286);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 250.4841,75.57301 c 4.5303,-1.51926 3.5303,-3.01926 4.0303,-4.01926 l 4,0 c 0.25,0.73709 1.3311,2.71442 2.5,2.97418 l 4.5,1 0,9.04508 -14,-0.01926 -1,-1 -0.0303,-7.98074 z" + id="rect11168" + sodipodi:nodetypes="cccsccccc" /> + <path + transform="matrix(0.938759,0,0,0.938488,13.33429,5.86879)" + d="m 262,78.5 c 0,1.932997 -1.567,3.5 -3.5,3.5 -1.933,0 -3.5,-1.567003 -3.5,-3.5 0,-1.932997 1.567,-3.5 3.5,-3.5 1.933,0 3.5,1.567003 3.5,3.5 z" + sodipodi:ry="3.5" + sodipodi:rx="3.5" + sodipodi:cy="78.5" + sodipodi:cx="258.5" + id="path11178" + style="color:#000000;fill:url(#linearGradient6187);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.36206675;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <rect + style="color:#000000;fill:url(#linearGradient11210);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11294);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect11199" + width="4" + height="9" + x="261.5144" + y="75.573013" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11302);stroke-width:0.9999997px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 254.4841,71.58841 0,-2.01542 4,0 0,2.01542 -4,0 z" + id="path11225" /> + <path + style="fill:none;stroke:#b1b1b1;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 258.9841,75.32301 c -1,-1 -4.5,-1 -5.5,0" + id="path11254" + sodipodi:nodetypes="cc" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.74699998;marker:none;display:inline" + id="path3614" + sodipodi:cx="64" + sodipodi:cy="135" + sodipodi:rx="1" + sodipodi:ry="1" + d="m 65,135 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" + transform="matrix(-1,0,0,1,321.0144,-55.92699)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#ffffff;fill-opacity:0.44725743;fill-rule:evenodd;stroke:none;stroke-width:0.74699998;marker:none;display:inline" + id="path4498" + sodipodi:cx="64" + sodipodi:cy="135" + sodipodi:rx="1" + sodipodi:ry="1" + d="m 65,135 c 0,0.55228 -0.447715,1 -1,1 -0.552285,0 -1,-0.44772 -1,-1 0,-0.55228 0.447715,-1 1,-1 0.552285,0 1,0.44772 1,1 z" + transform="matrix(-1.5,0,0,1.5,351.5144,-122.927)" /> + </g> + <g + id="document-cleanup" + transform="translate(-254.959,-4.930791)" + inkscape:label="#file_vacuum"> + <path + sodipodi:nodetypes="cssc" + id="path11319" + d="m 268.5,100 c -1,0 -3,0.3049 -3,-2 0,-3 3.6283,-2.5 6,-2.5 3,0 3,-2.5 3,-2.5" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + transform="matrix(0.119829,0,0,0.105878,237.4457,94.48869)" + d="m 280,97.5 c 0,3.58985 -2.79822,6.5 -6.25,6.5 -3.45178,0 -6.25,-2.91015 -6.25,-6.5 0,-3.589851 2.79822,-6.5 6.25,-6.5 3.45178,0 6.25,2.910149 6.25,6.5 z" + sodipodi:ry="6.5" + sodipodi:rx="6.25" + sodipodi:cy="97.5" + sodipodi:cx="273.75" + id="path11327" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:8.87804985;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="ccccs" + id="rect11314" + d="m 270,98.98237 c 7.036,-3.93642 9.5,0.5 9.5,0.5 l 0,5.00003 -11,0.0176 c 0,0 -3,-3 1.5,-5.51763 z" + style="color:#000000;fill:url(#linearGradient11335);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11359);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + <path + transform="matrix(0.401393,0,0,0.385965,168.1187,65.35082)" + d="m 280,97.5 c 0,3.58985 -2.79822,6.5 -6.25,6.5 -3.45178,0 -6.25,-2.91015 -6.25,-6.5 0,-3.589851 2.79822,-6.5 6.25,-6.5 3.45178,0 6.25,2.910149 6.25,6.5 z" + sodipodi:ry="6.5" + sodipodi:rx="6.25" + sodipodi:cy="97.5" + sodipodi:cx="273.75" + id="path11312" + style="color:#000000;fill:url(#radialGradient11343);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:2.54062963;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <rect + y="90.469917" + x="270.45499" + height="2.0342929" + width="8.0898838" + id="rect11317" + style="color:#000000;fill:#646464;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient11367);stroke-width:0.99999928;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 273.459,91.43079 2,0" + id="path5624" /> + </g> + <g + transform="translate(-298.3149,-87.1388)" + id="edit-select-all" + inkscape:label="#selection_select_all"> + <use + xlink:href="#g6068" + height="1250" + width="1250" + transform="translate(-0.0124923,-0.0145053)" + id="use6072" + y="0" + x="0" /> + <use + xlink:href="#g10421" + height="1250" + width="1250" + transform="translate(-1.042199,0.956231)" + id="use6075" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 55.5,185.5 1,0" + id="path6078" + transform="translate(298.3149,67.13877)" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(3,0)" + id="use6080" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(6,0)" + id="use6082" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(9,0)" + id="use6084" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(12,0)" + id="use6086" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(2,15)" + id="use6088" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(5,15)" + id="use6090" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(8,15)" + id="use6092" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(11,15)" + id="use6094" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(14,15)" + id="use6096" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 55.5,187.5 0,1" + id="path6100" + transform="translate(298.3149,67.13877)" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(0,3)" + id="use6102" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(0,6)" + id="use6104" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(0,9)" + id="use6106" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(0,12)" + id="use6108" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(15,10)" + id="use6110" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(15,7)" + id="use6112" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(15,4)" + id="use6114" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(15,1)" + id="use6116" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(15,-2)" + id="use6118" + y="0" + x="0" /> + </g> + <g + id="document-open-recent" + transform="translate(-260,4.914011)" + inkscape:label="#file_open_recent"> + <use + xlink:href="#rect6425" + height="1250" + width="1250" + transform="translate(4,4)" + id="use5610" + y="0" + x="0" /> + <use + xlink:href="#rect6425" + height="1250" + width="1250" + transform="translate(2,2)" + id="use5608" + y="0" + x="0" /> + <path + style="color:#000000;fill:url(#linearGradient5766);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5768);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 273.5,21.543 5,0 0,10 -8,0 0,-7 3,-3 z" + id="rect6425" + sodipodi:nodetypes="cccccc" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient5612);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5620);stroke-width:0.71197993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path6398" + sodipodi:cx="281" + sodipodi:cy="23" + sodipodi:rx="3" + sodipodi:ry="3" + d="m 284,23 c 0,1.656854 -1.34315,3 -3,3 -1.65685,0 -3,-1.343146 -3,-3 0,-1.656854 1.34315,-3 3,-3 1.65685,0 3,1.343146 3,3 z" + transform="matrix(1.331759,0,0,1.327869,-92.69296,-5.997991)" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + d="m 281,22 1,-1 0,4 -1,0 0,-3 z" + id="rect4108" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + d="m 280,23.9955 2,0 0,1 -3,0 1,-1 z" + id="rect4110" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:#646464;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 270.5,24.543 3,0 0,-3 -3,3 z" + id="path4704" /> + </g> + <g + id="format-text-direction-horizontal" + style="stroke:none" + inkscape:label="#writing_mode_lr" + transform="translate(-225.5246,375.0009)"> + <g + id="use5602" + style="stroke:none" + transform="translate(-0.4754,-9e-4)"> + <path + sodipodi:nodetypes="cccccccc" + id="path3731" + d="m 841,26 22,0 1,1 0,20 -2,2 -20,0 -1,-1 0,-22 z" + style="color:#000000;fill:#000000;fill-opacity:0.06666673;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1;marker:none;display:inline" + d="m 840,26 1,0 0,20 -1,0 0,-20 z" + id="path3733" /> + <rect + y="26" + x="861" + height="20" + width="1" + id="rect3735" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="841" + x="-26" + height="20" + width="1" + id="rect3737" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="841" + x="-47" + height="20" + width="1" + id="rect3739" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="26" + x="841" + height="20" + width="20" + id="rect3741" + style="color:#000000;fill:url(#linearGradient3749);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 842,46 -1,0 0,-20 20,0 0,1 -19,0 0,19 z" + id="path3743" /> + <path + style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 843.5,34.75 0,-4 c 0,-3 5,-3 5,0 l 0,4" + id="path3745" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 843.5,32 5.1429,0" + id="path3747" /> + </g> + <path + style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 859.5492,30.4982 -3.0246,-2.4991 0,2 -7,0 0,1 7,0 0,2 3.0246,-2.5009 z" + id="path6495" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 859.5492,36.4982 -3.0246,-2.4991 0,2 -15,0 0,1 15,0 0,2 3.0246,-2.5009 z" + id="path6497" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path6497" + height="1250" + width="1250" + transform="translate(0,6)" + id="use5502" + y="0" + x="0" /> + </g> + <g + id="format-text-direction-vertical" + style="stroke:none" + inkscape:label="#writing_mode_tb" + transform="translate(-256,375)"> + <path + sodipodi:nodetypes="cccccccc" + id="path6536" + d="m 841,26 22,0 1,1 0,20 -2,2 -20,0 -1,-1 0,-22 z" + style="color:#000000;fill:#000000;fill-opacity:0.06666673;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke-width:1;marker:none;display:inline" + d="m 840,26 1,0 0,20 -1,0 0,-20 z" + id="rect6538" /> + <rect + y="26" + x="861" + height="20" + width="1" + id="rect6540" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="841" + x="-26" + height="20" + width="1" + id="rect6542" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + y="841" + x="-47" + height="20" + width="1" + id="rect6544" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="26" + x="841" + height="20" + width="20" + id="rect6546" + style="color:#000000;fill:url(#linearGradient3755);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 842,46 -1,0 0,-20 20,0 0,1 -19,0 0,19 z" + id="path6565" /> + <path + style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 859.5246,34.7491 0,-4 c 0,-3 -5,-3 -5,0 l 0,4" + id="path6554" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#383838;stroke-width:1.00000012px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 859.6675,31.9991 -5.1429,0" + id="path6556" /> + <path + style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 857.4754,45.0009 855,42 l 2,0 0,-7 1,0 0,7 2,0 -2.5246,3.0009 z" + id="path6548" + sodipodi:nodetypes="cccccccc" /> + <path + style="fill:#5a5a5a;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="M 851.4754,45 849,42 l 2,0 0,-15 1,0 0,15 2,0 -2.5246,3 z" + id="path6550" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path6550" + height="1250" + width="1250" + transform="translate(-5.9754,0)" + id="use5600" + y="0" + x="0" /> + </g> + <g + id="align-horizontal-right-to-anchor" + transform="matrix(1,0,0,0.998006,1017.9947,-110.67412)" + style="display:inline" + inkscape:label="#al_left_out"> + <g + id="g5060"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5531);stroke-width:1.00099874;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5048" + width="6.0088992" + height="5.011291" + x="-27.50193" + y="175.5202" /> + <rect + style="color:#000000;fill:url(#linearGradient5533);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5535);stroke-width:1.00099921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5050" + width="4.016531" + height="3.0097871" + x="-26.50193" + y="176.5235" /> + </g> + <g + id="g4929" + transform="matrix(1.091916,0,0,1,2.542347,0)"> + <rect + y="192.55969" + x="-38.489891" + height="5.011148" + width="10.98825" + id="rect4911" + style="color:#000000;fill:none;stroke:url(#linearGradient5537);stroke-width:0.95794243;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="193.56081" + x="-37.604919" + height="3.0064349" + width="9.2271681" + id="rect4913" + style="color:#000000;fill:url(#linearGradient5539);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5541);stroke-width:0.95794243;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="g4889"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5543);stroke-width:1.00099862;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4879" + width="16.99984" + height="7.017632" + x="-44.487461" + y="180.54359" /> + <rect + style="color:#000000;fill:url(#linearGradient5545);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5547);stroke-width:1.00099921;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4881" + width="14.99677" + height="5.0217919" + x="-43.485401" + y="181.53729" /> + </g> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5118" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + id="g4893" + transform="matrix(0.414065,0,0,0.857422,-24.08423,33.74415)"> + <rect + y="175.86909" + x="-25.11964" + height="7.017632" + width="16.911819" + id="rect4895" + style="color:#000000;fill:none;stroke:url(#linearGradient5549);stroke-width:1.67997444;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="177.0416" + x="-22.70454" + height="4.678422" + width="12.16012" + id="rect4897" + style="color:#000000;fill:url(#linearGradient5551);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5553);stroke-width:1.6799736;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00099885;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + d="m -27.45876,175.5271 0,23.0451" + id="path5120" + sodipodi:nodetypes="cc" /> + <g + transform="matrix(0.414065,0,0,0.857422,-17.08423,41.76522)" + id="g4909" /> + </g> + <g + id="align-horizontal-left" + transform="matrix(1,0,0,0.998006,1047.9847,-110.64892)" + style="display:inline" + inkscape:label="#al_left_in"> + <g + style="display:inline" + id="g4936" + transform="translate(60.01222,-11.05555)"> + <rect + y="187.554" + x="-104.4881" + height="7.017632" + width="22.00094" + id="rect4938" + style="color:#000000;fill:none;stroke:url(#linearGradient5525);stroke-width:1.00099838;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="188.54761" + x="-103.4882" + height="5.0217919" + width="20.00112" + id="rect4940" + style="color:#000000;fill:url(#linearGradient5527);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5529);stroke-width:1.00099957;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <use + xlink:href="#g4893" + height="1250" + width="1250" + id="use4957" + y="0" + x="0" + style="display:inline" + transform="translate(-9.990004,-5.030154)" /> + <use + xlink:href="#g4929" + height="1250" + width="1250" + id="use4933" + y="0" + x="0" + style="display:inline" + transform="translate(-4.988258,-5.035654)" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5154" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m -44,196.54298 3,-2.50498 0,2.00405 11,-5e-5 0,1.0019 -11,2e-5 0,2.00398 -3,-2.50492 z" + id="path6192" + sodipodi:nodetypes="cccccccc" /> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5039" + y="0" + x="0" + style="display:inline" + transform="translate(-17.01664,-0.0261695)" /> + </g> + <g + id="align-horizontal-center" + transform="matrix(1,0,0,0.998006,1078.0014,-110.64902)" + style="display:inline" + inkscape:label="#al_center_hor"> + <use + xlink:href="#use4933" + height="1250" + width="1250" + id="use4973" + y="0" + x="0" + style="display:inline" + transform="translate(4.9833,-0.0010592)" /> + <use + xlink:href="#g4936" + height="1250" + width="1250" + id="use4970" + y="0" + x="0" + style="display:inline" + transform="translate(-0.0162524,0.0037401)" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4315" + width="24" + height="24" + x="1080" + y="165" + transform="matrix(1,0,0,1.001998,-1125,9.670333)" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5252" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="175" + x="-44.969021" + height="16" + width="16" + id="rect6200" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m -34,196.51098 -3,2.50502 0,-2.00403 -6,0.0319 0,-1.0019 6,-0.032 0,-2.00398 3,2.50498 z" + id="path6242" + sodipodi:nodetypes="cccccccc" /> + <g + transform="matrix(0.743616,0,0,1,-8.870407,-12.0507)" + id="use4976"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5519);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4980" + width="10.77151" + height="5.011148" + x="-38.503159" + y="192.55969" /> + <rect + style="color:#000000;fill:url(#linearGradient5521);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5523);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4982" + width="8.1205044" + height="3.0064349" + x="-37.19693" + y="193.56081" /> + </g> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5042" + y="0" + x="0" + style="display:inline" + transform="translate(-6.033343,-0.0260693)" /> + <use + xlink:href="#path6242" + height="1250" + width="1250" + transform="matrix(-1,0,0,1,-66.9921,0.03112)" + id="use5624" + y="0" + x="0" /> + </g> + <g + id="align-horizontal-right" + transform="matrix(1,0,0,0.998006,1110.9537,-109.64892)" + style="display:inline" + inkscape:label="#al_right_in"> + <rect + y="173.998" + x="-47.969021" + height="16" + width="16" + id="rect4279" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#use4933" + height="1250" + width="1250" + id="use5021" + y="0" + x="0" + style="display:inline" + transform="translate(8.031,-1.001998)" /> + <use + xlink:href="#g4936" + height="1250" + width="1250" + id="use5025" + y="0" + x="0" + style="display:inline" + transform="translate(-1.971593,-1.007084)" /> + <use + xlink:href="#use4957" + height="1250" + width="1250" + id="use5023" + y="0" + x="0" + style="display:inline" + transform="translate(13.031,-1.001998)" /> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5044" + y="0" + x="0" + style="display:inline" + transform="translate(3.014357,-1.028167)" /> + <use + xlink:href="#path6192" + height="1250" + width="1250" + id="use5621" + y="0" + x="0" + style="display:inline" + transform="matrix(-1,0,0,1,-68.9444,-1.002948)" /> + </g> + <g + id="align-horizontal-left-to-anchor" + inkscape:label="#al_right_out" + transform="translate(-32.053171,-131.04252)"> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use5064" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1153.055,20.37222)" /> + <rect + y="195.0446" + x="1125.038" + height="15.9681" + width="16" + id="rect5073" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#g4889" + height="1250" + width="1250" + id="use5030" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1176.045,20.37348)" /> + <use + xlink:href="#g4893" + height="1250" + width="1250" + id="use5032" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1166.045,20.37348)" /> + <use + xlink:href="#g4929" + height="1250" + width="1250" + id="use5034" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1171.048,20.36799)" /> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5046" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1159.021,20.36748)" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1003.0579,-78.634026)" + id="align-vertical-bottom-to-anchor" + inkscape:label="#al_top_out"> + <use + xlink:href="#g4889" + height="1250" + width="1250" + id="use5485" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1.001998,0.998006,0,-198.7358,218.0576)" /> + <use + xlink:href="#g4893" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-205.7188,218.0554)" + id="use5503" + y="0" + x="0" + style="display:inline" /> + <rect + y="6.0480151" + x="172.9911" + height="15.9681" + width="16.031969" + id="rect4502" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,1,-1,0,0,0)" /> + <use + xlink:href="#g4929" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-220.7255,218.0571)" + id="use5559" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-186.7188,218.063)" + id="use5562" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#path5120" + height="1250" + width="1250" + id="use5618" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1.001998,-0.998006,0,168.6276,218.0287)" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1095.9006,-75.696826)" + id="align-vertical-center" + inkscape:label="#al_center_ver"> + <rect + y="38.915932" + x="170.05479" + height="15.9681" + width="16.031969" + id="rect4582" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,1,-1,0,0,0)" /> + <rect + y="38.915932" + x="170.0858" + height="15.9681" + width="16.031969" + id="rect4584" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,1,-1,0,0,0)" /> + <use + xlink:href="#path6242" + height="1250" + width="1250" + transform="matrix(0,1.001998,-0.998006,0,135.7278,215.127)" + id="use5762" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5762" + height="1250" + width="1250" + transform="matrix(1,0,0,-1,4.205594e-5,363.1201)" + id="use5766" + y="0" + x="0" /> + <use + xlink:href="#use4970" + height="1250" + width="1250" + id="use5797" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1.001998,0.998006,0,-223.5451,215.119)" /> + <use + xlink:href="#use4976" + height="1250" + width="1250" + id="use5799" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1.001998,0.998006,0,-229.5403,215.1289)" /> + <use + xlink:href="#use4973" + height="1250" + width="1250" + id="use5801" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1.001998,0.998006,0,-243.5403,215.1173)" /> + <use + xlink:href="#use5618" + height="1250" + width="1250" + id="use5725" + y="0" + x="0" + style="display:inline" + transform="translate(-32.84268,-8.95505)" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1142.8937,-75.605726)" + id="align-vertical-bottom" + inkscape:label="#al_bottom_in"> + <use + xlink:href="#use5626" + height="1250" + width="1250" + id="use5807" + y="0" + x="0" + transform="matrix(1,0,0,-1.001998,-1109.954,391.4175)" /> + <use + xlink:href="#use5712" + height="1250" + width="1250" + id="use5809" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1108.955,-16.45778)" /> + <use + xlink:href="#use5675" + height="1250" + width="1250" + transform="matrix(1,0,0,1.001998,-1108.95,-26.47689)" + id="use5813" + y="0" + x="0" /> + <use + xlink:href="#use5716" + height="1250" + width="1250" + id="use5811" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1108.949,-11.44863)" /> + <use + xlink:href="#use5719" + height="1250" + width="1250" + id="use5827" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1109.954,-4.43204)" /> + </g> + <g + id="align-vertical-top-to-anchor" + transform="translate(3.4940291,-92.489326)" + inkscape:label="#al_bottom_out"> + <rect + y="-1113.49" + x="186.5164" + height="15.9681" + width="16" + id="rect4694" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,1,-1,0,0,0)" /> + <use + xlink:href="#use5559" + height="1250" + width="1250" + id="use5835" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1119.564,14.85359)" /> + <use + xlink:href="#use5485" + height="1250" + width="1250" + id="use5837" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1119.567,19.85517)" /> + <use + xlink:href="#use5503" + height="1250" + width="1250" + id="use5839" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1119.559,9.852706)" /> + <use + xlink:href="#use5562" + height="1250" + width="1250" + id="use5841" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1119.563,-3.144651)" /> + <use + xlink:href="#use5618" + height="1250" + width="1250" + id="use5843" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1119.565,2.855306)" /> + </g> + <g + id="distribute-horizontal-left" + transform="matrix(1,0,0,0.998006,1014.9695,-40.611135)" + style="display:inline" + inkscape:label="#distribute_left"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5678" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + id="g5853"> + <use + xlink:href="#path5265" + x="0" + y="0" + id="use5269" + transform="translate(9,-8.462612e-4)" + width="1250" + height="1250" /> + <use + xlink:href="#path5265" + x="0" + y="0" + id="use5274" + transform="translate(18,-8.462612e-4)" + width="1250" + height="1250" /> + <path + sodipodi:nodetypes="cc" + id="path5265" + d="m -44.4626,175.469 0,12.0232" + style="fill:none;stroke:#c80000;stroke-width:1.00099885;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" /> + <path + sodipodi:nodetypes="ccccccccccc" + id="path5722" + d="m -41.9626,178.0051 -2,-1.53492 2,-1.47098 0,0.96998 3.9626,8e-4 0,-1.00198 2,1.50298 -2,1.50302 0,-1.00202 -3.9626,-8e-4 0,1.03392 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <use + xlink:href="#path5722" + x="0" + y="0" + id="use5276" + transform="translate(9,-5.433975e-6)" + width="1250" + height="1250" /> + </g> + <g + transform="matrix(0,0.745102,0.998006,0,-218.6383,211.1611)" + id="use5317" + style="display:inline"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5774);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5770" + width="10.77151" + height="5.011148" + x="-38.503159" + y="192.55969" /> + <rect + style="color:#000000;fill:url(#linearGradient5776);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5778);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5772" + width="8.1205044" + height="3.0064349" + x="-37.19693" + y="193.56081" /> + </g> + <g + transform="matrix(0,1.576101,0.998006,0,-236.6395,242.165)" + id="use5322" + style="display:inline"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5579);stroke-width:0.79813403;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5326" + width="10.77151" + height="5.011148" + x="-38.503159" + y="192.55969" /> + <rect + style="color:#000000;fill:url(#linearGradient5581);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5583);stroke-width:0.79813391;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5328" + width="9.534461" + height="3.006026" + x="-37.87537" + y="193.5616" /> + </g> + <g + id="g5427" + transform="matrix(0.974035,0,0,1,-0.895642,0)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5585);stroke-width:1.01425469;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5724" + width="3.084933" + height="9.0357723" + x="-35.48843" + y="183.485" /> + <path + sodipodi:nodetypes="ccc" + id="path5415" + d="m -33.4626,185.4882 0,6.0119 -1,0" + style="fill:none;stroke:#a4b8d2;stroke-width:1.01425254px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccc" + id="path5417" + d="m -34.4626,190.4982 0,-6.012 1,0" + style="fill:none;stroke:#e2e8f0;stroke-width:1.01425254px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="distribute-horizontal-center" + transform="matrix(1,0,0,0.998006,1048.9361,-40.639598)" + style="display:inline" + inkscape:label="#distribute_hcentre"> + <g + id="use5367" + transform="matrix(0,1.094098,0.818085,0,-177.9701,226.5979)" + style="display:inline"> + <rect + y="186.38969" + x="-38.491581" + height="5.002912" + width="11.03482" + id="rect5376" + style="color:#000000;fill:none;stroke:url(#linearGradient5561);stroke-width:1.05804992;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="187.5994" + x="-37.617401" + height="2.583389" + width="9.2428188" + id="rect5378" + style="color:#000000;fill:url(#linearGradient5563);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5565);stroke-width:0.95794278;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + style="display:inline" + id="g5355" + transform="matrix(0,1.001998,0.998006,0,-217.691,227.0587)"> + <rect + y="173.5676" + x="-44.48312" + height="6.0217342" + width="9.0228138" + id="rect5357" + style="color:#000000;fill:none;stroke:url(#linearGradient5567);stroke-width:1.00099826;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="174.5696" + x="-43.48764" + height="4.045835" + width="7.0318828" + id="rect5359" + style="color:#000000;fill:url(#linearGradient5569);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5571);stroke-width:1.00099969;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + transform="matrix(0,1.001998,0.998006,0,-215.6813,226.0567)" + id="use5339" + style="display:inline"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5573);stroke-width:1.0009985;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5345" + width="16.99984" + height="6.0217342" + x="-44.487461" + y="180.6097" /> + <rect + style="color:#000000;fill:url(#linearGradient5575);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5577);stroke-width:1.00099945;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5347" + width="14.99677" + height="4.045835" + x="-43.485401" + y="181.6118" /> + </g> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5736" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#g5853" + height="1250" + width="1250" + id="use5860" + y="0" + x="0" + style="display:inline" + transform="translate(3.0309,0)" /> + </g> + <g + id="distribute-horizontal-right" + transform="matrix(1,0,0,0.998006,1082.9726,-40.648958)" + style="display:inline" + inkscape:label="#distribute_right"> + <use + xlink:href="#g5853" + height="1250" + width="1250" + id="use5863" + y="0" + x="0" + style="display:inline" + transform="translate(4.9936,0.0378755)" /> + <rect + y="175.006" + x="-45" + height="16" + width="16" + id="rect5180" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + transform="matrix(0,0.745102,0.998006,0,-218.6447,211.1989)" + id="use5320" + style="display:inline"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5786);stroke-width:1.16080678;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5782" + width="10.77151" + height="5.011148" + x="-38.503159" + y="192.55969" /> + <rect + style="color:#000000;fill:url(#linearGradient5788);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5790);stroke-width:1.16080678;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5784" + width="8.1205044" + height="3.0064349" + x="-37.19693" + y="193.56081" /> + </g> + <use + xlink:href="#use5322" + height="1250" + width="1250" + id="use5336" + y="0" + x="0" + style="display:inline" + transform="translate(-0.005212,0.0379148)" /> + <use + xlink:href="#g5427" + height="1250" + width="1250" + id="use5432" + y="0" + x="0" + style="display:inline" + transform="translate(1.993612,0.0370281)" /> + </g> + <g + id="distribute-horizontal-gaps" + transform="matrix(1,0,0,0.998006,1116.97,-40.592638)" + style="display:inline" + inkscape:label="#distribute_hdist"> + <g + id="g5885"> + <use + xlink:href="#use5274" + transform="translate(-15,-0.0213989)" + style="display:inline" + x="0" + y="0" + id="use5475" + width="1250" + height="1250" /> + <use + xlink:href="#use5274" + transform="translate(-8,-0.0222444)" + style="display:inline" + x="0" + y="0" + id="use5479" + width="1250" + height="1250" /> + <use + xlink:href="#use5274" + transform="translate(-5,-0.0213989)" + style="display:inline" + x="0" + y="0" + id="use5481" + width="1250" + height="1250" /> + <use + xlink:href="#use5274" + transform="translate(2,-0.0222444)" + style="display:inline" + x="0" + y="0" + id="use5483" + width="1250" + height="1250" /> + <path + sodipodi:nodetypes="ccccccccccc" + id="path5816" + d="m -39,177.974 -2,-1.55273 2,-1.45327 -0.015,0.95233 2,0 0,-1.00203 2,1.50297 -2,1.50303 0,-1.00209 -2,0 0.015,1.05179 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <use + xlink:href="#path5816" + x="0" + y="0" + id="use5473" + transform="translate(10.0524,-0.0230858)" + width="1250" + height="1250" /> + </g> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect5806" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#g5427" + height="1250" + width="1250" + id="use5435" + y="0" + x="0" + style="display:inline" + transform="translate(1.000012,-0.0230918)" /> + <g + id="use5437" + transform="matrix(1,0,0,1.662154,-8.963779,-123.5118)"> + <rect + y="183.485" + x="-35.498821" + height="9.0361071" + width="3.0207911" + id="rect5452" + style="color:#000000;fill:none;stroke:url(#linearGradient5557);stroke-width:0.77642179;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#a4b8d2;stroke-width:0.7764219;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m -33.48843,184.6843 0,7.234 -1,0" + id="path5454" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#e2e8f0;stroke-width:0.7764219;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m -34.48843,191.3155 0,-7.234 1,0" + id="path5456" + sodipodi:nodetypes="ccc" /> + </g> + <g + style="display:inline" + id="g5462" + transform="matrix(0.994095,0,0,1.884852,10.82365,-164.3818)"> + <rect + y="183.485" + x="-35.498821" + height="9.0361071" + width="3.0207911" + id="rect5464" + style="color:#000000;fill:none;stroke:url(#linearGradient5559);stroke-width:0.73127508;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#a4b8d2;stroke-width:0.73127532;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m -33.48693,184.5482 -0.0059,7.4425 -1,0" + id="path5467" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#e2e8f0;stroke-width:0.73127532;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m -34.49287,191.4591 0,-7.4425 1,0" + id="path5469" + sodipodi:nodetypes="ccc" /> + </g> + </g> + <g + id="distribute-vertical-bottom" + inkscape:label="#distribute_bottom" + transform="translate(-36.99845,-60.954178)"> + <use + xlink:href="#g5853" + height="1250" + width="1250" + id="use5865" + y="0" + x="0" + style="display:inline" + transform="matrix(0,-1,0.998006,0,832.369,202.0097)" /> + <rect + y="1007.11" + x="-247.05119" + height="15.9681" + width="16" + id="rect4248" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <use + xlink:href="#use4976" + height="1250" + width="1250" + id="use5909" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1051.989,43.32326)" /> + <use + xlink:href="#g5427" + height="1250" + width="1250" + transform="matrix(0,1,0.998006,0,832.3504,269.9301)" + id="use5913" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5322" + height="1250" + width="1250" + transform="matrix(0,1,0.998006,0,832.4259,285.9361)" + id="use5917" + y="0" + x="0" + style="display:inline" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1032.5443,-16.572396)" + id="distribute-vertical-center" + inkscape:label="#distribute_vcentre"> + <use + xlink:href="#g5355" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-203.1702,241.0142)" + id="use5921" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5339" + height="1250" + width="1250" + transform="matrix(0,1.001998,-0.998006,0,176.0711,222.9501)" + id="use5925" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5367" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-203.1639,204.97)" + id="use5929" + y="0" + x="0" + style="display:inline" /> + <rect + y="-28.51869" + x="-203.0105" + height="15.9681" + width="16.031969" + id="rect4296" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <use + xlink:href="#use5865" + height="1250" + width="1250" + id="use5880" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1035.535,-47.49321)" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1100.9684,-5.5886422)" + id="distribute-vertical-top" + inkscape:label="#distribute_top"> + <use + xlink:href="#use5865" + height="1250" + width="1250" + id="use5883" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1069.956,-60.49864)" /> + <rect + y="-62.953541" + x="-191.98441" + height="15.9681" + width="16.031969" + id="rect4341" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <use + xlink:href="#use5909" + height="1250" + width="1250" + id="use5933" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1069.978,-55.48746)" /> + <use + xlink:href="#use5913" + height="1250" + width="1250" + id="use5935" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1069.96,-57.49265)" /> + <use + xlink:href="#use5917" + height="1250" + width="1250" + id="use5937" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1069.978,-55.48865)" /> + </g> + <g + style="display:inline" + transform="matrix(1,0,0,0.998006,1120.0197,-5.5695378)" + id="distribute-vertical-gaps" + inkscape:label="#distribute_vdist"> + <use + xlink:href="#g5885" + height="1250" + width="1250" + id="use5893" + y="0" + x="0" + style="display:inline" + transform="matrix(0,-1.001998,0.998006,0,-222.5775,146.9011)" /> + <rect + y="-47.924419" + x="-191.94141" + height="15.9681" + width="16.031969" + id="rect4388" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <use + xlink:href="#use5913" + height="1250" + width="1250" + id="use5943" + y="0" + x="0" + transform="matrix(1,0,0,1.001998,-1055.001,-56.51422)" /> + <use + xlink:href="#g5462" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-222.6272,192.921)" + id="use5947" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5437" + height="1250" + width="1250" + transform="matrix(0,1.001998,0.998006,0,-222.6377,232.9772)" + id="use5951" + y="0" + x="0" + style="display:inline" /> + </g> + <g + id="align-vertical-top" + transform="translate(-27.060371,-103.02892)" + inkscape:label="#al_top_in"> + <rect + transform="matrix(0,1,-1,0,0,0)" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4546" + width="16" + height="15.9681" + x="197.03101" + y="-1054.045" /> + <use + xlink:href="#path6192" + height="1250" + width="1250" + id="use5626" + y="0" + x="0" + style="display:inline" + transform="matrix(0,1,-0.998006,0,1228.721,242.0301)" /> + <use + xlink:href="#g4936" + height="1250" + width="1250" + transform="matrix(0,1,0.998006,0,869.4195,242.0059)" + id="use5675" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#use5559" + height="1250" + width="1250" + id="use5712" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1065.119,19.39495)" /> + <use + xlink:href="#use5503" + height="1250" + width="1250" + id="use5716" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1065.113,14.3949)" /> + <use + xlink:href="#use5618" + height="1250" + width="1250" + id="use5719" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1060.118,7.394906)" /> + </g> + <g + transform="matrix(-1,0,0,1,1096.1733,82.037531)" + id="distribute-vertical-baseline" + inkscape:label="#distribute_baselines_vert"> + <use + xlink:href="#g5896" + height="1250" + width="1250" + id="use5901" + y="0" + x="0" + transform="matrix(0,1,-1,0,70.1351,113.7903)" /> + <rect + transform="matrix(0,1,1,0,0,0)" + y="-33.803001" + x="79.963608" + height="24" + width="24" + id="rect4421" + style="font-size:12px;fill:none;stroke:none" /> + <use + xlink:href="#text5563" + height="1250" + width="1250" + id="use5966" + y="0" + x="0" + transform="matrix(1,0,0,0.997921,-10.75241,14.3406)" /> + <use + xlink:href="#text3357" + height="1250" + width="1250" + id="use5968" + y="0" + x="0" + transform="matrix(1,0,0,0.997921,-9.52204,-9.516171)" /> + </g> + <g + transform="matrix(-1,0,0,1,1096.1742,54.038278)" + id="distribute-horizontal-baseline" + inkscape:label="#distribute_baselines_hor"> + <rect + transform="matrix(0,1,1,0,0,0)" + y="-33.803001" + x="79.963608" + height="24" + width="24" + id="rect4447" + style="font-size:12px;fill:none;stroke:none" /> + <g + id="g5896"> + <use + xlink:href="#path5120" + transform="matrix(-1,0,0,0.998006,-37.78636,-94.71436)" + style="display:inline" + x="0" + y="0" + id="use5305" + width="1250" + height="1250" /> + <use + xlink:href="#path5120" + transform="matrix(-1,0,0,0.998006,-51.78636,-94.71352)" + style="display:inline" + x="0" + y="0" + id="use5308" + width="1250" + height="1250" /> + <path + sodipodi:nodetypes="ccccccccccc" + id="path4463" + d="m -10.803,82.463616 -2.99999,-2.500006 0,2.000006 -7.00001,0 0,-2.000006 -3,2.500006 3,2.499994 0,-1.999994 7.00001,0 0,1.999994 2.99999,-2.499994 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + </g> + <use + xlink:href="#text5563" + height="1250" + width="1250" + id="use5955" + y="0" + x="0" + transform="matrix(1,0,0,0.997921,1.24759,8.430751)" /> + <use + xlink:href="#text3357" + height="1250" + width="1250" + transform="matrix(1,0,0,0.997921,-11.02206,-2.05535)" + id="use5961" + y="0" + x="0" /> + </g> + <g + id="align-horizontal-node" + inkscape:label="#node_valign" + transform="translate(-205,77.992833)"> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 1186.5,140.5008 0,22.9992 0,0" + id="path5262" /> + <path + style="fill:none;stroke:#969696;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m 1175.5,140.5 c 3,3.5 18.975,1.5988 17.5,7.5 -1,4 -17,1 -17.5,8.5 -0.366,5.4878 17,2.5 23,6.5" + id="path5249" + sodipodi:nodetypes="cssc" /> + <rect + y="141.5" + x="1184.5" + height="4.0071669" + width="4.0662079" + id="rect5251" + style="color:#000000;fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.9999997;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + transform="translate(0.0188999,6.991948)" + id="use5438" + y="0" + x="0" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + transform="translate(-0.0473082,16.99195)" + id="use5440" + y="0" + x="0" /> + </g> + <g + id="align-vertical-node" + transform="translate(-171.0218,77.983746)" + inkscape:label="#node_halign"> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00000036;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 1175.498,152.4972 22.999,0 0,0" + id="path5318" /> + <rect + y="1180.4969" + x="-163.9971" + height="16" + width="16" + id="rect5320" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <path + style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m 1175.497,163.4972 c 3.5,-3 1.599,-18.9753 7.5,-17.5 4,1 1,17 8.5,17.5 5.488,0.3658 2.5,-17 6.5,-23" + id="path5322" + sodipodi:nodetypes="cssc" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5452" + y="0" + x="0" + transform="translate(-7.9782,9.009087)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5455" + y="0" + x="0" + transform="translate(-0.9782,9.001915)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5457" + y="0" + x="0" + transform="translate(8.955592,9.001915)" /> + </g> + <g + id="distribute-vertical-node" + transform="translate(-137.02312,78.026257)" + inkscape:label="#node_vdistribute"> + <use + xlink:href="#path5465" + height="1250" + width="1250" + transform="translate(0,18)" + id="use5469" + y="0" + x="0" /> + <use + xlink:href="#path5465" + height="1250" + width="1250" + transform="translate(0,9)" + id="use5467" + y="0" + x="0" /> + <path + style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 643.5,697.5 -13,0" + id="path5465" + transform="translate(555.0237,-555.0009)" /> + <rect + y="145.5" + x="1175" + height="16" + width="16" + id="rect5334" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m 1178.5,140.5 c 5.5,3.5 13.713,2.6493 12.5,7.5 -1,4 -11.769,4.0765 -13,9 -1,4 5,1 9.5,6.5" + id="path5336" + sodipodi:nodetypes="cssc" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 1195.967,145.0749 1.532,-2 1.468,2 -0.968,0 0,4 1,0 -1.5,2 -1.5,-2 1,0 0,-4 -1.032,0 z" + id="path5344" + sodipodi:nodetypes="ccccccccccc" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5442" + y="0" + x="0" + transform="translate(-2.9763,-1.008052)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5445" + y="0" + x="0" + transform="translate(0.0236999,7.991948)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5447" + y="0" + x="0" + transform="translate(-2.9763,16.99195)" /> + <use + xlink:href="#path5344" + height="1250" + width="1250" + transform="translate(0.0246,8.92419)" + id="use5471" + y="0" + x="0" /> + </g> + <g + id="distribute-horizontal-node" + transform="translate(-103.01032,77.974192)" + inkscape:label="#node_hdistribute"> + <use + xlink:href="#path5476" + height="1250" + width="1250" + transform="translate(9,0)" + id="use5478" + y="0" + x="0" /> + <use + xlink:href="#path5476" + height="1250" + width="1250" + transform="translate(18,0)" + id="use5482" + y="0" + x="0" /> + <path + style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 1177.523,140.4996 0,13" + id="path5476" /> + <rect + y="1180.5" + x="-163.9996" + height="16" + width="16" + id="rect5356" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + transform="matrix(0,-1,1,0,0,0)" /> + <path + style="fill:none;stroke:#969696;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m 1175.499,160.4995 c 3.5,-5.5 2.65,-13.7127 7.5,-12.5 4,1 4.077,11.7692 9,13 4,1 1,-5 6.5,-9.5" + id="path5358" + sodipodi:nodetypes="cssc" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 1180.074,143.0324 -2,-1.5319 2,-1.4681 0,0.9681 4,0 0,-1 2,1.5 -2,1.5 0,-1 -4,0 0,1.0319 z" + id="path5366" + sodipodi:nodetypes="ccccccccccc" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5459" + y="0" + x="0" + transform="translate(-8.910592,12.00679)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5461" + y="0" + x="0" + transform="translate(0.0894077,8.999615)" /> + <use + xlink:href="#rect5251" + height="1250" + width="1250" + id="use5463" + y="0" + x="0" + transform="translate(9.0232,11.99962)" /> + <use + xlink:href="#path5366" + height="1250" + width="1250" + transform="translate(8.9487,-0.03275)" + id="use5484" + y="0" + x="0" /> + </g> + <g + id="distribute-randomize" + inkscape:label="#distribute_randomize" + transform="translate(-155.03707,-5.0424354)"> + <rect + y="195.0446" + x="1125.038" + height="15.9681" + width="16" + id="rect5814" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3660" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1153.039,22.37222)" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3663" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1165.03,20.37352)" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3665" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1170.039,27.37352)" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3668" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1162.03,30.37222)" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3670" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1163.03,37.37222)" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3672" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1153.03,38.37222)" /> + </g> + <g + id="distribute-unclump" + inkscape:label="#unclump" + transform="translate(-121.03693,-5.0669102)"> + <rect + y="195.0446" + x="1125.038" + height="15.9681" + width="16" + id="rect5912" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 1141.013,201.0194 -5,1.5" + id="path5975" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c80000;stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 1141.013,213.0194 -5,-3" + id="path5977" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;display:inline" + d="m 1145.513,212.0194 0,-6" + id="path5979" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#g5060" + height="1250" + width="1250" + id="use3674" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,1170.03,38.37352)" /> + <g + id="g3698" + transform="translate(6.999947,0.0231631)"> + <rect + y="197.5437" + x="1135.537" + height="6.97679" + width="6.0088992" + id="rect3680" + style="color:#000000;fill:none;stroke:url(#linearGradient3702);stroke-width:1.00000048;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="198.5437" + x="1136.537" + height="4.9738441" + width="4.016531" + id="rect3682" + style="color:#000000;fill:url(#linearGradient3704);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3706);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="g3728" + transform="translate(-0.0110398,-7.976791)"> + <rect + y="210.5437" + x="1125.548" + height="6.97679" + width="8.9883881" + id="rect3710" + style="color:#000000;fill:none;stroke:url(#linearGradient3732);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="211.5437" + x="1126.557" + height="4.9738441" + width="6.9608388" + id="rect3712" + style="color:#000000;fill:url(#linearGradient3734);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient3736);stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + </g> + <g + id="xml-node-delete" + inkscape:label="#delete_xml_node" + transform="translate(132.01118,21.031297)"> + <use + xlink:href="#g5715" + height="1250" + width="1250" + id="use5729" + y="0" + x="0" + transform="translate(0.0067,-0.0161)" /> + <use + xlink:href="#g5707" + height="1250" + width="1250" + id="use5744" + y="0" + x="0" + transform="translate(0.0067,-0.0161)" /> + <use + xlink:href="#g5719" + height="1250" + width="1250" + id="use5763" + y="0" + x="0" + transform="translate(0.0067,-0.0161)" /> + <use + xlink:href="#g5771" + height="1250" + width="1250" + id="use7401" + y="0" + x="0" + transform="translate(-56.9523,-150.977)" /> + </g> + <g + id="xml-element-new" + transform="translate(72.017883,21.015197)" + inkscape:label="#add_xml_element_node"> + <g + id="g5715"> + <path + sodipodi:nodetypes="cccccccc" + id="path5401" + d="m 923,6 1,0 0,21 -2,2 -21,0 0,-1 22,0 0,-22 z" + style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" /> + <rect + style="color:#000000;fill:url(#linearGradient5826);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5403" + width="22.038759" + height="22.03599" + x="900.48212" + y="5.4848032" /> + </g> + <g + id="g5707"> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 909.5,11 0,5" + id="path5405" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 912.5,11.97746 c 1,-0.5 3,-1 3,1 0,1 0,2 0,3" + id="path5407" + sodipodi:nodetypes="csc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 917.5,7.470786 c 0,3.500004 0,6.000004 0,7.000004 0,1.15244 1,1 2,1" + id="path5410" + sodipodi:nodetypes="csc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 909.5,11.97746 c 1,-0.5 3,-1 3,1 0,1 0,2 0,3" + id="path5412" + sodipodi:nodetypes="csc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 903,10.97079 5,5" + id="path5414" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 908,10.97079 -5,5" + id="path5416" /> + </g> + <g + id="g5719"> + <path + id="path5418" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 906.5,24.5 -3,-3 3,-3 m 3,6 3,-3 -3,-3" /> + </g> + <g + id="g5684"> + <path + sodipodi:nodetypes="ccccc" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5828);stroke-width:0.99999982px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 914.5068,19.4991 8.9409,0 0,8.94182 -8.9409,0 0,-8.94182 z" + id="path5430" /> + <path + sodipodi:nodetypes="cc" + id="path5424" + d="m 919.0067,20.9991 0,6" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cc" + id="path5426" + d="m 922.0067,23.9991 -6,0" + style="fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + </g> + <g + id="xml-text-new" + transform="translate(101.99324,21.0009)" + inkscape:label="#add_xml_text_node"> + <use + xlink:href="#g5715" + height="1250" + width="1250" + id="use5723" + y="0" + x="0" + transform="translate(0.0246443,0.0142967)" /> + <path + id="path5438" + d="m 906.4821,10.47669 c -0.008,2.01618 0,3.00811 0,3.50811 0,0.51492 0.5,0.50406 1,0.50812" + style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="csc" /> + <path + sodipodi:nodetypes="csssssc" + id="path5442" + d="m 909.4821,7.484803 c 0,3.499997 0,4.999997 0,5.999997 0,0.5 0,1 0.5,1 0.8427,0 2,0 2.5,0 0.5,0 1,0 1,-2 0,-2 -0.5,-2 -1,-2 -0.5,0 -1,0 -3,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cssssc" + id="path5464" + d="m 919.5148,11.45983 c -0.0327,-0.97503 -0.5327,-0.97503 -1.0327,-0.97503 -0.4521,0 -1.5,0 -2,0 -0.5,0 -1,0 -1,2 0,2 0.5,2 1,2 0.5,0 2,0 3,-0.0069" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="csssc" + id="path5466" + d="m 906.4821,10.4848 c -0.5,0 -3,0 -3,0 -0.5,0 -1,0 -1,2 0,2 0.4884,2.01814 1,2 0.4884,-0.01731 2,0 3,0.0098" + style="fill:none;stroke:#000000;stroke-width:0.99999982;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <use + xlink:href="#g5684" + height="1250" + width="1250" + id="use5694" + y="0" + x="0" + transform="translate(-1.000894e-4,0)" /> + <use + xlink:href="#g5719" + height="1250" + width="1250" + id="use5760" + y="0" + x="0" + transform="translate(0.0067,-9e-4)" /> + </g> + <g + id="xml-node-duplicate" + transform="translate(161.5,21.008273)" + inkscape:label="#duplicate_xml_node"> + <path + style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" + d="m 916.5,5.984803 1,0 0,13.999997 -2,2 -14,0 0,-1 15,0 0,-14.999997 z" + id="path5508" + sodipodi:nodetypes="cccccccc" /> + <rect + y="5.4917269" + x="901" + height="14.99308" + width="15.03714" + id="rect5504" + style="opacity:0.59999988;color:#000000;fill:url(#linearGradient5506);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:#000000;fill-opacity:0.17867438;fill-rule:evenodd;stroke:none" + d="m 922.5,11.9848 1,0 0,15 -2,2 -15,0 0,-1 16,0 0,-16 z" + id="path5470" + sodipodi:nodetypes="cccccccc" /> + <rect + y="11.51622" + x="906.03052" + height="15.93487" + width="15.95595" + id="rect5472" + style="color:#000000;fill:url(#linearGradient5494);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <use + xlink:href="#g5719" + height="1250" + width="1250" + id="use5765" + y="0" + x="0" + transform="translate(4.5246,-5.0161)" /> + <use + xlink:href="#g5684" + height="1250" + width="1250" + id="use5768" + y="0" + x="0" + transform="translate(-0.4822,-0.0151991)" /> + </g> + <g + id="xml-attribute-delete" + inkscape:label="#delete_xml_attribute" + transform="translate(192.01118,21.031297)"> + <use + xlink:href="#g5715" + height="1250" + width="1250" + id="use5739" + y="0" + x="0" + transform="translate(0.0067,-0.0161)" /> + <rect + style="opacity:0.31671549;color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5560" + width="6.9850459" + height="2.1097219" + x="910.57129" + y="20.502451" /> + <path + style="opacity:0.31671549;fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 904.5,21.50244 5.1429,0" + id="path5554" /> + <path + style="opacity:0.31671549;fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 904.5,18.43078 0,2.14733" + id="path5562" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#g5771" + height="1250" + width="1250" + id="use5783" + y="0" + x="0" + transform="translate(-56.9523,-150.977)" /> + <path + id="rect5540" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999821;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 903.4995,7.482439 1.9844,0 0,2.012415 -1.9844,0 0,-2.012415 z m 1.0718,2.502366 0,7.415045 m 0,-3.89741 6,0 m 0.0149,-1.01764 6.9851,0 0,2.03528 -6.9851,0 0,-2.03528 z m -6.0795,4.9991 6,0 m 0,-1.03528 6.9851,0 0,2.03528 -6.9851,0 0,-2.03528 z" /> + </g> + <g + id="edit-paste-in-place" + inkscape:label="#selection_paste_in_place" + transform="translate(-429.9517,-29.93562)"> + <g + transform="translate(-0.0483,-0.054332)" + id="g6202"> + <rect + rx="0.88388348" + ry="0.88388348" + style="color:#000000;fill:url(#linearGradient5687);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6204" + width="12" + height="13.99545" + x="485.5" + y="76.504547" /> + <path + id="path6207" + d="m 486.4517,89.43563 0,-12 10,0" + style="fill:none;stroke:#e6bc00;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="csssc" + id="path6209" + d="m 495,79 c 0,1.10678 -1.6161,0.5 -3,0.5 -1.3839,0 -3,0.60678 -3,-0.5 0,-1.10678 1.6131,-3.51004 2.997,-3.51004 1.3838,0 3.003,2.40326 3.003,3.51004 z" + style="color:#000000;fill:url(#linearGradient5689);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.9999994;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path6211" + d="m 494.0715,77.5 -2.1429,0" + style="fill:none;stroke:#000000;stroke-width:1.00000012px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <rect + y="81.427872" + x="490.5" + height="9.0077372" + width="10" + id="rect5705" + style="color:#000000;fill:url(#linearGradient5761);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5598);stroke-width:0.99999988;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + ry="0.97227168" + rx="0.9722718" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 495,108 -1,0 0,-1 -1,0 0,-1 2,0 -0.0483,-3.0543 1,0 L 496,106 l 2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,-1 z" + id="path5745" + transform="translate(0,-20.01004)" + sodipodi:nodetypes="ccccccccccccccccc" /> + </g> + <g + id="edit-paste-style" + inkscape:label="#selection_paste_style" + transform="translate(-429.9489,-9.94566)"> + <use + xlink:href="#g6202" + height="1250" + width="1250" + id="use6217" + y="0" + x="0" + transform="translate(0,-4.298023e-6)" /> + <rect + y="80.491547" + x="490.45401" + height="9.9440575" + width="9.9948826" + id="rect6220" + style="color:#000000;fill:none;stroke:url(#linearGradient6224);stroke-width:0.99999988;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="81.435631" + x="491.4559" + height="7.9956861" + width="7.9959192" + id="rect6222" + style="color:#000000;fill:url(#linearGradient6226);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6228);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="help-keyborad-shortcuts" + inkscape:label="#help_keys" + transform="translate(-209.9825,-0.409827)"> + <path + style="fill:none;stroke:url(#linearGradient4736);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 540.4854,35.90983 3,0 0,5 -3,0" + id="path4652" /> + <path + style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 546.4854,38.90983 0,-2 9,0" + id="path4666" /> + <path + style="fill:none;stroke:url(#linearGradient4738);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 555.4854,35.90983 -10,0 0,5 10,0" + id="path4662" /> + <path + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 540.4854,39.90983 2,0 0,-2" + id="path4654" /> + <use + xlink:href="#g4625" + height="1250" + width="1250" + transform="translate(6.997002,-0.005239)" + id="use4630" + y="0" + x="0" /> + <rect + style="color:#000000;fill:url(#linearGradient4740);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" + id="rect5937" + width="9" + height="2" + x="546.98541" + y="37.409828" /> + <rect + style="color:#000000;fill:url(#linearGradient4742);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.0000006;marker:none;display:inline" + id="rect5943" + width="2" + height="2" + x="539.98541" + y="37.409828" /> + <g + id="g4625" + transform="translate(0.005938,0.510486)"> + <rect + y="28.394091" + x="540.47662" + height="5.0104852" + width="5.0059562" + id="rect6038" + style="color:#000000;fill:url(#linearGradient5682);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5685);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path4611" + d="m 541.4795,32.39934 3,0 0,-2" + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 544.4795,29.39934 -3,0 0,2" + id="path4613" /> + </g> + <path + style="fill:none;stroke:#c80000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 541.4854,37.90983 8,0 0,-6" + id="path4632" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 540.4854,26.90983 2,0 0,-1" + id="path4634" /> + <path + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 540.4854,25.90983 1,0" + id="path4636" /> + <path + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 545.4854,25.90983 3,0" + id="path4640" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 544.4854,25.90983 0,1 5,0 0,-1" + id="path4642" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 551.4854,25.90983 0,1 4,0" + id="path4644" /> + <use + xlink:href="#path4640" + height="1250" + width="1250" + transform="translate(7,0)" + id="use4648" + y="0" + x="0" /> + <path + style="fill:none;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 540.4854,36.90983 2,0" + id="path4650" /> + <path + style="fill:none;stroke:url(#linearGradient4748);stroke-width:1px;stroke-linecap:square;stroke-linejoin:round;stroke-opacity:1" + d="m 555.4854,28.90983 -1,0 0,5 1,0" + id="path4656" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#dcdcdc;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 555.4854,29.90983 0,2" + id="path4658" /> + <path + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 555.4854,32.40983 0,1" + id="path4660" /> + <path + style="fill:none;stroke:#aaaaaa;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 546.4854,39.90983 9,0" + id="path4664" /> + </g> + <g + id="help-contents" + inkscape:label="#help_tutorials" + transform="translate(-234.959,20.03912)"> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.98227698;marker:none;display:inline" + id="rect5530" + width="16" + height="16" + x="385" + y="30" + transform="translate(180,-5)" /> + <path + style="color:#000000;fill:url(#linearGradient6204);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6255);stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 565.5118,28.50002 13.9764,0 0,5.97466 0,5.97467 L 567.5,40.5 c -1,0 -2,-1 -2,-2 l 0.0118,-9.99998 z" + id="rect6181" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="ccccc" + id="path6187" + d="m 578.5,25.5 -11,0 c -1,0 -2.5,1.5 -1.5,3 l 13.5,0 c -1.5,-1 -1.5,-2 -1,-3 z" + style="fill:url(#linearGradient6220);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6263);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + style="fill:#e1ff7d;fill-opacity:1;fill-rule:evenodd;stroke:#e2fda4;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 567.5,30 0,9" + id="path6200" /> + <path + style="fill:#49850a;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 578,29 1,0 0,11 -12,0 0,-1 11,0 0,-10 z" + id="path6324" /> + <path + style="fill:#e1ff7d;fill-opacity:1;fill-rule:evenodd;stroke:#c0e383;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 568.5,29.5 9,0" + id="path6334" /> + <path + style="fill:url(#linearGradient6330);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 568,27 0,10 1,0 0,-1 2,0 0,1 1,0 0,-10 -3,0 0,1 2,0 0,7 -2,0 0,-8 -1,0 z" + id="path6265" + sodipodi:nodetypes="ccccccccccccccc" /> + <path + style="fill:url(#linearGradient6332);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 569,28 0,7 2,0 0,-7 -2,0 z" + id="path6267" + sodipodi:nodetypes="ccccc" /> + </g> + <g + id="draw-calligraphic" + transform="translate(440,196)" + inkscape:label="#draw_calligraphic"> + <rect + y="99" + x="10" + height="24" + width="24" + id="rect12294" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:url(#linearGradient5856);fill-opacity:1;stroke-width:1pt" + d="m 450,295 0,0.5 c 8,2.1875 -2.1665,15.6417 4.5,21 4.1531,3.3381 10.6496,2.8504 13.5,0 1,-1 3,-2 5.7187,-0.9375 l 0,-0.2188 C 472,312.5 469,313 467.5,315 c -1.8974,2.5298 -7.5,5.5 -10.5,1 -4,-6 11.5,-21 -7,-21 z" + transform="translate(-440,-196)" + id="path12296" + sodipodi:nodetypes="ccssccssc" /> + <g + id="g15748"> + <path + sodipodi:nodetypes="ccccccc" + id="path12332" + d="m 20.50599,109.5 0,10 2,0 c 2,-3 4,-5 7,-7 l 0,-6 -6,-1 -3,4 z" + style="fill:url(#linearGradient14646);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccccccc" + id="path13072" + d="M 22,117.8669 24.00599,112 c 0,0 1,0 1,0 l 0,-2 -2,0 0,2 -1.33362,5.8646 0.32763,0.002 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + id="path13820" + d="m 25.29308,99.5 -1.78709,6 7.06221,1.7811 c 0.70614,-0.3233 1.01874,-1.3214 0.93779,-2.3194 L 33.5,101.6184" + style="color:#000000;fill:url(#linearGradient14650);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient14652);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + id="path14610" + d="m 31.33134,104.9438 -5,-1" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + id="path14612" + d="m 30.48686,106.7926 c 0.48725,-0.2332 0.63717,-0.8036 0.61843,-1.3741 l -5.17231,-1.0434 -0.67465,1.0529 5.22853,1.3646 z" + style="fill:url(#linearGradient14654);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + sodipodi:nodetypes="cc" + id="path14622" + d="M 24.92101,104.2064 26.2141,99.98988" + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="ccccc" + id="path14656" + d="m 33.45251,103.4948 -0.96448,1.5471 c 0.04303,1.3375 -0.47615,2.8999 -1.89485,3.0005 l 0.0083,4.9298 c -3.08937,1.587 -5.39164,4.186 -7.30037,6.9536" + style="fill:none;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:0.24495682;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cccccccc" + id="path16152" + d="M 21.03975,117 21,109.725 l 2.66352,-3.5381 3.8959,0.9541 -0.67582,1.1926 -2.54426,-0.1193 -1.9082,1.8287 -1.39139,6.957 z" + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> + <g + id="draw-connector" + transform="translate(444.9917,149.9903)" + inkscape:label="#draw_connector"> + <path + id="path5856" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 11.5083,213.51 -2,6.892 m 10,-11.892 5,4 0,8 m -10.9291,-6.002 7.9986,0 0,5.002 -7.9986,0 0,-5.002 z" + sodipodi:nodetypes="cccccccccc" /> + <path + style="fill:#ce0000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 24.0083,221.0097 1,0 -1,0 z" + id="path5854" + sodipodi:nodetypes="ccc" /> + <rect + y="215.50999" + x="14.5775" + height="3.0037899" + width="6.00072" + id="rect5677" + style="color:#000000;fill:url(#linearGradient5694);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5679);stroke-width:1.00000095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <g + id="g5746"> + <rect + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5710" + width="7.9986801" + height="6.9991221" + x="10.5083" + y="205.5097" /> + <rect + style="color:#000000;fill:url(#linearGradient5677);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5680);stroke-width:1.00000083;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5712" + width="6.00072" + height="4.9954739" + x="11.50669" + y="206.51199" /> + </g> + <use + xlink:href="#g5746" + height="1250" + width="1250" + transform="translate(-4.99868,15.99998)" + id="use5750" + y="0" + x="0" /> + <use + xlink:href="#use5750" + height="1250" + width="1250" + transform="translate(15,8.780086e-4)" + id="use5757" + y="0" + x="0" /> + </g> + <g + id="draw-freehand" + transform="matrix(1,0,0,0.995256,377,122.5361)" + inkscape:label="#draw_freehand"> + <path + style="fill:url(#linearGradient6168);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 84.5,130.9858 3,1 5.27118,-5.8333 c -1.1209,-2.8273 -4.58031,-4.639 -8.13786,-3.1099 L 84.5,130.9858 z" + id="path6127" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 84.49792,134.0861 1.08291,0.2781 1.91917,-2.2498 c -0.27184,-0.9435 -2,-2 -2.92873,-1.0611 l -0.07335,3.0328 z" + id="path6021" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="ccccc" + id="path6019" + d="m 84.49115,123.548 c 2.12781,-1.993 6.94819,-0.9861 8.2798,2.8187 L 95.5,119.1144 c -2.5,0 -0.5,-6 -7,-6 l -4.00885,10.4336 z" + style="fill:url(#linearGradient6170);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <rect + y="113" + x="73" + height="24" + width="24" + id="rect6011" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:url(#linearGradient6189);stroke-width:1.00238049;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-dasharray:none" + d="m 74.5,114.5 c 8.7987,-1.1362 3.13297,5.1169 2.0058,6.7979 -5.34734,8.0336 0.79703,2.2021 3.79703,3.2021 1.89737,0.6325 1.00572,3.2048 0.5,4.6144 -0.53123,1.4807 -0.73153,3.537 0,5 1,2 3.57567,2.5 5,2.5 1.5,0 3.57181,-0.5306 5,-1.7138 1.53957,-1.2755 2.78578,-3.2999 3,-4.2283" + id="path6013" + sodipodi:nodetypes="csssssss" /> + <path + id="path6023" + style="fill:none;stroke:#000000;stroke-width:0.98461533;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 95.5,119.6144 -2.72906,6.7523 0,0 -6.59179,7.0164 C 84.5,135.1144 84.5,134.6144 84.50212,132.7216 L 84.49114,123.548 88.5,113.6144" + sodipodi:nodetypes="ccccccc" /> + <path + style="fill:none;stroke:url(#linearGradient6123);stroke-width:1.00238049px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 92.77094,126.3667 c -0.54138,-1.0094 -1.08275,-2.0188 -1.62412,-3.0282 -1.0546,-0.3859 -2.10919,-0.7718 -3.16379,-1.1577 -1.19908,0.2928 -2.39816,0.5856 -3.59725,0.8785" + id="path6115" + sodipodi:nodetypes="cccc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1.00238049px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 88.07236,120.9146 2.5,-6" + id="path6125" + sodipodi:nodetypes="cc" /> + </g> + <g + id="draw-path" + transform="matrix(1,0,0,0.994286,410,166.5657)" + inkscape:label="#draw_pen"> + <path + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#000000;stroke-width:1.20344317;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 54.74801,112.7209 -2.02196,5.3521 c -0.41924,1.2317 1.29973,1.89 1.73578,0.6129 l 2.07236,-5.2546" + id="path6331" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="ccccccc" + id="path6315" + d="m 53.30533,107.4469 0.79348,1.188 5.92422,2.4368 1.5611,-0.5121 1.98917,-5.534 c -2.5,0 -0.5,-6.03453 -7,-6.03453 l -3.26797,8.45583 z" + style="fill:url(#linearGradient6325);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + style="fill:url(#linearGradient5228);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5230);stroke-width:1.00286937px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 54.2095,108.7548 -0.91109,3.3199 5,1.9101 1.91507,-3.0918" + id="path5211" + sodipodi:nodetypes="cccc" /> + <path + id="path6317" + style="fill:none;stroke:#000000;stroke-width:0.9850955;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 63.5733,105.5284 -1.73917,4.3275 c -0.23117,0.7551 -1.18676,1.3635 -1.67929,1.0399 -1.81427,-1.1919 -3.78289,-2.0079 -5.98567,-2.2653 -0.42201,-0.0493 -0.90938,-1.1851 -0.71897,-1.691 l 3.1231,-7.44555" + sodipodi:nodetypes="ccsscc" /> + <rect + y="99" + x="40" + height="24" + width="24" + id="rect6268" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="ccc" + id="path6270" + d="M 44.54642,120.6114 C 57,118.612 42.20822,100.5101 42.20822,100.5101 l 11.79178,0" + style="fill:none;stroke:url(#linearGradient5436);stroke-width:1.00574684;stroke-miterlimit:4;stroke-dasharray:none" /> + <path + id="rect6272" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00286913;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 40.5625,118.5995 3.9375,0 0,4.0355 -3.9375,0 0,-4.0355 z m 4.47596,3.0298 5.46154,0 m 0,-1.0303 2.01365,0 0,2.036 -2.01365,0 0,-2.036 z" /> + <path + style="fill:none;stroke:none" + d="m 53,112.5776 4.5,2.0115 1.5,-3.0173 -4.5,-1.5086 -1.5,2.5144 z" + id="path6311" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1.00286937px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 56,106.5431 2.5,-6.0345" + id="path6321" + sodipodi:nodetypes="cc" /> + </g> + <g + transform="matrix(1,0,0,0.998006,413.96481,170.38172)" + style="display:inline" + id="object-columns" + inkscape:label="#clonetiler_per_column"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.53149599;marker:none;display:inline" + id="rect9056" + width="15.99999" + height="16.03196" + x="319.03741" + y="103.8253" /> + <g + id="g9227"> + <g + id="g9237"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5764);stroke-width:1.00100005;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect9070" + width="13.03433" + height="3.0039289" + x="105.3283" + y="320.53519" + transform="matrix(0,1,1,0,0,0)" /> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5767);stroke-width:1.00100076;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect9072" + width="11.05956" + height="1.0068099" + x="106.2927" + y="321.53751" + transform="matrix(0,1,1,0,0,0)" /> + </g> + <use + xlink:href="#g9237" + height="1250" + width="1250" + transform="translate(4.998223,3.261012e-5)" + id="use9241" + y="0" + x="0" /> + <use + xlink:href="#use9241" + height="1250" + width="1250" + transform="translate(5.00393,-0.0083534)" + id="use9243" + y="0" + x="0" /> + </g> + </g> + <g + id="clonetiler_per_row_shift" + inkscape:label="#clonetiler_per_row_shift" + transform="translate(-249.11763,-232.09451)"> + <rect + y="528" + x="982" + height="24" + width="24" + id="rect5795" + style="color:#000000;fill:none;stroke:none;stroke-width:0.53149599;marker:none;display:inline" /> + <g + transform="translate(-0.999999,-1.000121)" + id="g7285"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5816);stroke-width:1.00000226;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7247" + width="14.08517" + height="5.0011559" + x="983.5" + y="530.50012" /> + <rect + style="color:#000000;fill:url(#linearGradient5818);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5820);stroke-width:1.00000238;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7249" + width="12.00008" + height="3.0000319" + x="984.50098" + y="531.5" /> + </g> + <use + xlink:href="#g7285" + x="0" + y="0" + id="use7289" + transform="translate(4,8)" + width="1250" + height="1250" /> + <use + xlink:href="#use7289" + x="0" + y="0" + id="use7291" + transform="matrix(0.994354,0,0,1,9.567272,8)" + width="1250" + height="1250" /> + </g> + <g + id="clonetiler_per_row_scale" + inkscape:label="#clonetiler_per_row_scale" + transform="translate(-249.11763,-232.09451)"> + <use + xlink:href="#rect5795" + x="0" + y="0" + id="use7504" + transform="translate(28,0)" + width="1250" + height="1250" /> + <g + id="g7512"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5798);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7303" + width="22.997829" + height="5.9809742" + x="1010.5" + y="528.50659" /> + <rect + style="color:#000000;fill:url(#linearGradient5800);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5802);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7305" + width="20.96796" + height="3.9822741" + x="1011.52" + y="529.5177" /> + </g> + <rect + y="537.50708" + x="1012.495" + height="5.004396" + width="19.00926" + id="rect7351" + style="color:#000000;fill:none;stroke:url(#linearGradient5804);stroke-width:1.00000179;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="538.47937" + x="1013.507" + height="3.0414691" + width="16.998819" + id="rect7353" + style="color:#000000;fill:url(#linearGradient5806);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5808);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="545.56299" + x="1014.497" + height="3.961664" + width="15.00856" + id="rect7361" + style="color:#000000;fill:none;stroke:url(#linearGradient5810);stroke-width:1.00000191;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="546.49933" + x="1015.518" + height="2.0351219" + width="12.98416" + id="rect7363" + style="color:#000000;fill:url(#linearGradient5812);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5814);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="clonetiler_per_row_rotation" + inkscape:label="#clonetiler_per_row_rotation" + transform="translate(-249.11763,-232.09451)"> + <use + xlink:href="#use7504" + x="0" + y="0" + id="use7506" + transform="translate(28,0)" + width="1250" + height="1250" /> + <use + xlink:href="#g7285" + x="0" + y="0" + id="use7397" + transform="translate(60,-1.001159)" + width="1250" + height="1250" + inkscape:tile-w="15.085176" + inkscape:tile-h="6.0011586" + inkscape:tile-cx="1049.4574" + inkscape:tile-cy="530.99942" /> + <use + xlink:href="#use7397" + x="0" + y="0" + inkscape:tiled-clone-of="#use7397" + transform="matrix(0.866025,0.5,-0.5,0.866025,406.0265,-447.6297)" + id="use7497" + width="1250" + height="1250" /> + <use + xlink:href="#use7397" + x="0" + y="0" + inkscape:tiled-clone-of="#use7397" + transform="matrix(0.5,0.866025,-0.866025,0.5,984.5451,-631.4285)" + id="use7499" + width="1250" + height="1250" /> + </g> + <g + id="clonetiler_per_row_opacity" + inkscape:label="#clonetiler_per_row_opacity" + transform="translate(-249.11763,-232.09451)"> + <use + xlink:href="#use7506" + x="0" + y="0" + id="use7508" + transform="translate(28,0)" + width="1250" + height="1250" /> + <use + xlink:href="#g7512" + x="0" + y="0" + id="use7518" + transform="translate(56.00235,0.0124335)" + width="1250" + height="1250" /> + <use + xlink:href="#use7518" + x="0" + y="0" + id="use7520" + transform="translate(-0.0021659,7.980976)" + width="1250" + height="1250" + style="opacity:0.6" /> + <use + xlink:href="#use7518" + x="0" + y="0" + id="use7524" + transform="translate(-0.0021659,15.98098)" + width="1250" + height="1250" + style="opacity:0.4" /> + </g> + <g + id="clonetiler_per_row_color" + inkscape:label="#clonetiler_per_row_color" + transform="translate(-249.11763,-232.09451)"> + <rect + y="528" + x="1094.002" + height="24" + width="24" + id="rect7660" + style="color:#000000;fill:#000000;fill-opacity:0.02145918;fill-rule:evenodd;stroke:none;stroke-width:0.53149599;marker:none;display:inline" /> + <g + transform="translate(84.00452,0.0124335)" + id="g7663"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5769);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7665" + width="22.997829" + height="5.9809742" + x="1010.5" + y="528.50659" /> + <rect + style="color:#000000;fill:url(#linearGradient5771);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5773);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7667" + width="20.96796" + height="3.9822741" + x="1011.52" + y="529.5177" /> + </g> + <g + transform="translate(84.00235,7.993409)" + id="g7675"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5781);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7677" + width="22.997829" + height="5.9809742" + x="1010.5" + y="528.50659" /> + <rect + style="color:#000000;fill:url(#linearGradient5783);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5785);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7679" + width="20.96796" + height="3.9822741" + x="1011.52" + y="529.5177" /> + </g> + <g + transform="translate(84.00235,15.99341)" + id="g7687"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5792);stroke-width:1.00000203;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7689" + width="22.997829" + height="5.9809742" + x="1010.5" + y="528.50659" /> + <rect + style="color:#000000;fill:url(#linearGradient5794);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5796);stroke-width:1.00000298;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7691" + width="20.96796" + height="3.9822741" + x="1011.52" + y="529.5177" /> + </g> + </g> + <g + id="text-remove-from-path" + inkscape:label="#remove_from_path"> + <rect + y="44" + x="280" + height="16" + width="16" + id="rect8477" + style="color:#000000;fill:none;stroke-width:0.53149599;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <g + id="g12114"> + <g + id="g13610"> + <path + id="path9935" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 283.5,49.5 1.7679,-1.80656 c 0.5,-0.5 1.5,-0.5 2,0 l 1,1 c 0.5,0.5 0.5,1.5 0,2 L 286.5,52.5 l -6,-6 M 293.7061,45 c -0.2173,-0.36011 -0.8214,-0.60415 -1.2708,-0.5 l -1.9971,0.42262 c -0.5148,0.17433 -0.7976,0.85161 -0.6547,1.29675 l 0.2592,1.91231 c 0.0876,0.4703 0.8162,0.92394 1.3837,0.82963 l 1.5871,-0.28322 c 0.6641,-0.14912 1.0187,-0.68512 0.9865,-1.14375 M 285.5,53.5 c -0.1399,0.48808 -0.5893,0.89879 -1,1 l -2,-0.80656 C 281.8066,53.52383 281.1905,53.85716 281,54.5 l -0.4613,1.84525 c -0.1429,0.69344 0.0625,1.46425 0.6547,1.65475 l 1.9971,0.38394 c 0.6041,0.16961 1.2731,-0.51299 1.3095,-1.07738 0.0677,-1.05151 0.2321,-1.90973 0,-2.80656" /> + </g> + <path + sodipodi:nodetypes="cc" + id="path9203" + d="m 288.5,53.5 c 1.5,-2 4,-3 7,-3" + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <path + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 287,55 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" + id="path13657" + sodipodi:nodetypes="ccccccccccccccccc" /> + </g> + <g + id="text-put-on-path" + inkscape:label="#put_on_path"> + <use + xlink:href="#rect8477" + x="0" + y="0" + id="use13618" + transform="translate(0,21)" + width="1250" + height="1250" /> + <use + xlink:href="#g13610" + x="0" + y="0" + id="use13621" + transform="translate(0,21)" + width="1250" + height="1250" /> + <path + sodipodi:nodetypes="cc" + id="path13655" + d="m 286.5,80.5 c 0,-5 4,-9 9,-9" + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <use + xlink:href="#clonetiler_per_row_shift" + inkscape:label="#clonetiler_per_column_shift" + height="1250" + width="1250" + transform="matrix(0,1,1,0,436.97688,-408.97688)" + id="clonetiler_per_column_shift" + y="0" + x="0" /> + <use + xlink:href="#clonetiler_per_row_scale" + inkscape:label="#clonetiler_per_column_scale" + height="1250" + width="1250" + transform="matrix(0,1,1,0,464.97698,-436.97678)" + id="clonetiler_per_column_scale" + y="0" + x="0" /> + <use + xlink:href="#clonetiler_per_row_rotation" + inkscape:label="#clonetiler_per_column_rotation" + height="1250" + width="1250" + transform="matrix(0,1,1,0,492.97748,-464.97628)" + id="clonetiler_per_column_rotation" + y="0" + x="0" /> + <use + xlink:href="#clonetiler_per_row_opacity" + inkscape:label="#clonetiler_per_column_opacity" + height="1250" + width="1250" + transform="matrix(0,1,1,0,520.97688,-492.97688)" + id="clonetiler_per_column_opacity" + y="0" + x="0" /> + <use + xlink:href="#clonetiler_per_row_color" + inkscape:label="#clonetiler_per_column_color" + height="1250" + width="1250" + transform="matrix(0,1,1,0,548.97688,-520.97908)" + id="clonetiler_per_column_color" + y="0" + x="0" /> + <g + id="swatches" + transform="matrix(0,1,-1,0,208.0312,-161.0035)"> + <rect + y="13" + x="212" + height="4" + width="4" + id="rect6024" + style="color:#000000;fill:#ffbf00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="8" + x="212" + height="4" + width="4" + id="rect6029" + style="color:#000000;fill:#ff69bc;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect6033" + width="4" + height="4" + x="207" + y="8" /> + <rect + style="color:#000000;fill:#c8c8c8;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect6035" + width="3" + height="4" + x="217" + y="13" /> + <rect + style="color:#000000;fill:#f0fa00;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect6037" + width="4" + height="4" + x="212" + y="3" /> + <path + style="color:#000000;fill:#a4602b;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" + d="m 217,8 4,0 -1,4 -3,0 0,-4 z" + id="rect6045" + sodipodi:nodetypes="ccccc" /> + <rect + y="3" + x="217" + height="4" + width="4" + id="rect6048" + style="color:#000000;fill:#00c626;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="13" + x="207" + height="4" + width="4" + id="rect6050" + style="color:#000000;fill:#8ab3de;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + y="3" + x="207" + height="4" + width="4" + id="rect6009" + style="color:#000000;fill:#ff0000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + id="rect6103" + style="color:#000000;fill:none;stroke:url(#linearGradient6160);stroke-width:0.99999988;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 206.5035,2.5 0,15.03125 13.6573,0 c -0.5174,-1.44916 -1.1304,-4.30109 0.4406,-7.03125 2.014,-3.5 0,-8 0,-8 l -14.0979,0 z m 5.035,0 0,15 m 5.0349,-15 0,15 m -10.0699,-5 13.0909,0 m 1.5105,-5 -14.6014,0" + sodipodi:nodetypes="cccscccccccccc" /> + <path + style="fill:none;stroke:#bad2ec;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 210.5035,16.5312 -3,0 0,-3" + id="path6163" /> + <path + style="fill:none;stroke:#ff6565;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 210.5035,6.5312 -3,0 0,-3" + id="path6165" /> + <path + style="fill:none;stroke:#ffb5e0;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 215.5035,11.5312 -3,0 0,-3" + id="path6168" /> + <path + style="fill:none;stroke:#ffe185;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 215.5035,16.5312 -3,0 0,-3" + id="path6170" /> + <path + id="path6172" + d="m 215.5035,6.5312 -3,0 0,-3" + style="fill:none;stroke:#feffcd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:none;stroke:#5cff7c;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 220.5035,6.5312 -3,0 0,-3" + id="path6174" /> + <path + id="path6176" + d="m 219.0035,11.5312 -1.5,0 0,-3" + style="fill:none;stroke:#d28b51;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:nodetypes="ccc" + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 219.0035,16.5312 -1.5,0 0,-3" + id="path6178" /> + </g> + <g + id="paint-pattern" + transform="translate(395.00061,254)" + inkscape:label="#fill_pattern"> + <rect + inkscape:label="#ccc" + y="66" + x="671" + height="18" + width="18" + id="rect4541" + style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> + <path + style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 676.7274,66.00001 -3.2727,3.42857 4.0909,4.28572 4.0909,-4.28572 -3.2727,-3.42857 -1.6364,0 z m 4.9091,3.42857 4.0909,4.28572 3.2727,-3.42858 0,-1.71428 -2.4545,-2.57143 -1.6364,0 -3.2727,3.42857 z m 4.0909,4.28572 -4.0909,4.28571 4.0909,4.28572 3.2727,-3.42858 0,-1.71428 -3.2727,-3.42857 z m 0,8.57143 -1.6364,1.71428 3.2728,0 -1.6364,-1.71428 z m -4.0909,-4.28572 -4.0909,-4.28571 -4.0909,4.28571 4.0909,4.28572 4.0909,-4.28572 z m -4.0909,4.28572 -1.6364,1.71428 3.2727,0 -1.6363,-1.71428 z m -4.0909,-4.28572 -2.4546,-2.57143 0,5.14286 2.4546,-2.57143 z m 0,-8.57143 -2.4546,-2.57143 0,5.14286 2.4546,-2.57143 z" + id="rect4545" /> + <rect + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4381" + width="19.000811" + height="18.99999" + x="670.49939" + y="65.5" /> + </g> + <g + id="paint-swatch" + transform="translate(395.00061,282)" + inkscape:label="#fill_swatch"> + <rect + inkscape:label="#ccc" + y="66" + x="671" + height="18" + width="18" + id="rect11473" + style="color:#000000;fill:#99b6d4;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" /> + <rect + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.99999893;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect11475" + width="19.000811" + height="18.99999" + x="670.49939" + y="65.5" /> + <rect + style="fill:#000000;stroke:none;marker:none;display:inline" + id="rect4382" + width="13.000811" + height="12.99999" + x="674.49939" + y="69.5" /> + <rect + style="fill:#ffffff;stroke:none;marker:none;display:inline" + id="rect11478" + width="13.000811" + height="12.99999" + x="673.49939" + y="68.5" /> + </g> + <g + id="distribute-graph" + transform="matrix(0.173978,0,0,0.208504,867.70076,70.054562)" + inkscape:label="#graph_layout"> + <g + transform="matrix(4.416533,0,0,3.725389,-3265.91,88.05639)" + id="g3559" /> + <path + id="path3569" + d="M 1003.929,599.4599 980.8144,612.551" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path3575" + d="m 973.761,627.7789 3.5925,30.2751" + style="fill:none;stroke:#000000;stroke-width:4.04931593;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path3577" + d="m 989.9269,669.145 24.0691,1.4987" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path3579" + d="m 1029.749,663.75 14.001,-26.6238" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + id="path3581" + d="M 1041.298,620.8845 1021.547,601.25" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path14606" + d="m 1057.695,626.25 24.557,-2.368" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path3585" + d="m 1097.34,615.4889 16.597,-13.8943" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + id="path3587" + d="m 1097.34,632.5749 18.487,21.9276" + style="fill:none;stroke:#000000;stroke-width:4.125;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="cc" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15576" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807036,304.9623,206.775)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15574" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807036,270.4753,278.716)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15578" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807035,316.828,283.148)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15580" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807035,339.8194,239.9834)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15588" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807036,385.4323,235.551)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15590" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807036,414.1713,206.775)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use15592" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(2.158934,0,0,1.807036,414.1713,273.92)" /> + <use + xlink:href="#path5724" + height="1250" + width="1250" + id="use15554" + y="0" + x="0" + style="fill:#8ab3df;fill-opacity:0.58823529;stroke:#0000ff;stroke-opacity:1" + transform="matrix(1.957219,0,0,1.633125,337.4381,267.7929)" /> + </g> + <g + id="zoom-original" + inkscape:label="#g6809"> + <g + transform="matrix(0.996399,0,0,1,95.08523,-222.9354)" + id="zoom_1_to_1"> + <use + xlink:href="#g5796" + transform="matrix(1,0,0,0.997925,-0.04089,0.477615)" + x="0" + y="0" + id="use5816" + width="1250" + height="1250" /> + </g> + <path + d="m 103,29.5 1.5,0 0,6.5 m 2.5,-3.5 1,0 m 1,-3 1.5,0 0,6.5 m -3.5,-0.5 1,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3788" /> + </g> + <g + id="zoom-double-size" + inkscape:label="#g6890"> + <use + xlink:href="#zoom_1_to_1" + x="0" + y="0" + id="use6852" + width="1" + height="1" + transform="translate(2.45923e-6,40)" /> + <use + xlink:href="#path10692" + x="0" + y="0" + id="use6888" + transform="translate(-5.03664,19.999996)" + width="1250" + height="1250" /> + <path + d="m 110,69.5 1.5,0 0,6.5 m -3.5,-3.5 1,0 m -1,3 1,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + id="path3820" + sodipodi:nodetypes="ccccccc" /> + </g> + <g + id="layer-lower" + inkscape:label="#g6925"> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5788" + y="0" + x="0" + transform="translate(-820,-4)" /> + <use + xlink:href="#path5705" + height="1250" + width="1250" + id="use5764" + y="0" + x="0" + transform="translate(-820,-4.9999998)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use5782" + y="0" + x="0" + transform="translate(-820,-12)" /> + <use + xlink:href="#rect12856" + style="fill:#000000;fill-opacity:1" + height="1250" + width="1250" + id="use13581" + y="0" + x="0" + transform="translate(-819.959,-4.960871)" /> + <use + xlink:href="#path7204" + x="0" + y="0" + id="use3823" + transform="matrix(1,0,0,-1,-819.959,351)" + width="1250" + height="1250" /> + </g> + <g + transform="translate(86.436189,-187.97066)" + id="show-node-handles" + inkscape:label="#nodes_show_handles"> + <rect + style="opacity:0;color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.80000001;marker:none;visibility:visible;display:inline" + id="rect3742" + width="12" + height="12" + x="735" + y="57" + transform="translate(-64.4787,188)" /> + <path + style="color:#000000;fill:none;stroke:#909090;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 682.0213,245.5 c -3.5,0.5 -8.5,4 -8.5,8" + id="path4641" + sodipodi:nodetypes="cc" /> + <path + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 673.0213,247.5 0,6" + id="path4638" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#rect10675" + height="1250" + width="1250" + id="use3738" + y="0" + x="0" + transform="translate(703.5311,60.30166)" /> + <use + xlink:href="#use5758" + height="1250" + width="1250" + id="use4635" + y="0" + x="0" + transform="translate(704.4975,77.02417)" /> + </g> + <g + id="distribute-remove-overlaps" + inkscape:label="#g5622"> + <rect + y="190.04994" + x="1071.8922" + height="24" + width="24" + id="rect3709" + style="opacity:0.1978022;fill:none;stroke:none" /> + <g + style="display:inline" + id="use3696" + transform="matrix(0,1.043478,0.998006,0,894.31998,299.57353)"> + <rect + y="187.554" + x="-104.4881" + height="7.017632" + width="22.00094" + id="rect4586" + style="color:#000000;fill:none;stroke:url(#linearGradient5599);stroke-width:0.97992247;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="188.54761" + x="-103.6973" + height="5.0217919" + width="20.21019" + id="rect4588" + style="color:#000000;fill:url(#linearGradient5601);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5603);stroke-width:0.97992373;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + style="display:inline" + id="use3698" + transform="matrix(1.278077,0,0,2.547898,1136.8702,-277.02415)"> + <rect + y="183.485" + x="-35.49881" + height="9.0361071" + width="3.1422119" + id="rect4598" + style="color:#000000;fill:none;stroke:url(#linearGradient5605);stroke-width:0.55415398;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="-34.716339" + x="183.8775" + height="1.564824" + width="8.2432823" + id="rect4628" + style="color:#000000;fill:url(#linearGradient5607);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5610);stroke-width:0.55415452;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + transform="matrix(0,1,1,0,0,0)" /> + </g> + <use + xlink:href="#use5811" + transform="matrix(1,0,0,0.998006,1137.8846,4.3931024)" + style="display:inline" + x="0" + y="0" + id="use3703" + width="1250" + height="1250" /> + <g + id="use3706" + transform="matrix(0,1.176069,1.157927,0,849.52993,245.84383)"> + <rect + y="192.55969" + x="-38.489891" + height="5.011148" + width="10.98825" + id="rect4608" + style="color:#000000;fill:none;stroke:url(#linearGradient5614);stroke-width:0.85692638;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="193.3" + x="-37.680012" + height="3.4763751" + width="9.3634109" + id="rect4610" + style="color:#000000;fill:url(#linearGradient5616);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5618);stroke-width:0.8569259;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + </g> + <g + style="display:inline" + id="object-locked" + transform="matrix(0.75,0,0,0.71955,299.52229,-168.41639)" + inkscape:label="#width_height_lock"> + <rect + ry="0" + rx="5.3333402" + y="710.00641" + x="50" + height="15.99362" + width="16" + id="rect16900" + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <path + id="path16896" + style="fill:none;stroke:#000000;stroke-width:1.36125326px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 62.5,717.5 0,-2.6359 c 0,-3 -2.50003,-4.3641 -4.50003,-4.3641 -2,0 -4.49997,1.3641 -4.49997,4.3641 l 0,2.6359 9,0 z" + sodipodi:nodetypes="ccsccc" /> + <g + id="use5854" + transform="matrix(0.997501,7.43861e-7,-7.10133e-7,0.9975,0.167523,1.817969)"> + <path + sodipodi:nodetypes="ccccc" + id="path4841" + d="m 51.96282,724.3143 -1e-5,-8.368 12.03007,0 0,8.368 -12.03006,0 z" + style="fill:url(#linearGradient4849);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.09173131;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <use + xlink:href="#path5841" + height="1250" + width="1250" + transform="matrix(1.034059,0.0786266,-0.0088376,0.931256,4.459467,44.22347)" + id="use3754" + y="0" + x="0" + style="display:inline" /> + </g> + <g + style="display:inline" + id="object-unlocked" + transform="matrix(0.749124,0,0,0.633637,299.54333,-127.72328)" + inkscape:label="#lock_unlocked"> + <rect + ry="0" + rx="5.339582" + y="710.00641" + x="50" + height="15.99362" + width="16" + id="rect8632" + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.45145297;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 62.5,716.2876 0,-2.625 c -0.50241,-4.6537 -5.46728,-5.4081 -7.25748,-3.2231" + id="path8634" + sodipodi:nodetypes="ccc" /> + <g + transform="matrix(1.024267,-0.199097,0.200349,1.030708,-144.8304,-9.554702)" + id="g5835"> + <path + style="fill:url(#linearGradient4859);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10934103;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 52.4921,725.7923 0.39242,-9.7691 10.51742,-0.2251 -0.36298,9.9178 -10.54686,0.0764 z" + id="path5839" + sodipodi:nodetypes="ccccc" /> + <path + sodipodi:nodetypes="cccssccsc" + id="path5841" + d="M 57.96875,718.4687 C 57.14028,718.4859 56.48264,719.1715 56.5,720 l 1,1 c -0.0076,0.5409 -0.72344,1.5441 -0.25619,1.8168 0.46725,0.2727 1.04513,0.2727 1.51238,0 C 59.22344,722.5441 58.50765,721.5409 58.5,721 l 1,-1 c 0.0086,-0.4087 -0.15001,-0.8031 -0.43905,-1.0922 -0.28905,-0.289 -0.68352,-0.4476 -1.0922,-0.4391 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> + <g + style="display:inline" + id="sticky_zoom" + transform="matrix(0.483821,0,0,0.485303,274.88233,249.31868)"> + <path + transform="matrix(1.125571,0,0,1.125565,-22.76161,-20.24985)" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="159" + sodipodi:cx="179" + id="path5056" + style="color:#000000;fill:none;stroke:#9e9e9e;stroke-width:1.73595095;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.70815448;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <rect + y="150" + x="170" + height="24" + width="24" + id="rect5058" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + transform="matrix(1.075061,0,0,1.075185,-14.43475,-12.95411)" + d="m 186,159 c 0,3.86599 -3.13401,7 -7,7 -3.86599,0 -7,-3.13401 -7,-7 0,-3.86599 3.13401,-7 7,-7 3.86599,0 7,3.13401 7,7 z" + sodipodi:ry="7" + sodipodi:rx="7" + sodipodi:cy="159" + sodipodi:cx="179" + id="path5060" + style="color:#000000;fill:url(#linearGradient8492);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4819);stroke-width:1.43388128;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <path + style="fill:url(#linearGradient8494);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 172,160 c 5,-1 4,-6 9,-7 -2,-2 -5.5,-1.1667 -7,0 -1.5,1.1667 -3,5 -2,7 z" + id="path5062" + sodipodi:nodetypes="cczc" /> + <g + transform="matrix(-0.707107,0.707107,-0.732853,-0.732853,338.9611,194.4488)" + id="g5066"> + <path + style="fill:url(#linearGradient8496);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 85.625,124.8009 c 1.66667,-1 3.33333,-1 5,0 l -0.37872,-8.8418 c -1.34906,-0.6533 -2.61846,-0.4612 -4.16666,0 l -0.45462,8.8418 z" + id="path5068" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient8498);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8500);stroke-width:1.99121785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 90.62502,124.8009 -0.04238,-8.8198 c -0.84595,-1 -4.18514,-1.0458 -5.03108,-0.0458 l 0.07344,8.8656" + id="path5070" + sodipodi:nodetypes="cccc" /> + <path + style="fill:url(#linearGradient8502);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient4811);stroke-width:1.99121785;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 85.625,124.8009 0.91846,1.7806 c 1.03983,-0.2114 2.01992,-0.173 3,0 l 1.08154,-1.7806 c -0.84594,-1 -4.15406,-1 -5,0 z" + id="path5072" + sodipodi:nodetypes="ccccc" /> + </g> + </g> + <g + style="display:inline" + transform="matrix(0.823809,0,0,0.639827,-262.55399,171.12563)" + id="object-visible" + inkscape:label="#visible"> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" + id="rect6472" + width="14.52438" + height="18.612591" + x="707.14807" + y="235.935" /> + <g + id="g1661" + transform="translate(0,-0.9)"> + <path + id="path4926" + style="color:#000000;fill:url(#linearGradient12592);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10190868;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 718.3596,243.1986 c 1.0177,0.7535 1.9383,1.9048 2.7914,3.5759 -1.8334,3.5913 -3.3519,5.0981 -6.102,5.0981 -2.75,0 -5.5802,-1.8728 -7.196,-5.1815 1.8334,-3.5914 5.4431,-5.3526 8.3072,-4.6092 m -4.3843,0.3061 -1.0395,-4.0779 m -1.5179,5.9334 -1.55,-2.5302 m 7.259,0.2222 0.1148,-4.7275 m 2.4251,5.351 1.5295,-3.7884 m 0.6191,5.3042 1.6145,-1.9398" + sodipodi:nodetypes="ccscscccccccccc" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient12519);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" + id="path5671" + sodipodi:cx="63.5" + sodipodi:cy="714" + sodipodi:rx="3.5" + sodipodi:ry="4" + d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 1.932997,0 3.5,1.79086 3.5,4 z" + transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" + id="path12489" + sodipodi:cx="63.5" + sodipodi:cy="714" + sodipodi:rx="3.5" + sodipodi:ry="4" + d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 1.932997,0 3.5,1.79086 3.5,4 z" + transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" /> + </g> + </g> + <g + style="display:inline" + transform="matrix(0.823787,0,0,0.645052,-262.54008,190.27132)" + id="object-hidden" + inkscape:label="#hidden"> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" + id="rect12545" + width="14.52438" + height="18.612591" + x="707.14807" + y="235.935" /> + <g + id="g12547" + transform="translate(1.571853e-4,-2.424845)"> + <path + id="path12549" + style="color:#000000;fill:url(#linearGradient12555);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.09745145;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 719.0955,243.8639 c 0.731,0.7174 1.4121,1.671 2.0553,2.9106 -1.8636,3.5913 -3.4071,5.0981 -6.2026,5.0981 -2.7954,0 -5.0127,-2.2526 -7.3147,-5.1815 1.8637,-3.5914 4.1993,-4.6987 6.6776,-4.6987 0.4329,0 0.8512,0.0286 1.2558,0.0902 0.3858,0.0588 0.7592,0.1476 1.1212,0.2704" + sodipodi:nodetypes="ccscsss" /> + <path + id="path12562" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1.09745121;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 714.4315,249.1956 0.0759,6.8378 m 2.3915,-7.2381 1.2947,6.0595 m 1.154,-6.9908 1.7323,4.5954 m -9.0763,-3.4589 -1.6691,5.8609 m -0.6448,-7.5215 -1.9726,4.9818" /> + </g> + </g> + <g + style="display:inline" + id="object-fill" + transform="matrix(1,0,0,0.923129,277.01989,262.07499)" + inkscape:label="#properties_fill"> + <g + id="g5646" + transform="matrix(0.751537,0,0,0.749817,166.4504,10.00731)"> + <path + sodipodi:nodetypes="ccccc" + id="path11232" + d="m 669.9999,39.99979 15.8967,-9.8e-4 0.0246,17.33757 -16,-9.8e-4 0.0787,-17.33561 z" + style="color:#000000;fill:url(#linearGradient5619);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect11240" + width="16" + height="16" + x="669.9212" + y="40" /> + </g> + </g> + <g + style="display:inline" + id="object-stroke-style" + transform="matrix(0.733476,0,0,0.741921,466.34727,269.3232)" + inkscape:label="#properties_stroke"> + <path + sodipodi:nodetypes="cccccccc" + id="rect12874" + d="m 709.8429,42.69565 12.2703,10e-7 0,-2.695701 4.0901,3.369627 -4.0901,3.369633 0,-2.695707 -12.2703,-3e-6 0,-1.34785 z" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 710.5245,50.10884 1.3634,0" + id="path10529" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="use10533" + d="m 718.7054,50.10824 1.3634,0" + style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#use10533" + transform="translate(4.090113,1.758472e-7)" + height="1250" + width="1250" + id="use10535" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.35558999px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 710.5246,55.4991 15,0" + id="path10541" /> + <use + xlink:href="#path10529" + height="1250" + width="1250" + transform="translate(4.090108,2.951189e-7)" + id="use4611" + y="0" + x="0" /> + </g> + <rect + style="fill:none;stroke:url(#linearGradient5617);stroke-width:1.00000012;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;display:inline" + id="object-stroke" + width="11.02273" + height="10.97917" + x="963.5" + y="299.5" + inkscape:label="#properties_stroke_paint" /> + <g + style="display:inline" + id="dialog-rows-and-columns" + inkscape:label="#grid_arrange" + transform="matrix(0.998005,0,0,0.998427,-214.1301,105.3675)"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.69999999;marker:none;display:inline" + id="rect14409" + width="16" + height="16" + x="405" + y="220" /> + <rect + style="color:#000000;fill:#bf0000;fill-opacity:0.99423631;fill-rule:evenodd;stroke:none;stroke-width:1.00000036;marker:none;display:inline" + id="use6620" + width="1" + height="1" + x="416.96811" + y="231.97479" /> + <use + xlink:href="#g6675" + height="1250" + width="1250" + id="use6687" + y="0" + x="0" + style="display:inline" + transform="matrix(1,0,0,0.998006,447.9987,45.40201)" /> + <use + xlink:href="#g6675" + transform="matrix(1,0,0,0.998006,456.0399,53.45968)" + style="display:inline" + x="0" + y="0" + id="use3752" + width="1250" + height="1250" /> + <g + transform="matrix(1.000856,0,0,1,402.9876,14.92548)" + id="use3773" + style="display:inline"> + <rect + y="205.55811" + x="10.5083" + height="5.941895" + width="5.4917002" + id="rect3777" + style="color:#000000;fill:none;stroke:url(#linearGradient5609);stroke-width:1.00218284;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="206.5582" + x="11.50743" + height="3.941803" + width="3.4925649" + id="rect3779" + style="color:#000000;fill:url(#linearGradient5611);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5613);stroke-width:1.00218272;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <use + xlink:href="#use3773" + height="1250" + width="1250" + transform="translate(-8.065729,8.075484)" + id="use3787" + y="0" + x="0" /> + </g> + <g + style="display:inline" + id="color-management" + inkscape:label="#color_management" + transform="matrix(0.33,0,0,0.33,190,344)"> + <rect + y="0" + x="0" + width="48" + height="48" + style="fill:none;stroke:none" + id="rect8860" /> + <g + transform="matrix(1.125,0,0,1.125,4.5,-7.3125)" + id="g8862"> + <image + xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAYCAYAAAAVibZIAAANJWlDQ1BJQ0MgcHJvZmlsZQAAeNqt 12k4lO/bB/DznhnGMmYYO2Fk36LshOyJyr6lZN+GmWypVEgKkSUULQgJoUQiUf3IkpAs2YqKLKUQ yTLPC6me33H8/8+b53x13uf94rqv+zg+3+u4AAhKLlQqGQUA/gHBgZbGeiR7B0cStg+YAQ9EkAGs i1sQVdfc3Az+Yy32AgIA0C3nQqWSE0NOLve+X3rVaX5fAaGkesJ/L3ygvYMjACILABxeG/0uAOBw 3eitAYDjaDA1GADxBgAON28XdwAkHABkA60t9QGQQgDAe2301QCAd93omwEAH+rmFQyA9APQEwPc fQIAsDMA9NruHkFuAHhZAHB3D3LzB8AnAYCZvz/FHQA/BACSbtTAYAACBgDk7B0cSRuffCAOQIkX gMH0z+xoGkBlDoDk3j8zkQcAXC4AuQl/ZvOWgAAAwtUR5Km4AwAAEJweAN0IjTYvDoBNAVhLptFW cmm0tZsA6CGABrJbSGDor/+FIO0A/9fzxp5/FRoBQAEgokgB6jg6HBNOd4o+AhvFcIbRgLGR6Rzz eVwsywV8Fas3WzIxmT2F4xJnGlcadwZPIx+FP2tLlsA1wWZSiHDu1psiHWInxAskuqROSRfL9MpF bbsjP7D93I57im+VL6hUqY6qJ2rUaI5rpWo/1pnSTdd7qv/FMNOoyXjO5MaeVtPFvbn7Xu7vNO+0 6LJctS6y6bHtteuz73fEHLjrNHRw+NCI89vD71xxbg/dP3h89Bz3mvD+5DPpx0l+4v854Atllvr1 yLfAuaCF4IWQ76GLR5fCfhxbPv7zxGr46sm101IRPVHIGVQ0+iwmhu4c/XlsLEMcYzzTBeYEXCLL RXwSIZk1hS2VeIk9jSOdM4PrMvcVnkzeLL6r/Ne2XBe4IZgtlEPKFb65NU8kX7RA7JZEocRtySKp Yuni6RLyHdlSuTL5coW72+9tr9hxX6lSuUqlavFBaLXqQ7UajVrNRzvrdj7Werxef7pB58mup7rP 9P7Rb8Q0RjcZPjdqNm4xaTVpY2qLf2HabvZyXwe+42KneZfFK8tuYnfKa6se616bPq6+jH67N/YD joN8g1lDTsNOIwffCr698c559PCY8Fjue9cPbh/dx8XGCyY8P3lNek9JTRVN+874fSZ/kftSOhvw lfKNOrd97t584ELQ9+BF5cWqpdAfYcvHfh5b0VipXT2xFr6utf6YRgNARFB41Fd0G6aYLpU+HOvF YM2oz6TELIGTYOHBcxN4WHnYOIni7JIcapxmXIe4g3gSecv42vgnBdgFVYS8SJeFn4sgolpiR8Tv SsxKSUqTZWrl0Nt05ZMVRndIKcYo9alIq1LVGjW4NcN2vtDm0qHseqonqn/CoMtI0Dhsd53Jsul2 M4+9afu6zPEWxpZhVvnWr22Z7HbZH3G45th0YPag0KH9zscP57o0uk66c3roeNp7nfLO9mnwHfZb 9mcPkKEYUL2PhAcmBeUGV4Y0hw4enQpbPI4+wRZOOil7Svn0rgjTyP1RB84cjvY4S44JPhd4PiI2 Iu5MfOyFlIT4xMyLV5IykpNTrqamXEpPu5xemHHrcumVwszirLKrj649ut5440V2V053bvfN7rzB /A8FE7fGCj/eni36Vjxb8uXOXOls2XT5zN2Je6MVY/cHKruqWh40VD94WFZztTblUUSd/+MD9aYN O59IPyU+XX727p/WxvtNqc8Dm61aVFr5W2ltAy/ut8e9dOwQ6RjvrOg6+cqwG989/Dq7x7dXsXet r70/9c3BAamB+cGaoahh0xGOkZG3t98FjWqOYcZa31/6cOijxMeZ8ZqJyE97Jjknh6fypskzyjPr n1u+pMwe+Cr6deZbxVz4vPECcaH/e/4iZUn9B/rH8+XknwdWRFY+r1atRayb0LhoNAA4g4ShjqM1 0TWYk3Q6dPX0kdizDEYMjYwxTOeY43B7cG0sCfgEQiLrftYOtiRiCnsqRyqnNedrrnTudJ7LvJl8 WfxZW64KOAkMC94QyiblCOdszRG5KZonli9eIHFLslDqtrSP9JRMkWyJ3J1tpfJlCuXb7+64p1ih dF+5SqVKtUotTO2Heo1GjWbtzkdaddqntNd16nc16D7Re6r/zCDaEGPYaNRk/Hx3s0nLnlbTeDOc 2Yu97fte7u8wT7JgteiyfGXVbf3aptc23Y7Lrs++3+GN48CBLCd+p6GDw4feOr87/M4lx1XYdczt vfsHj4+eBV7iGwniO+VXTJYlz/yvFJn/nSLVx9SOLR//eWIlfPXk2qn107RIiEL9ThLseWwsQ2xL 3J545gu4BFwiy0VCEmsy2+8s4crgvszzK0u2/J0luWM33fJE8kULxG+Jb6ZJiewdudJtf2WJYqVS lfID1WrVh2o16rWajzTrdj7Wrtf+K0cMm4yeGzUbt+xuNWkzfRH6cmvHvk7zLvNXFt0ne6R7bfvs +qMG5Acdh2JGFN/GjiqPXfjgPq45kTzpM+37mTxL+Ra34Lh4cTl+zZJGA9g4+wAA6FUA0mUAbDMB rHIBYmQAJJwBuAoBzFkArNUBRScIKC0qIHu0Ns8PQIAVBGAb6IEDBEESlMMPhISYImFIIfISmUAR UMaoSFQdahWthY5EN6FXMcIYB0wB5judEd1ZujK6WXpj+hz6cSwn1glbx4BlUGeIZphm1GCkMDYw yTFFMFUz45kjmd/gOHABuE8shixnWEbxLvinBDTBkzDDasGazrrGFss2R9Qg5rOrsuezz3I4cyxx +nBWcclwPef25MHyFPGK8R7lXeC7xm/MP78lW0BUIFwQEawU8iUJkwaEL23dujVChCDSIZosZiPO Jz4mUSypL3lbSk+aTXpUpkL2nJzTNkV5nPyEwj/bc3dEKborGSvLqrCrrKqOq2Wo49UbNMo1c3Ze 0jqvfVrn6K4jumQ9H31vA29DP6MA4+DdJ0yi91w0zTK7vbd6X8v+IfNvllgrQWs1Gytbql2ifalD p+O8E89B7UOezkmHa10+uXG7G3sc8yzx4fE194sjNwagKLrUyCPPguiDTUNSwkSPUY4/Cmc66Xiq 5DQt0joaddYp5sF59tgjcV0JaYnLSc7JTanylzIzgi6/z7TKarxemi2Wc+0mdwHrrcTb+KKLdzLK BMrz7slVGlR1Vbs8/FbH/bikQe9ZcCOhqaR5T1tcu9zLrs7Q7qYeah9/f/OQ+HD/27hRnQ8l4+6f hCYHPtvOcn3tm8tccF6aWa5cOU3jodEAAAVMwA1SoAP2EAJpUA0jCBZRQJyRRKQemUdJo5xRmajX aAJ6L/oCuh3DgtmPScMM0pHofOjK6X7Q69NfpH+DFcOGYJ8xEBncGaoZmRmdGEuZMEyHmO4zMzG7 MdfjOHFUXDuLNEsCywzeDF9GYCFQCL2su1jz2PBsoWyDRCPiXXYSewr7OkcQx2dOX84pLjLXHHcw 9yLPcV6E9wIfH18Rvzp/0xbbLZMCEYK8glVCFkJTpBhhceHmrQEi3CKPRd3EcGJPxAMkhCReScZK 6UmtSdfKhMtqyS7J1W87L2+tIKwwu71+R7Kir5KBsqDyikqP6kO1a+qRGl6adju1tOS1hXWIuzC6 aN05vW/6swbThuNG88bTu7/vQZlymHHv3b5Pe/9+c0sLP8tjVlnW92xe2A7arTpwOMof2Od05OCV Q43OEy6Mrgpu3u6ZHvWeX72lfDx8M/x6/PkDbChZ1E+BkkGhwS2hAkeDwlqPi5xIDJ865XC6OVIl Kj+aeDbxHPF8ehxPfFaCcuLLJI/kn6kJaarpHy9fz/S9anNdKpsuZ+bm0/zKW1duxxS73XEqM7qr VqFUue2B3EPJWrE6yXqFJzrPdjdaPCe3HGlLbs/ueNQ10k3rFerXGnAfih+peTfznvej3kTEZOH0 hy98Xz3nri+ML0kuB6xUrSM0GgDQAysIgB44QBKUw6tN+5vuN9RjCBgHzHc6I7rMX97XsU4MQgzR DNOM1owNTHJMV5nxzJHMS7gA3CcWd7wL/j3BkzDDGsS6xhZL5CLms6uyt3I4cyxxJv02vY934Zdn c0FEsPKXZYsNyb8ch0rp/W34j+Bffl+pN2iU/7H7R+5/dvvf1HqN+vD4mv9bbejAv91GFf0t98KO P3LT6TftXlPf1JuXuum3hLgpuKJ603DtmQ3FTwY2HbdMtsW9+Kc9/WVXZ+grge6mHmpveV9Mf/NA 6JD4sN+Iwdu4UZ2xc+9dP5R8XBzv/iQ06TdlMi05g/1s+6VgNuar17fdc9LzzPNfFjq/VyymL1kv zfyIXtb7KfFzfOX0Ks/q9TW2tei1pfU8WjyNBrBxXwIAACZ9CpkSSDLTN4D/3/Inh2yugQIAnEeQ oRUAEAFA0iPAZrPXADPQBwMggRtQgAwUCAT93x1p4+3GPQ4AgJ4V4KodAED9jxMR/14z2CMsGABA n0I9Fujj5R1M0qVSyR4kfYo/NSTYI1CWZBLgtk2WtENBQRkA4H8Aw2wI2gG1XRMAAAOYSURBVDjL pdXPaxxlGMDx7zszOzuTzW72R7KbpjWx/sAeFPVQFGqKiNDWFlvMwYo/wItXxR6q5lQET968iDf/ AUOgVOwlUMREhZRaD2Ldmpgmpmm23ezs7szOr8dDZjfxV03sOzzM8MJ83ofnfV5eHMeRSWdSDvoH 5Zx/TuphXe518GXtoiC6kDyVoCJT7tS9oa/W3xZkSJBUDyZGzrTOSBiH/w99uvGGIAcE2SOIvQUL crJ9Utphe9eodiN2gQJQAgaBLKAAmLanORYcpRk57GZoN/UYGADyQDGBC4AOwJx1ideD52mGGztH U/FAgm6HS0mYpIGq9R1nw+dohnd2htpaEchtQ/PbyjGETYY+FOvWPJ+FR3B3kLFmkU/Q3Da8AAyi UybDMP3kyaHhWd8zEx7FDxt3R/dF5WRzumARGAKGMBM0x17yDDOISb81x23/OFHY/Hd0TJUTsJBg ZaACDGMzQo4R8uxjkDH2MMYoWcru1wQ/nCDs/HPGxibqACHgAwHQATpkcRnApUSTYRqMUmBvM4tW XcT65RLelWOo01+h2/1/RvfHJcBN0G4EGPgM0KGExzAuY7R4wL9DqpqGKrCoY618i1s9jjl5Ad3O bKFPqELS7HESERBhEVIkpELAKD6PxC7ZX6/DTx5c78CSwKqOfXkOd+lFzE/Po9v2JnpAWZjBKL5S INJbLSfCIMKICA+KUFm7CVeb8HMNFtqwEsKawLqOfWUWd/UU5vQ0umVhGMCjqynmPa2XqIqgP4J0 AFoAsQ9SK8KPJaiW4IYDv3uwFkJDINKwL87ivjRBeuoLDKUUh1rC/GKvnBg+2D7oHsQuuC3o1Pvo qxZgoQDLG1BzwQ+SkgHopK4u4H8ziwEwbsIni8nmd8D0IO2C3oa4Cd4GeLUUfb/lYSUP7TxIK+mS kODhEeTsBMZrJ7DSJoaI8GwF9GUhchV4YLXBbIHmQFyHoAbtVUWxkYW4e/IcgicLyHvjpCaeQuna 1u4rpRjK6BzuC5m5ZqDaYLcg1QCtDrIOwQa4EURk0MkSjN+HfPAMqSP7UUr9vfm7H688JsxcAL0J lgPGbVAbIOFmqV0leC/opN5/CPNQ9u5nX5I2evmwzkAjIrUE5iIYNVAhiB5TPh1w/+WQzHnrP0EA HMfpXQMffuRJXok8jsipdCSfv+XLrWvB7u+oLhrHsQRBJO+82ZKP3/Xk1nLQm+++W61W78ft83+d +wOuBu1qqTfJ4wAAAABJRU5ErkJggg==" + clip-path="url(#cieClip)" + width="36.599998" + height="41" + id="image2428" + x="-0.264" + y="7.3330002" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.5px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 8.36,47.76 C 7.751574,47.51528 7.222277,46.90182 6.784324,46.39273 5.608271,45.02566 4.964826,43.30281 4.38,41.63 3.446394,38.95956 2.627115,36.19922 2.114165,33.41042 1.415792,29.6135 0.6129846,25.78424 0.3959804,21.94278 0.2093634,18.63925 -0.036735,15.09899 0.67,11.99 1.021272,10.44473 2.335229,8.406245 3.57,7.98 4.66602,7.601652 6.456945,8.746987 7.698531,9.504755 9.584304,10.65569 11.33779,12.01369 12.9958,13.4917 c 4.54551,4.05204 8.81721,8.40006 13.1433,12.68228 3.05325,3.02229 6.08867,6.06284 9.1309,9.09602 -8.97,4.16333 -17.94,8.32667 -26.91,12.49 z" + id="path8865" + sodipodi:nodetypes="cssssssssscc" /> + </g> + </g> + <g + style="display:inline" + id="draw-use-tilt" + transform="matrix(1,0,0,1.066667,-203.5002,-21.01625)" + inkscape:label="#guse_tilt"> + <rect + style="fill:none;stroke:none" + id="use_tilt" + width="11" + height="10.31249" + x="691.5" + y="303.75" /> + <path + id="path4036" + style="fill:none;stroke:url(#linearGradient4610);stroke-width:0.96824569;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="M 696.7189,305.998 696,305.5938 l -4,8 10,0 0,-0.9375" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:url(#linearGradient4618);stroke-width:0.96824569;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 694.5,309.375 c 1.5,0.4688 3,2.3438 2.5,4.2188" + id="path15733" + sodipodi:nodetypes="cc" /> + </g> + <g + style="display:inline" + id="draw-use-pressure" + transform="matrix(0.941445,0,0,1.002693,-145.0319,-1.597622)" + inkscape:label="#guse_pressure"> + <rect + style="fill:none;stroke:none" + id="use_pressure" + width="11.684" + height="10.9571" + x="691.52399" + y="303.7634" /> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 691.5241,314.2513 0.006,0.4987 11.6782,-0.0161 3e-4,-3.9732 c -2.8312,1.7762 -6.9043,3.4906 -11.6842,3.4906 z" + id="path7145" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:url(#linearGradient4649);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 696.8349,303.7635 2e-5,4.9865 -3.18662,0 3.71771,3.9893 3.71769,-3.9893 -3.18659,0 -10e-6,-4.9865 -1.0622,0 z" + id="path4622" + sodipodi:nodetypes="cccccccc" /> + </g> + <use + xlink:href="#properties_fill" + height="1250" + width="1250" + transform="translate(482.0912,-121.9991)" + id="controls_fill" + y="0" + x="0" + style="display:inline" /> + <use + xlink:href="#properties_stroke_paint" + height="1250" + width="1250" + transform="translate(486.0664,-121.9791)" + id="controls_stroke" + y="0" + x="0" + style="display:inline" /> + <g + style="display:inline" + id="transform-affect-stroke" + transform="matrix(0.695835,0,0,0.741921,35.18012,-150.29)" + inkscape:label="#transform_stroke"> + <path + style="fill:none;stroke:#000000;stroke-width:2.78354359;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 670.8773,245.7 14.3712,0 0,5.3914" + id="path5760" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 670.1587,250.4175 10.0599,0 0,2.6957" + id="path5762" + sodipodi:nodetypes="ccc" /> + <g + id="g5772"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 682.3742,253.78713 0,2.69567 -2.8742,0 0,1.3479 2.8742,0 0,2.69569 4.3114,-3.36963 -4.3114,-3.36963 z" + id="path12910" + sodipodi:nodetypes="cccccccc" /> + <path + transform="translate(170,219.961)" + id="path5764" + d="m 505.9072,37.19576 1.4371,0" + style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + id="path5770" + d="m 672.3144,257.1568 1.4371,0" + style="fill:none;stroke:#000000;stroke-width:1.39177203px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + </g> + </g> + <g + style="display:inline" + id="transform-affect-rounded-corners" + transform="translate(-150,-214)" + inkscape:label="#transform_corners"> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 673.5,248.5 4,0 c 2.5,0 3.5,1 3.5,3.3" + id="path4434" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.00000036px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 673.5,245.5 5.5,0 c 3.5,0 5.5,2 5.5,5" + id="path4436" + sodipodi:nodetypes="ccc" /> + <use + xlink:href="#g5772" + height="1250" + width="1250" + transform="matrix(0.695835,0,0,0.741921,207.1801,63.71)" + id="use4586" + y="0" + x="0" /> + </g> + <g + style="display:inline" + id="transform-affect-pattern" + transform="translate(-109.9999,-213.9612)" + inkscape:label="#transform_pattern"> + <rect + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="rect4538" + width="11.00024" + height="4.999897" + x="674.99969" + y="245.9612" /> + <path + style="opacity:0.9;fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 683.8361,245.8988 -2.2263,1.6932 -2.1805,-1.6583 -2.2264,1.6933 2.2034,1.6758 -2.1804,1.6584 4.4068,0 -2.1804,-1.6584 2.2034,-1.6758 2.1804,1.6583 2.2264,-1.6933 -2.2264,-1.6932 z m 0,3.3865 -2.2034,1.6759 4.4068,0 -2.2034,-1.6759 z m -8.8366,-3.3691 0,3.3517 2.2034,-1.6759 -2.2034,-1.6758 z m 0,3.3866 0,1.6584 2.1805,0 -2.1805,-1.6584 z" + id="rect4540" /> + <use + xlink:href="#path4430" + height="1250" + width="1250" + id="use5102" + y="0" + x="0" + transform="translate(0,-1)" /> + <use + xlink:href="#g5772" + height="1250" + width="1250" + id="use4592" + y="0" + x="0" + transform="matrix(0.695835,0,0,0.741921,209.1801,63.671)" /> + </g> + <g + style="display:inline" + id="transform-affect-gradient" + transform="translate(-130,-214.961)" + inkscape:label="#transform_gradient"> + <path + style="opacity:0.9;color:#000000;fill:url(#linearGradient8709);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" + d="m 675,245.961 12,0 0,6 -12,0 0,-6 z" + id="path12993" + sodipodi:nodetypes="ccccc" /> + <path + style="opacity:0.9;color:#000000;fill:url(#linearGradient8711);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:0.69999999;marker:none;display:inline" + d="m 675,248.961 8,0 0,4 -8,0 0,-4 z" + id="path12995" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 675.5,246.461 11,0 0,5" + id="path4430" + sodipodi:nodetypes="ccc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 675.5,249.461 7,0 0,3" + id="path4432" + sodipodi:nodetypes="ccc" /> + <use + xlink:href="#g5772" + height="1250" + width="1250" + id="use4589" + y="0" + x="0" + transform="matrix(0.695835,0,0,0.741921,209.1801,64.671)" /> + </g> + <g + id="edit-undo-history" + transform="matrix(1.00075,0,0,0.99280545,-0.0412413,0.24977138)" + inkscape:label="#edit_undo_history"> + <g + transform="matrix(0.723037,0,0,0.675336,-257.1363,-6.948167)" + id="g2661"> + <path + style="fill:#fac32d;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 432.5759,60.78928 7.4384,-7.40458 0,3.70228 c 0,0 8.7686,-0.06783 8.7686,-0.06783 0,0 0,13.3074 0,13.3074 0,0 -3.2294,-0.07147 -3.2294,-0.07147 0,0 0,-6.69255 0,-6.69255 0,0 -6.9417,0 -6.9417,0 0,0 0,2.97447 0,2.97447 0,0 -6.0359,-5.74772 -6.0359,-5.74772 z" + id="path2640" /> + <path + style="fill:#efe4b6;fill-opacity:1;fill-rule:evenodd;stroke:#efe7c1;stroke-width:1.43366158;stroke-linecap:butt;stroke-linejoin:bevel;stroke-opacity:1" + d="m 432.558,61.52785 6.5857,-7.0356" + id="path2645" /> + <path + style="fill:#ca8f0b;fill-opacity:1;fill-rule:evenodd;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 442.9108,70.25823 c 2.7212,-0.09493 2.688,0.06832 2.688,0.06832 0,0 -0.0769,-6.76402 -0.0769,-6.76402 0,-1.48723 0,-1.48723 -2.0731,-1.48723 0,0 -9.7522,-0.10996 -9.7522,-0.10996 l 5.4727,5.97978 0,-3.48047 c 0,0 1.1954,0.02985 2.4359,0.02985 2.4809,0 1.3056,2.786 1.3056,5.76373 z" + id="path2642" /> + <path + id="path2647" + d="m 432.3932,60.65307 6.9304,-7.40302 0,3.64609 c 0,0 7.1663,-0.04884 9.6663,-0.04884 0,0 0.0332,0.15255 0.0332,13.47925 0,0 -4.4694,0.02076 -5.5683,0 0,0 0.003,-5.97162 0.003,-5.97162 -1.25,0 -4.1492,0 -4.1492,0 l 0.0151,3.89512 -6.9304,-7.59698 z" + style="fill:none;stroke:#000000;stroke-width:1.39714611;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <g + id="g11177" + transform="translate(-254.4684,4.926264)"> + <path + style="color:#000000;fill:url(#linearGradient5391);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5393);stroke-width:0.71197993;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path14377" + d="m 284,23 a 3,3 0 1 1 -6,0 3,3 0 1 1 6,0 z" + transform="matrix(1.331759,0,0,1.327869,-53.22381,-6.040984)" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + d="m 320.4594,22.00781 1,-1 0,4 -1,0 0,-3 z" + id="path11169" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + d="m 319.4609,24.02096 2,0 0,1 -3,0 1,-1 z" + id="path11171" /> + </g> + </g> + <g + id="g3735" + transform="matrix(0.76838,0,0,0.776759,4.51551,573.2782)" /> + <g + id="distribute-graph-directed" + inkscape:label="#directed_graph" + transform="translate(295.95653,-461.82556)"> + <path + id="path3750" + d="m 815.4504,655.5878 4.2748,6" + style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" + sodipodi:nodetypes="cc" /> + <path + id="path3752" + d="m 828.2748,655.7252 -4,5.7252" + style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" + sodipodi:nodetypes="cc" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path3762" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(0.375607,0,0,0.376774,698.833,582.9556)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path3764" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(0.375607,0,0,0.376774,690.833,572.9556)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path3766" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(0.375607,0,0,0.376774,706.833,572.9556)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#99b7d5;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.81931818;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path3787" + sodipodi:cx="328" + sodipodi:cy="215" + sodipodi:rx="5" + sodipodi:ry="5" + d="m 333,215 c 0,2.76142 -2.23858,5 -5,5 -2.76142,0 -5,-2.23858 -5,-5 0,-2.76142 2.23858,-5 5,-5 2.76142,0 5,2.23858 5,5 z" + transform="matrix(0.375607,0,0,0.376774,698.833,592.9556)" /> + <path + id="path3789" + d="m 822,666 0,4.626" + style="fill:none;stroke:#000000;stroke-width:0.78564852;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker-end:url(#Arrow1Send)" + sodipodi:nodetypes="cc" /> + </g> + <g + inkscape:label="#layers" + transform="translate(-819.959,77.03912)" + id="dialog-layers"> + <use + xlink:href="#use8059" + transform="translate(0,2.999974)" + height="1250" + width="1250" + id="use8977" + y="0" + x="0" /> + <use + xlink:href="#rect12856" + x="0" + y="0" + id="use8055" + width="1250" + height="1250" /> + <use + xlink:href="#path4802" + transform="translate(-0.0409998,-2.993605)" + x="0" + y="0" + id="use8059" + width="1250" + height="1250" /> + <use + xlink:href="#path4802" + transform="translate(-0.0410002,-5.993605)" + x="0" + y="0" + id="use8061" + width="1250" + height="1250" /> + </g> + <use + xlink:href="#rect12856" + transform="translate(-864.959,177.0391)" + x="0" + y="0" + id="use9075" + width="1250" + height="1250" /> + <g + id="edit-select-all-layers" + inkscape:label="#selection_select_all_in_all_layers"> + <path + id="path9031" + d="m 55.5,213.5 1,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9033" + transform="translate(-295.3149,-39.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9035" + transform="translate(-292.3149,-39.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9037" + transform="translate(-289.3149,-39.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9039" + transform="translate(-286.3149,-39.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9041" + transform="translate(-296.3149,-24.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9043" + transform="translate(-293.3149,-24.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9045" + transform="translate(-290.3149,-24.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9047" + transform="translate(-287.3149,-24.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6078" + x="0" + y="0" + id="use9049" + transform="translate(-284.3149,-24.1388)" + width="1250" + height="1250" /> + <path + id="path9051" + d="m 55.5,215.5 0,1" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9053" + transform="translate(-298.3149,-36.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9055" + transform="translate(-298.3149,-33.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9057" + transform="translate(-298.3149,-30.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9059" + transform="translate(-298.3149,-27.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9061" + transform="translate(-283.3149,-29.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9063" + transform="translate(-283.3149,-32.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9065" + transform="translate(-283.3149,-35.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9067" + transform="translate(-283.3149,-38.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#path6100" + x="0" + y="0" + id="use9069" + transform="translate(-283.3149,-41.1388)" + width="1250" + height="1250" /> + <use + xlink:href="#use8059" + x="0" + y="0" + id="use9073" + width="1250" + height="1250" + transform="matrix(0.752527,0,0,0.752527,-669.1784,91.05547)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use9077" + y="0" + x="0" + transform="matrix(0.752527,0,0,0.752527,-669.2092,85.8027)" /> + <use + xlink:href="#path4802" + height="1250" + width="1250" + id="use9079" + y="0" + x="0" + transform="matrix(0.752527,0,0,0.752527,-669.2092,82.8027)" /> + </g> + <g + id="dialog-messages" + transform="translate(45,111)" + inkscape:label="#messages"> + <g + id="g4239" + transform="matrix(1,0,0,0.996869,-60.05696,-76.20668)"> + <rect + style="color:#000000;fill:url(#linearGradient4249);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4241" + width="14.99917" + height="11.99987" + x="115.5577" + y="338.80829" /> + <rect + style="color:#000000;fill:url(#linearGradient4251);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4243" + width="14.99819" + height="3.011261" + x="115.5588" + y="335.7579" /> + </g> + <path + sodipodi:nodetypes="cccccccc" + id="rect5189" + d="m 57.49993,263.4998 11.00004,0 3e-5,5.0002 -2,0 -2.20349,2.9721 L 64,268.5 l -6.5,0 -7e-5,-5.0002 z" + style="color:#000000;fill:#d3d7cf;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="dialog-scripts" + inkscape:label="#scripts"> + <g + transform="matrix(1,0,0,0.996869,-15.05696,14.79332)" + id="g4209"> + <rect + y="338.80829" + x="115.5577" + height="11.99987" + width="14.99917" + id="rect4212" + style="color:#000000;fill:url(#linearGradient4218);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="335.7579" + x="115.5588" + height="3.011261" + width="14.99819" + id="rect4214" + style="color:#000000;fill:url(#linearGradient4220);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <path + style="fill:#000000;fill-opacity:1;stroke:none" + d="m 103,354 0,9 4,0 0,-2 -2,0 0,-5 2,0 0,-2 -4,0 z" + id="path5166" + sodipodi:nodetypes="ccccccccc" /> + <path + sodipodi:nodetypes="ccccccccc" + id="path5168" + d="m 113,354 0,9 -4,0 0,-2 2,0 0,-5 -2,0 0,-2 4,0 z" + style="fill:#000000;fill-opacity:1;stroke:none" /> + </g> + <g + id="dialog-icon-preview" + inkscape:label="#view_icon_preview"> + <g + transform="matrix(1,0,0,0.996869,-15.05696,54.79332)" + id="g5190"> + <rect + y="338.80829" + x="115.5577" + height="11.99987" + width="14.99917" + id="rect5192" + style="color:#000000;fill:url(#linearGradient5198);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="335.7579" + x="115.5588" + height="3.011261" + width="14.99819" + id="rect5194" + style="color:#000000;fill:url(#linearGradient5200);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + inkscape:label="#visible" + id="g5206" + transform="matrix(0.823809,0,0,0.639827,-480.5562,242.2038)" + style="display:inline"> + <rect + y="235.935" + x="707.14807" + height="18.612591" + width="14.52438" + id="rect5208" + style="color:#000000;fill:#ffffff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.83269;marker:none;display:inline" /> + <g + transform="translate(0,-0.9)" + id="g5210"> + <path + sodipodi:nodetypes="ccscscccccccccc" + d="m 718.3596,243.1986 c 1.0177,0.7535 1.9383,1.9048 2.7914,3.5759 -1.8334,3.5913 -3.3519,5.0981 -6.102,5.0981 -2.75,0 -5.5802,-1.8728 -7.196,-5.1815 1.8334,-3.5914 5.4431,-5.3526 8.3072,-4.6092 m -4.3843,0.3061 -1.0395,-4.0779 m -1.5179,5.9334 -1.55,-2.5302 m 7.259,0.2222 0.1148,-4.7275 m 2.4251,5.351 1.5295,-3.7884 m 0.6191,5.3042 1.6145,-1.9398" + style="color:#000000;fill:url(#linearGradient5218);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.10190868;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path5212" /> + <path + transform="matrix(0.842506,0,0,0.954024,661.2863,-434.5226)" + d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 1.932997,0 3.5,1.79086 3.5,4 z" + sodipodi:ry="4" + sodipodi:rx="3.5" + sodipodi:cy="714" + sodipodi:cx="63.5" + id="path5214" + style="color:#000000;fill:url(#linearGradient5220);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" + sodipodi:type="arc" /> + <path + transform="matrix(0.269046,0,0,0.308688,696.6634,24.57494)" + d="m 67,714 c 0,2.20914 -1.567003,4 -3.5,4 -1.932997,0 -3.5,-1.79086 -3.5,-4 0,-2.20914 1.567003,-4 3.5,-4 1.932997,0 3.5,1.79086 3.5,4 z" + sodipodi:ry="4" + sodipodi:rx="3.5" + sodipodi:cy="714" + sodipodi:cx="63.5" + id="path5216" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:3.02474809;marker:none;display:inline" + sodipodi:type="arc" /> + </g> + </g> + </g> + <g + id="edit-select-none" + inkscape:label="#selection_deselect"> + <use + xlink:href="#g6068" + x="0" + y="0" + id="use5235" + transform="translate(-298.3274,-16.15328)" + width="1250" + height="1250" /> + <use + xlink:href="#g10421" + x="0" + y="0" + id="use5237" + transform="translate(-299.3571,-15.18254)" + width="1250" + height="1250" /> + <path + id="path5239" + d="m 55.5,236.5 1,0" + style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path5261" + d="m 55.5,238.5 0,1" + style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5306" + transform="translate(3,0)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(6,0)" + id="use5309" + y="0" + x="0" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(9,0)" + id="use5313" + y="0" + x="0" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5311" + transform="translate(12,0)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5318" + transform="translate(0,3)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(0,6)" + id="use5321" + y="0" + x="0" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(0,9)" + id="use5323" + y="0" + x="0" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5325" + transform="translate(0,12)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(2,15)" + id="use5327" + y="0" + x="0" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5329" + transform="translate(5,15)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5331" + transform="translate(8,15)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(11,15)" + id="use5333" + y="0" + x="0" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5335" + transform="translate(14,15)" + width="1250" + height="1250" /> + <path + style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 70.5,236.5 0,1" + id="path5337" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(15,1)" + id="use5340" + y="0" + x="0" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5342" + transform="translate(15,4)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5344" + transform="translate(15,7)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(15,10)" + id="use5346" + y="0" + x="0" /> + </g> + <g + id="edit-select-invert" + transform="translate(0,-18)" + inkscape:label="#selection_invert"> + <use + xlink:href="#g10421" + height="1250" + width="1250" + transform="matrix(1.112088,0,0,1.110911,-340.6366,-0.279561)" + id="use5599" + y="0" + x="0" + style="opacity:0.5" /> + <path + style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 59.5,281.5 1,0" + id="path5378" /> + <path + style="fill:none;stroke:#cc0000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 59.5,283.5 0,1" + id="path5380" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(7,45)" + id="use5382" + y="0" + x="0" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5384" + transform="translate(10,45)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(4,48)" + id="use5390" + y="0" + x="0" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5392" + transform="translate(4,51)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + x="0" + y="0" + id="use5398" + transform="translate(6,54)" + width="1250" + height="1250" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(9,54)" + id="use5400" + y="0" + x="0" /> + <use + xlink:href="#path5239" + height="1250" + width="1250" + transform="translate(12,54)" + id="use5402" + y="0" + x="0" /> + <use + xlink:href="#path5261" + x="0" + y="0" + id="use5410" + transform="translate(13,43)" + width="1250" + height="1250" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(13,46)" + id="use5412" + y="0" + x="0" /> + <use + xlink:href="#path5261" + height="1250" + width="1250" + transform="translate(13,49)" + id="use5414" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 55.5,277.5 1,0" + id="path5523" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-295.3149,24.86123)" + id="use5525" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-292.3149,24.86123)" + id="use5527" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-289.3149,24.86123)" + id="use5529" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-286.3149,24.86123)" + id="use5531" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-296.3149,39.86123)" + id="use5533" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-293.3149,39.86123)" + id="use5535" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-290.3149,39.86123)" + id="use5537" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-287.3149,39.86123)" + id="use5539" + y="0" + x="0" /> + <use + xlink:href="#path6078" + height="1250" + width="1250" + transform="translate(-284.3149,39.86123)" + id="use5541" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 55.5,279.5 0,1" + id="path5543" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-298.3149,27.86123)" + id="use5545" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-298.3149,30.86123)" + id="use5547" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-298.3149,33.86123)" + id="use5549" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-298.3149,36.86123)" + id="use5551" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-283.3149,34.86123)" + id="use5553" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-283.3149,31.86123)" + id="use5555" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-283.3149,28.86123)" + id="use5557" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-283.3149,25.86123)" + id="use5560" + y="0" + x="0" /> + <use + xlink:href="#path6100" + height="1250" + width="1250" + transform="translate(-283.3149,22.86123)" + id="use5563" + y="0" + x="0" /> + </g> + <g + id="dialog-tile-clones" + transform="translate(-0.49998107,-21.503099)" + inkscape:label="#edit_create_tiled_clones"> + <g + id="g5745" + transform="matrix(1,0,0,0.996869,-59.55772,-28.70668)"> + <rect + style="color:#000000;fill:url(#linearGradient5944);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5747" + width="14.99917" + height="11.99987" + x="115.5577" + y="338.80829" /> + <rect + style="color:#000000;fill:url(#linearGradient5946);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5749" + width="14.99819" + height="3.011261" + x="115.5588" + y="335.7579" /> + </g> + <g + transform="matrix(0.600005,0,0,0.599717,25.61153,139.5917)" + id="g5803"> + <g + id="g5704" + transform="translate(50.5399,79.54113)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5948);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5706" + width="8.9968081" + height="7.9962969" + x="5.4601002" + y="205.4404" /> + <rect + style="color:#000000;fill:url(#linearGradient5950);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5952);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5708" + width="6.9948139" + height="5.9933238" + x="6.4601302" + y="206.4404" /> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5954);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5711" + width="11.99355" + height="11.99031" + x="8.4778118" + y="208.4686" /> + <rect + style="color:#000000;fill:url(#linearGradient5956);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5958);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5713" + width="9.9823189" + height="9.9715872" + x="9.4778109" + y="209.4688" /> + </g> + <rect + y="293.0437" + x="62.052299" + height="4.0014329" + width="5.9790282" + id="rect5715" + style="color:#000000;fill:url(#linearGradient5960);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5962);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 63.0113,291 c 0,1 0,1 0,1" + id="path5717" /> + <use + xlink:href="#path6162" + height="1250" + width="1250" + transform="translate(-293.8567,32.29639)" + id="use5721" + y="0" + x="0" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 64.0113,290 2,0" + id="path5723" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 63,295.9816 0,-2 4,0" + id="path5725" /> + </g> + </g> + <g + id="edit-select-original" + inkscape:label="#edit_select_original"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient6151);stroke-width:0.9999994;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5972" + width="11.99355" + height="11.99031" + x="58.517712" + y="309.50961" /> + <rect + style="color:#000000;fill:url(#linearGradient6146);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6148);stroke-width:1.00000036;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5974" + width="9.9823189" + height="9.9715872" + x="59.517712" + y="310.50989" /> + <rect + style="color:#000000;fill:url(#linearGradient6122);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6125);stroke-width:1.00000048;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5976" + width="5.9790282" + height="4.0014329" + x="61.552299" + y="314.5437" /> + <path + id="path5978" + d="m 62.5113,312.5 c 0,1 0,1 0,1" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#path6162" + x="0" + y="0" + id="use5981" + transform="translate(-294.3567,53.7964)" + width="1250" + height="1250" /> + <path + id="path5983" + d="m 63.5113,311.5 2,0" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" /> + <path + id="path5985" + d="m 62.5,317.4816 0,-2 4,0" + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <g + id="g6161"> + <rect + y="306.48151" + x="55.5" + height="7.9962969" + width="8.9968081" + id="rect5968" + style="color:#000000;fill:none;stroke:url(#linearGradient6159);stroke-width:0.99999958;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="307.48141" + x="56.500031" + height="5.9933238" + width="6.9948139" + id="rect5970" + style="color:#000000;fill:url(#linearGradient6154);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6156);stroke-width:1.0000006;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + </g> + <g + id="text-flow-into-frame" + transform="translate(-15.00082,-30.00001)" + inkscape:label="#flow_into_frame"> + <rect + y="118.5" + x="296.50079" + height="15.00001" + width="14.99917" + id="rect6267" + style="color:#000000;fill:url(#linearGradient6369);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <g + transform="matrix(0.5,0,0,0.5,149,70)" + id="g6352"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path6342" /> + <path + inkscape:label="#object_font" + id="path6344" + d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + style="fill:url(#linearGradient6371);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccccc" + id="path6358" + d="m 308,126 0,3 2,0 0,1 -1,0 0,1 -1,0 0,1 -1,0 0,-1 -1,0 0,-1 -1,0 0,-1 2,0 0,-3 1,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + id="text-unflow" + inkscape:label="#unflow"> + <rect + style="color:#000000;fill:none;stroke:#cc0000;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;display:inline" + id="rect6375" + width="14.99917" + height="15.00001" + x="281.5" + y="110.5" /> + <g + id="g6377" + transform="matrix(0.5,0,0,0.5,133.9992,61.99999)"> + <path + id="path6379" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + sodipodi:nodetypes="ccccccccccccccccc" /> + <path + style="fill:url(#linearGradient6436);fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + id="path6381" + inkscape:label="#object_font" /> + </g> + <path + sodipodi:nodetypes="ccccccccccccccccc" + id="path6428" + d="m 290,119 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + id="text-convert-to-regular" + inkscape:label="#convert_to_text"> + <g + transform="matrix(0.725945,0,0,0.725944,63.34671,33.14915)" + id="g15109"> + <rect + y="135.47031" + x="300.49991" + height="11.02972" + width="11.02971" + id="rect15111" + style="color:#000000;fill:url(#linearGradient15119);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.37751567;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <g + transform="matrix(0.5,0,0,0.5,153,87)" + id="g15113"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path15115" /> + <path + inkscape:label="#object_font" + id="path15117" + d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + style="fill:url(#linearGradient15121);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> + <rect + ry="0" + y="138.493" + x="288.49301" + height="8.006958" + width="8.0069637" + id="rect15125" + style="color:#000000;fill:url(#linearGradient15141);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:0;marker:none;display:inline" /> + <g + transform="matrix(0.362972,0,0,0.362972,181.4162,103.3063)" + id="g15127"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path15129" /> + <path + inkscape:label="#object_font" + id="path15131" + d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + style="fill:url(#linearGradient15135);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + </g> + <g + id="text-unkern" + inkscape:label="#remove_manual_kerns"> + <path + id="rect15156" + d="m 281.5,153.5 14.9992,0 0,15 -14.9992,0 0,-15 z" + style="color:#000000;fill:url(#linearGradient15175);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 283.5,153.9828 0,14.0172 0,-14.0172 z" + id="path15185" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:nodetypes="ccc" + id="path15187" + d="m 290.5,153.9828 0,14.0172 0,-14.0172 z" + style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#73d216;stroke-width:1.00000012;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + d="m 294.461,153.9828 0,14.0172 0,-14.0172 z" + id="path15189" + sodipodi:nodetypes="ccc" /> + <g + transform="matrix(0.5,0,0,0.5,133.9992,105)" + id="g15195"> + <path + sodipodi:nodetypes="ccccccccccccccccc" + d="m 302,115 2,-2 0,-11 -3,0 -2,2 -1,0 0,-4 16,0 0,4 -1,0 -2,-2 -3,0 0,11 2,2 0,1 -8,0 0,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path15197" /> + <path + inkscape:label="#object_font" + id="path15199" + d="m 304,115 1,-1 0,-12 2,0 0,12 1,1 -4,0 z" + style="fill:url(#linearGradient15213);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <path + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 290,162 1,0 1.5,1.5 1.5,-1.5 1,0 0,1 -1.5,1.5 1.5,1.5 0,1 -1,0 -1.5,-1.5 -1.5,1.5 -1,0 0,-1 1.5,-1.5 -1.5,-1.5 0,-1 z" + id="path15201" + sodipodi:nodetypes="ccccccccccccccccc" /> + </g> + <g + id="dialog-memory" + inkscape:label="#about_memory"> + <rect + style="color:#000000;fill:url(#linearGradient4689);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4657" + width="14.99917" + height="15.00001" + x="331.50079" + y="86.5" /> + <rect + y="94" + x="332" + height="7" + width="4.666667" + id="rect4691" + style="color:#000000;fill:url(#linearGradient4703);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" /> + <rect + style="color:#000000;fill:url(#linearGradient4707);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" + id="rect4705" + width="4.666667" + height="14.00001" + x="336.66669" + y="86.999992" /> + <rect + y="91" + x="341.33331" + height="10" + width="4.666667" + id="rect4715" + style="color:#000000;fill:url(#linearGradient4718);fill-opacity:1;fill-rule:evenodd;stroke:none;stroke-width:1.00000072;marker:none;display:inline" /> + </g> + <g + id="dialog-input-devices" + inkscape:label="#input_devices"> + <g + transform="matrix(1,0,0,0.996869,-105.0577,-206.2098)" + id="g5739"> + <rect + y="338.80829" + x="115.5577" + height="11.99987" + width="14.99917" + id="rect5741" + style="color:#000000;fill:url(#linearGradient5750);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="335.7579" + x="115.5588" + height="3.011261" + width="14.99819" + id="rect5744" + style="color:#000000;fill:url(#linearGradient5752);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + transform="matrix(1,0,0,1.066667,-679.5,-193.0001)" + id="g5768" + style="display:inline"> + <rect + y="303.75" + x="691.5" + height="10.31249" + width="11" + id="rect5771" + style="fill:none;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + d="M 696.7189,305.998 696,305.5938 l -4,8 10,0 0,-0.9375" + style="fill:none;stroke:url(#linearGradient5777);stroke-width:0.96824569;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path5773" /> + <path + sodipodi:nodetypes="cc" + id="path5775" + d="m 694.5,309.375 c 1.5,0.4688 3,2.3438 2.5,4.2188" + style="fill:none;stroke:url(#linearGradient5779);stroke-width:0.96824569;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + </g> + <g + id="document-metadata" + inkscape:label="#document_metadata"> + <g + id="g5714" + transform="matrix(1,0,0,0.996869,-105.057,-226.2067)"> + <rect + style="color:#000000;fill:url(#linearGradient5728);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156927;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5716" + width="14.99917" + height="11.99987" + x="115.5577" + y="338.80829" /> + <rect + style="color:#000000;fill:url(#linearGradient5730);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00156915;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5718" + width="14.99819" + height="3.011261" + x="115.5588" + y="335.7579" /> + </g> + <path + style="color:#000000;fill:url(#linearGradient5844);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5846);stroke-width:1.00000107;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 12.5,122.5 0,-9 7,0 4,4 0,5" + id="path5826" + sodipodi:nodetypes="ccccc" /> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5841);stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 19.5,113.5 4,4 -4,0 0,-4 z" + id="path5829" + sodipodi:nodetypes="cccc" /> + <path + sodipodi:nodetypes="cc" + style="fill:none;stroke:#c8c8c8;stroke-width:1px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 22.5,122.5 0,-4" + id="path5831" /> + </g> + <g + id="color-fill" + transform="matrix(0.78125,0,0,0.78125,451.845,442.25)" + inkscape:label="#g3340"> + <path + id="path30990" + d="M 13.0063,24.4482 30.4465,15.9086 C 31.4092,15.4372 31.0551,10.9526 28.9338,6.62049 26.8126,2.28834 23.7236,-0.25897 22.7609,0.212415 L 5.32066,8.75199" + style="fill:url(#linearGradient3352);fill-opacity:1;stroke:#000000;stroke-width:1.27999997;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + sodipodi:nodetypes="ccscc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 459.326,449.367 10.518,-5.119 c 1.234,0.647 1.542,1.015 2.233,2.513" + id="path4825" + sodipodi:nodetypes="ccc" + transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" /> + <path + style="fill:none;stroke:#000000;stroke-width:1.27999997;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="M 15.3452,14.3489 C 13.4479,-3.0346 8.35128,-2.74598 9.06756,6.76043" + id="path31979" + sodipodi:nodetypes="cs" /> + <path + sodipodi:type="arc" + style="fill:#c8c8c8;fill-opacity:1;stroke:#2e3436;stroke-width:1.13887095;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + id="path31981" + sodipodi:cx="12.875" + sodipodi:cy="14.875" + sodipodi:rx="1.3125" + sodipodi:ry="1.3125" + d="m 14.1875,14.875 c 0,0.724874 -0.587626,1.3125 -1.3125,1.3125 -0.724874,0 -1.3125,-0.587626 -1.3125,-1.3125 0,-0.724874 0.587626,-1.3125 1.3125,-1.3125 0.724874,0 1.3125,0.587626 1.3125,1.3125 z" + transform="matrix(1.12392,0,0,1.12392,0.83338,-2.58525)" /> + <path + style="color:#000000;fill:url(#radialGradient4365);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1.00000095;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 456.281,449.062 c -0.068,0.008 -0.127,0.034 -0.187,0.063 -0.961,0.465 -0.457,3.569 1.156,6.937 0.988,2.063 2.18,3.737 3.156,4.626 -0.001,0.01 10e-4,0.02 0,0.031 -0.069,0.83 -0.759,1.709 -1.028,2.5 -10.092,0.32 -8.962,4.477 0.653,4.523 18.542,0.088 18.215,-4.476 2.844,-4.554 -0.273,-0.656 -0.558,-1.324 -0.781,-2 0.727,-0.738 0.168,-3.655 -1.344,-6.813 -1.512,-3.158 -3.442,-5.424 -4.469,-5.313 z" + transform="matrix(1.28,0,0,1.28,-578.362,-566.08)" + id="path22088" + sodipodi:nodetypes="csscscsccsc" /> + </g> + <g + transform="matrix(0.941445,0,0,1.002693,-125.0319,-1.597622)" + id="draw-trace-background" + style="display:inline" + inkscape:label="#g9319"> + <rect + style="fill:url(#linearGradient9331);fill-opacity:1;stroke:none" + id="rect9329" + width="11.68417" + height="10.97046" + x="-703.20831" + y="303.77951" + transform="scale(-1,1)" /> + <rect + y="303.7634" + x="691.52399" + height="10.9571" + width="11.684" + id="rect9321" + style="fill:none;stroke:none" /> + <path + sodipodi:nodetypes="ccccc" + id="path9323" + d="m 691.5241,314.2513 0.006,0.4987 11.6782,-0.0161 3e-4,-3.9732 c -2.8312,1.7762 -6.9043,3.4906 -11.6842,3.4906 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" /> + </g> + <g + id="rectangle-make-corners-sharp" + inkscape:label="#squared_corner"> + <rect + y="120" + x="500" + height="16" + width="16" + id="rect9834" + style="opacity:0.33213004;fill:none;stroke:none" /> + <g + id="g11004"> + <path + sodipodi:nodetypes="csccc" + id="path8457" + d="m 504,122 c -0.0938,2.5 4.2036,3.3952 5,4 1,0.7593 2.5,4.0937 5,4 l 0,-8 -10,0 z" + style="color:#000000;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:none;stroke-width:2;marker:none;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0.5;marker:none;display:inline" + d="m 500,122 14,0 0,13" + id="rect8453" + sodipodi:nodetypes="ccc" /> + <path + sodipodi:nodetypes="ccc" + id="path8462" + d="m 514,130 0,-8 -10,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:2;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + </g> + <g + id="draw-ellipse" + inkscape:label="#g8245"> + <rect + y="145.03909" + x="450" + height="24" + width="24" + id="rect3417" + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> + <path + transform="matrix(0.795464,0,0,0.798577,364.99896,27.713449)" + d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" + sodipodi:ry="12" + sodipodi:rx="12" + sodipodi:cy="162" + sodipodi:cx="122" + id="draw_arc1" + style="color:#000000;fill:none;stroke:url(#linearGradient6574);stroke-width:1.25467694;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <path + transform="matrix(0.707159,0,0,0.70714,375.77206,42.487119)" + d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" + sodipodi:ry="12" + sodipodi:rx="12" + sodipodi:cy="162" + sodipodi:cx="122" + id="path5905" + style="color:#000000;fill:url(#linearGradient5907);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5915);stroke-width:1.41412926;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + sodipodi:type="arc" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" + id="rect4336" + width="24" + height="24" + x="450" + y="145" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:none;stroke:url(#linearGradient5389);stroke-width:1.25467694;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path4338" + sodipodi:cx="122" + sodipodi:cy="162" + sodipodi:rx="12" + sodipodi:ry="12" + d="m 134,162 a 12,12 0 1 1 -24,0 12,12 0 1 1 24,0 z" + transform="matrix(0.795464,0,0,0.798577,364.99896,27.67435)" /> + </g> + <g + id="draw-ellipse-whole" + style="fill:none" + inkscape:label="#reset_circle"> + <rect + y="150" + x="500" + height="16" + width="16" + id="rect4298" + style="fill:none;stroke:none" /> + <path + sodipodi:type="arc" + style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:none" + id="path4888" + sodipodi:cx="508" + sodipodi:cy="158" + sodipodi:rx="6" + sodipodi:ry="6" + d="m 514,158 a 6,6 0 1 1 -12,0 6,6 0 1 1 12,0 z" /> + <path + id="path5285" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1, 1;stroke-dashoffset:0;marker:none;display:inline" + d="m 514,158 -6,0 3,-5" + sodipodi:nodetypes="ccc" /> + <path + d="m 514,158 a 6,6 0 1 1 -12,0 6,6 0 1 1 12,0 z" + sodipodi:ry="6" + sodipodi:rx="6" + sodipodi:cy="158" + sodipodi:cx="508" + id="path5292" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + sodipodi:type="arc" /> + </g> + <g + style="fill:none" + id="draw-ellipse-segment" + transform="translate(20,0)" + inkscape:label="#circle_closed_arc"> + <rect + style="fill:none;stroke:none" + id="rect4316" + width="16" + height="16" + x="500" + y="150" /> + <path + d="m 514,158 c 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-2.14359 1.14359,-4.12435 3,-5.19615 L 508,158 z" + sodipodi:ry="6" + sodipodi:rx="6" + sodipodi:cy="158" + sodipodi:cx="508" + id="path4318" + style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + sodipodi:type="arc" + sodipodi:start="0" + sodipodi:end="4.18879" /> + </g> + <g + transform="translate(40,0)" + id="draw-ellipse-arc" + style="fill:none" + inkscape:label="#circle_open_arc"> + <rect + y="150" + x="500" + height="16" + width="16" + id="rect4326" + style="fill:none;stroke:none" /> + <path + sodipodi:end="4.18879" + sodipodi:start="0" + sodipodi:type="arc" + style="fill:#b0c5da;fill-opacity:1;fill-rule:nonzero;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + id="path4328" + sodipodi:cx="508" + sodipodi:cy="158" + sodipodi:rx="6" + sodipodi:ry="6" + d="m 514,158 c 0,3.31371 -2.68629,6 -6,6 -3.31371,0 -6,-2.68629 -6,-6 0,-2.14359 1.14359,-4.12435 3,-5.19615" + sodipodi:open="true" /> + </g> + <g + id="draw-cuboid" + inkscape:label="#draw_3dbox"> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.04928207px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" + d="m 604.0245,114.9402 -11.8372,4.5906 -0.2295,13.0505 8.886,6.1973 11.3127,-3.607 0.2294,-12.5586 -8.3614,-7.6728 z" + id="path5192" /> + <rect + y="115" + x="590" + height="24" + width="24" + id="rect4344" + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> + <path + d="m 592.431,132.3014 11.2755,-3.9307 0.2248,-12.8797 -11.2836,4.3966 -0.2167,12.4138 z" + style="fill:url(#linearGradient5190);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4628" + inkscape:box3dface="XYfront" /> + <path + d="m 592.431,132.3014 11.2755,-3.9307 7.9756,6.4087 -10.7756,3.4467 -8.4755,-5.9247 z" + style="fill:url(#linearGradient5187);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4630" + inkscape:box3dface="XZtop" /> + <path + d="m 603.7065,128.3707 7.9756,6.4087 0.2089,-11.971 -7.9597,-7.3174 -0.2248,12.8797 z" + style="fill:url(#linearGradient5184);fill-opacity:1;fill-rule:evenodd;stroke:none" + id="path4633" + inkscape:box3dface="YZleft" /> + <path + id="path5202" + d="m 603.8375,116.1429 -10.6428,4.1273 -0.2063,11.7338 7.9893,5.5718 10.1713,-3.2428 0.2064,-11.2914 -7.5179,-6.8987 z" + style="opacity:0.5;fill:none;stroke:#ffffff;stroke-width:1.06575453;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" /> + </g> + <g + id="perspective-parallel" + transform="matrix(1,0,0,1.090725,-0.3693,-12.921063)" + inkscape:label="#toggle_vp_x"> + <path + sodipodi:nodetypes="cc" + d="m 646.3693,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4997" /> + <path + sodipodi:nodetypes="cc" + d="m 653.3817,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4979" /> + </g> + <g + id="toggle_vp_y" + transform="matrix(1,0,0,1.090725,39.6307,-12.921063)"> + <path + sodipodi:nodetypes="cc" + d="m 646.3693,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4987" /> + <path + sodipodi:nodetypes="cc" + d="m 653.3817,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4989" /> + </g> + <g + id="toggle_vp_z" + transform="matrix(1,0,0,1.090725,79.6307,-12.921063)"> + <path + sodipodi:nodetypes="cc" + d="m 646.3693,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4993" /> + <path + sodipodi:nodetypes="cc" + d="m 653.3817,119.7089 0,20.4924" + style="color:#000000;fill:none;stroke:#000000;stroke-width:3.83003211;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="path4995" /> + </g> + <g + id="3dbox_three_handles" + transform="translate(0.22570801,-0.46199799)"> + <rect + y="117.462" + x="753.77429" + height="7.406888" + width="7.406888" + id="rect6683" + style="fill:#000000;fill-opacity:1;stroke:none" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect7268" + width="7.406888" + height="7.406888" + x="759.77429" + y="131.46201" /> + <rect + y="119.462" + x="767.77429" + height="7.406888" + width="7.406888" + id="rect7270" + style="fill:#000000;fill-opacity:1;stroke:none" /> + </g> + <g + id="3dbox_four_handles" + transform="translate(0.22570801,0.53800201)"> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect7277" + width="7.406888" + height="7.406888" + x="793.77429" + y="117.462" /> + <rect + y="117.462" + x="807.77429" + height="7.406888" + width="7.406888" + id="rect7279" + style="fill:#000000;fill-opacity:1;stroke:none" /> + <rect + style="fill:#000000;fill-opacity:1;stroke:none" + id="rect7281" + width="7.406888" + height="7.406888" + x="807.77429" + y="131.46201" /> + <rect + y="131.46201" + x="793.77429" + height="7.406888" + width="7.406888" + id="rect7283" + style="fill:#000000;fill-opacity:1;stroke:none" /> + </g> + <g + transform="matrix(0.9610923,0,0,0.9805424,517.7012,-120.9824)" + id="tool-tweak" + inkscape:label="#g4398"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4400" + width="24.97159" + height="24.47625" + x="-110.5099" + y="180.0235" /> + <path + style="fill:url(#linearGradient4415);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.91853738;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m -109.5169,193.9456 c 8.2165,1.6913 5.1224,-7.85 10.71653,-11.5841 1.72915,-1.1542 6.23552,-0.8058 7.60383,2.2962 1.01863,2.3092 0.57299,3.7792 -0.88086,3.3379 -1.52946,-0.4643 -1.24291,-2.3104 -3.81779,-1.813 -1.3025,0.2516 -2.0822,2.3434 -1.10913,4.6913 1.09776,2.6488 3.352,4.4227 8.9464,3.0717 l 0,9.5976 -21.45898,0 0,-9.5976 z" + id="rect4412" + sodipodi:nodetypes="cssssscccc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:0.91853738;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m -96.8577,182.6385 c -2.71067,0.552 -4.0177,3.4163 -4.8477,5.9037 -0.7259,2.2595 -1.4136,5.0237 -3.7439,6.0105 -1.0107,0.3882 -2.9612,0.5448 -4.0361,0.3826 l -0.0291,8.5583 21.4833,0.06 0,-8.5582 c -2.78224,0.4279 -5.92299,0.3649 -8.21536,-1.4697 -2.01583,-1.6882 -2.67843,-5.0914 -1.22227,-7.3482 1.45069,-1.684 4.46573,-0.982 5.41291,0.8999 0.78385,0.398 0.53026,-0.7543 0.39943,-1.2072 -0.63017,-2.1587 -3.02208,-3.4761 -5.20121,-3.2317 z" + id="path4416" + sodipodi:nodetypes="ccccccccccsc" /> + </g> + <g + transform="translate(436.9762,-119.9465)" + id="path-tweak-push" + inkscape:label="#g4416"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4418" + width="16" + height="16" + x="-45" + y="175" /> + <path + style="color:#000000;fill:url(#linearGradient4428);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" + d="m -44.25871,182.3053 c 3.11679,0.0401 2.6059,-3.4751 7.25315,-3.4309 4.64725,0.0443 3.22096,3.5317 7.16093,3.4309 l 0,4.0749 c -3.54547,0 -4.29717,-3.6915 -7.16674,-3.6953 -3.18827,-0.004 -3.78523,3.6953 -7.24734,3.6953 l 0,-4.0749 z" + id="path4426" + sodipodi:nodetypes="czccscc" /> + <path + sodipodi:nodetypes="cscczc" + id="path4444" + d="m -29.84463,186.3802 c -3.54547,0 -4.29717,-3.6915 -7.16674,-3.6953 -3.18827,-0.004 -3.78523,3.6953 -7.24734,3.6953 m 0,-4.0749 c 3.11679,0.0401 2.6059,-3.4751 7.25315,-3.4309 4.64725,0.0443 3.22096,3.5317 7.16093,3.4309" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + </g> + <g + inkscape:label="#g4416" + id="path-tweak-grow" + transform="translate(416.9762,-119.9465)"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4432" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="czccscc" + id="path4435" + d="m -44.25871,182.0349 c 3.11679,0.0401 3.76607,-3.1116 7.25315,-3.0784 3.48708,0.0331 3.22096,3.1792 7.16093,3.0784 l 0,4.0748 c -3.54547,0 -4.29717,2.8563 -7.16674,2.8526 -3.18827,-0.004 -3.78523,-2.8526 -7.24734,-2.8526 l 0,-4.0748 z" + style="color:#000000;fill:url(#linearGradient4437);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m -29.84463,186.1097 c -3.54547,0 -4.29717,2.8563 -7.16674,2.8526 -3.18827,-0.004 -3.78523,-2.8526 -7.24734,-2.8526 m 0,-4.0748 c 3.11679,0.0401 3.76607,-3.1116 7.25315,-3.0784 3.48708,0.0331 3.22096,3.1792 7.16093,3.0784" + id="path4442" + sodipodi:nodetypes="cscczc" /> + </g> + <g + transform="translate(396.9762,-119.9465)" + id="path-tweak-shrink" + inkscape:label="#g4416"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4443" + width="16" + height="16" + x="-45" + y="175" /> + <path + style="color:#000000;fill:url(#linearGradient4447);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" + d="m -29.84463,186.6535 c -3.54547,0 -4.66866,-2.3171 -7.16674,-2.3204 -2.49807,-0.003 -3.78523,2.3204 -7.24734,2.3204 l 0,-2.5541 0,-2.7501 c 3.11679,0.0401 4.21308,2.1772 7.25315,2.2062 3.04007,0.0289 3.22096,-2.1054 7.16093,-2.2062" + id="path4445" + sodipodi:nodetypes="czccczc" /> + <path + sodipodi:nodetypes="czcczc" + id="path4440" + d="m -44.25871,181.3493 c 3.11679,0.0401 4.21308,1.8832 7.25315,1.9121 3.04007,0.0289 3.22096,-1.8113 7.16093,-1.9121 m 0,5.3042 c -3.54547,0 -4.66866,-2.149 -7.16674,-2.1523 -2.49807,-0.003 -3.78523,2.1523 -7.24734,2.1523" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + </g> + <g + transform="translate(416.9762,-139.9465)" + id="path-tweak-roughen" + inkscape:label="#g4416"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4446" + width="16" + height="16" + x="-45" + y="175" /> + <path + style="color:#000000;fill:url(#linearGradient4453);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" + d="m -44.25871,180.0349 2.08042,1.5324 0.943,-1.889 0.9323,1.5968 2.85787,-3.1374 1.54512,2.182 1.09925,-1.1423 2.66542,2.4237 2.2907,-1.668 0,3.1205 0,1.0187 0,1.0187 0,1.0187 -2.22589,0.9033 -2.01263,-0.6499 2.07948,2.3704 -5.1049,-2.153 -3.14729,0.9362 0.98204,-3.1154 -2.84027,2.8292 -2.14462,-1.1208 0,-1.0187 0,-1.0187 0,-1.0187 0,-3.0187 z" + id="path4448" + sodipodi:nodetypes="ccccccccccccccccccccccccc" /> + <path + sodipodi:nodetypes="cccccccccccccccccc" + id="path4576" + d="m -29.84463,186.1097 -2.22589,0.9033 -2.01263,-0.6499 2.07948,2.3704 -5.1049,-2.153 -3.14729,0.9362 0.98204,-3.1154 -2.84027,2.8292 -2.14462,-1.1208 m 0,-6.0748 2.08042,1.5324 0.943,-1.889 0.9323,1.5968 2.85787,-3.1374 1.54512,2.182 1.09925,-1.1423 2.66542,2.4237 2.2907,-1.668" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + </g> + <g + id="document-import-ocal" + inkscape:label="#ocal_import" + transform="translate(-3.450267,2.75434)"> + <use + xlink:href="#g5113" + height="1250" + width="1250" + transform="translate(2.639605,16.28531)" + id="use4598" + y="0" + x="0" /> + <use + xlink:href="#path4685" + transform="translate(14.58777,-33.04874)" + x="0" + y="0" + id="use5366-8" + width="1250" + height="1250" /> + </g> + <g + id="document-export-ocal" + inkscape:label="#ocal_export"> + <g + id="g5113" + transform="matrix(1.121863,0,0,0.8467469,-1.696936,21.3021)"> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="2.7926421" + transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" + rx="3.259387" + y="145.0049" + x="-23.347811" + height="11.80559" + width="8.2076683" + id="rect5675" + style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.2102582;stroke-miterlimit:4;stroke-opacity:1" /> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="2.217725" + transform="matrix(0.8657253,-0.5005195,0.214431,0.9767391,0,0)" + rx="2.588382" + y="146.28799" + x="-22.55011" + height="9.3751888" + width="6.517971" + id="rect5679" + style="fill:#bf0000;fill-rule:evenodd;stroke-width:0.7941308pt" /> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="3.0324271" + rx="3.851753" + y="150.48019" + x="14.50112" + height="12.70694" + width="7.8302379" + id="rect5668" + style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.21306241;stroke-miterlimit:4;stroke-opacity:1" /> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="2.408143" + rx="3.058795" + y="151.8613" + x="15.26213" + height="10.09097" + width="6.2182322" + id="rect5670" + style="fill:#ff7f00;fill-rule:evenodd;stroke-width:0.7941308pt" /> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="2.946012" + transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" + rx="3.542479" + y="134.1788" + x="44.103321" + height="12.43601" + width="8.2538023" + id="rect5662" + style="fill:#ffffff;fill-rule:evenodd;stroke:#cccccc;stroke-width:0.21640439;stroke-miterlimit:4;stroke-opacity:1" /> + <rect + inkscape:export-ydpi="90.360001" + inkscape:export-xdpi="90.360001" + inkscape:export-filename="C:\Documents and Settings\Jon Phillips\My Documents\projects\clipart-project\clipart_web\logo\openclipartlibrary-logo-whiteBack-5colors.png" + ry="2.3395181" + transform="matrix(0.9158505,0.4015194,-0.1642153,0.9864245,0,0)" + rx="2.8131919" + y="135.5302" + x="44.905449" + height="9.8758068" + width="6.5545921" + id="rect5664" + style="fill:#f3e533;fill-opacity:1;fill-rule:evenodd;stroke-width:0.7941308pt" /> + </g> + <use + xlink:href="#path4685" + transform="translate(6.008357,-49.39594)" + x="0" + y="0" + id="use5366" + width="1250" + height="1250" /> + </g> + <g + inkscape:label="#g4416" + id="path-tweak-attract" + transform="translate(436.9762,-79.9465)"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4494" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="czccscc" + id="path4496" + d="m -44.25871,185.7795 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897 l 0,2.6007 c -3.54547,0 -4.29717,-3.4257 -7.16674,-3.4281 -3.18827,-0.003 -3.78523,3.4281 -7.24734,3.4281 l 0,-2.6007 z" + style="color:#000000;fill:url(#linearGradient4501);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m -29.84463,188.3802 c -3.54547,0 -4.29717,-3.3748 -7.16674,-3.3772 -3.18827,-0.003 -3.78523,3.3772 -7.24734,3.3772 m 0,-2.6007 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897" + id="path4499" + sodipodi:nodetypes="cscczc" /> + <path + style="color:#000000;fill:url(#linearGradient4507);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" + d="m -44.25871,180.1902 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897 l 0,-2.6007 c -3.54547,0 -4.29717,3.171 -7.16674,3.1734 -3.18827,0.003 -3.78523,-3.1734 -7.24734,-3.1734 l 0,2.6007 z" + id="path4503" + sodipodi:nodetypes="czccscc" /> + <path + sodipodi:nodetypes="cscczc" + id="path4505" + d="m -29.84463,177.5895 c -3.54547,0 -4.29717,3.2729 -7.16674,3.2753 -3.18827,0.003 -3.78523,-3.2753 -7.24734,-3.2753 m 0,2.6007 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + </g> + <g + transform="translate(416.9762,-79.9465)" + id="path-tweak-repel" + inkscape:label="#g4416"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4511" + width="16" + height="16" + x="-45" + y="175" /> + <path + style="color:#000000;fill:url(#linearGradient4521);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" + d="m -44.25871,186.1902 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897 l 0,-2.6007 c -3.54547,0 -4.29717,3.1201 -7.16674,3.1225 -3.18827,0.003 -3.78523,-3.1225 -7.24734,-3.1225 l 0,2.6007 z" + id="path4513" + sodipodi:nodetypes="czccscc" /> + <path + sodipodi:nodetypes="cscczc" + id="path4515" + d="m -29.84463,183.5895 c -3.54547,0 -4.29717,3.171 -7.16674,3.1734 -3.18827,0.003 -3.78523,-3.1734 -7.24734,-3.1734 m 0,2.6007 c 3.11679,-0.0256 2.6059,2.2179 7.25315,2.1897 4.64725,-0.0282 3.22096,-2.254 7.16093,-2.1897" + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + <path + sodipodi:nodetypes="czccscc" + id="path4517" + d="m -44.25871,179.7795 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897 l 0,2.6007 c -3.54547,0 -4.29717,-3.1201 -7.16674,-3.1225 -3.18827,-0.003 -3.78523,3.1225 -7.24734,3.1225 l 0,-2.6007 z" + style="color:#000000;fill:url(#linearGradient4523);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.61387211;marker:none;visibility:visible;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#000000;stroke-width:0.61387211;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m -29.84463,182.3802 c -3.54547,0 -4.29717,-3.1336 -7.16674,-3.136 -3.18827,-0.003 -3.78523,3.136 -7.24734,3.136 m 0,-2.6007 c 3.11679,0.0255 2.6059,-2.218 7.25315,-2.1897 4.64725,0.0282 3.22096,2.254 7.16093,2.1897" + id="path4519" + sodipodi:nodetypes="cscczc" /> + </g> + <g + inkscape:label="#g4416" + id="object-tweak-paint" + transform="translate(416.9762,-59.9465)"> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4527" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4542" + width="4.0692749" + height="4.0692749" + x="-42.993931" + y="176.8167" /> + <rect + y="176.8167" + x="34.855381" + height="4.0692749" + width="4.0692749" + id="rect4544" + style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(-1,1)" /> + <rect + style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4547" + width="4.0692749" + height="4.0692749" + x="-34.855381" + y="176.8167" /> + <rect + y="-184.95531" + x="-42.993931" + height="4.0692749" + width="4.0692749" + id="rect4549" + style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(1,-1)" /> + <rect + transform="scale(-1,-1)" + style="fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4551" + width="4.0692749" + height="4.0692749" + x="34.855381" + y="-184.95531" /> + <rect + y="-184.95531" + x="-34.855381" + height="4.0692749" + width="4.0692749" + id="rect4553" + style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(1,-1)" /> + <rect + style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4555" + width="4.0692749" + height="4.0692749" + x="-42.993931" + y="184.95531" /> + <rect + y="184.95531" + x="34.855381" + height="4.0692749" + width="4.0692749" + id="rect4557" + style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(-1,1)" /> + <rect + style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4559" + width="4.0692749" + height="4.0692749" + x="-34.855381" + y="184.95531" /> + </g> + <g + transform="translate(436.9762,-59.9465)" + id="object-tweak-jitter-color" + inkscape:label="#g4416"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4563" + width="16" + height="16" + x="-45" + y="175" /> + <rect + y="176.88519" + x="-43.134892" + height="4.0692749" + width="4.0692749" + id="rect4565" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" /> + <rect + style="fill:#4d4d4d;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4567" + width="4.0692749" + height="4.0692749" + x="-43.134892" + y="185.0237" /> + <rect + y="-189.093" + x="30.927059" + height="4.0692749" + width="4.0692749" + id="rect4569" + style="fill:#808080;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(-1,-1)" /> + <rect + style="fill:#e6e6e6;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4571" + width="4.0692749" + height="4.0692749" + x="-34.996319" + y="-180.9545" + transform="scale(1,-1)" /> + <rect + y="-185.0237" + x="34.996342" + height="4.0692749" + width="4.0692749" + id="rect4573" + style="fill:#cccccc;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(-1,-1)" /> + <rect + transform="scale(1,-1)" + style="fill:#999999;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4575" + width="4.0692749" + height="4.0692749" + x="-39.065609" + y="-180.9545" /> + <rect + y="-185.0237" + x="30.92705" + height="4.0692749" + width="4.0692749" + id="rect4577" + style="fill:#ffffff;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + transform="scale(-1,-1)" /> + <rect + style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" + id="rect4579" + width="4.0692749" + height="4.0692749" + x="-39.065609" + y="185.0237" /> + <rect + y="180.9545" + x="-43.134892" + height="4.0692749" + width="4.0692749" + id="rect4581" + style="fill:#b3b3b3;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline" /> + </g> + <g + id="path-effect-parameter-next" + inkscape:label="#g10193" + transform="translate(15.99998,0)"> + <path + style="fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#4d4d4d;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-opacity:1" + d="m 761.92919,60.211353 c -0.34137,1.181505 -0.43463,2.172145 -0.42806,2.998425 0.007,0.82628 0.11557,1.488452 0.25528,2.011309 0.27942,1.045712 0.6632,1.540336 1.03579,1.621393 0.37259,0.08106 1.26622,-0.146123 2.15134,-0.440605 0.44256,-0.147241 0.88196,-0.310622 1.2525,-0.483273 0.37053,-0.172651 0.67107,-0.353659 0.85194,-0.575066 -0.64166,-0.700554 -1.60046,-1.299365 -2.62089,-1.996553 -0.51021,-0.348594 -1.03107,-0.727445 -1.48389,-1.216759 -0.45282,-0.489313 -0.84235,-1.090327 -1.01401,-1.918871 z m 2.52868,-1.193129 c -0.24495,0.778674 -0.14818,1.654459 0.24207,2.343932 0.33139,0.587602 0.85722,1.030457 1.46236,1.31726 0.53411,0.247468 1.11807,0.367145 1.75106,0.35988 -0.69504,-0.419477 -1.3004,-0.819403 -1.78874,-1.228209 -0.48834,-0.408806 -0.85785,-0.82592 -1.11375,-1.221298 -0.5118,-0.790756 -0.55663,-1.489548 -0.553,-1.571565 z m 2.79833,-1.033603 c -0.47824,1.01311 -0.3614,1.724716 0.0107,2.196488 0.3721,0.471771 0.99966,0.729498 1.72325,0.914593 -0.65709,-0.511053 -1.14489,-1.245517 -1.42499,-1.889588 -0.2801,-0.644071 -0.35119,-1.190528 -0.30896,-1.221493 z m 3.52583,-2.202592 c -0.57651,0.331771 -0.5058,1.381683 -0.77803,1.762893 -0.52604,0.736629 -1.06252,0.846662 -0.78009,1.43544 0.36643,0.763924 0.52535,0.378151 1.51603,0.473729 0.30917,0.02983 1.22686,0.974506 1.5502,0.916275 -0.98094,-1.540314 -1.54469,-2.981237 -1.50811,-4.588337 z" + id="path9858" + inkscape:path-effect="#path-effect9860" + inkscape:original-d="m 762.7922,66.84248 c 0.81,-3.72324 2.6964,-6.76942 8.7466,-8.75802" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path9256" + d="m 762.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" + style="fill:none;stroke:#008000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect9258" + width="16" + height="16" + x="759.9762" + y="55.053501" /> + <use + xlink:href="#g6043" + height="1250" + width="1250" + id="use9872" + y="0" + x="0" + transform="translate(760,-189)" /> + <use + xlink:href="#rect10675" + transform="translate(805.0318,-128.6983)" + x="0" + y="0" + id="use10185" + width="1250" + height="1250" /> + <use + xlink:href="#rect10675" + height="1250" + width="1250" + id="use10187" + y="0" + x="0" + transform="translate(793.0318,-116.6983)" /> + </g> + <g + id="grid-rectangular" + transform="translate(-94,-28)" + inkscape:label="#grid_xy"> + <path + sodipodi:nodetypes="cc" + id="path5235" + d="m 305.5,421.5 0,15" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <use + xlink:href="#path5235" + x="0" + y="0" + id="use5238" + transform="translate(4,0)" + width="1250" + height="1250" + style="stroke-linecap:round" /> + <use + xlink:href="#path5235" + height="1250" + width="1250" + transform="translate(8,0)" + id="use5244" + y="0" + x="0" + style="stroke-linecap:round" /> + <use + xlink:href="#path5235" + x="0" + y="0" + id="use5246" + transform="translate(12,0)" + width="1250" + height="1250" + style="stroke-linecap:round" /> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 319.5,423.5 -15,0" + id="path5252" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#path5252" + x="0" + y="0" + id="use5254" + transform="translate(0,4)" + width="1250" + height="1250" + style="stroke-linecap:round" /> + <use + xlink:href="#path5252" + height="1250" + width="1250" + transform="translate(0,8)" + id="use5257" + y="0" + x="0" + style="stroke-linecap:round" /> + <use + xlink:href="#path5252" + x="0" + y="0" + id="use5259" + transform="translate(0,12)" + width="1250" + height="1250" + style="stroke-linecap:round" /> + </g> + <g + id="grid-axonometric" + inkscape:label="#grid_axonom" + transform="translate(-94,-28)"> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 332.5,421.5 0,15" + id="path4674" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path5266" + d="m 342.5,421.5 0,15" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 337.5,421.5 0,15" + id="path5268" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path4720" + d="m 330.4851,424.4741 15.0157,8.6693" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 330.4321,430.3454 10.6336,6.1393" + id="path5309" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path5311" + d="m 335.1528,421.4521 10.3077,5.9511" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cc" + id="path5313" + d="m 330.4332,426.6692 9.0145,-5.2046" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 330.4696,432.5182 15.0017,-8.6612" + id="path5315" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path5317" + d="m 333.6366,436.5647 11.9001,-6.8705" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <g + id="transform-move-horizontal" + transform="translate(-511.43515,-131.24704)" + inkscape:label="#arrows_hor" + style="display:inline"> + <rect + transform="translate(348.4108,47.248)" + y="270" + x="895" + height="24" + width="24" + id="rect5457" + style="color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cccccccc" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1248.435,332.2471 0,-1 12,0 0,-2 3,2.5 -3,2.5 0,-2 -12,0 z" + id="path5435" /> + <g + id="g5384" + transform="translate(-10.01187,-3.897705e-5)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5727);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3619" + width="8.9748974" + height="7.9907908" + x="1267.947" + y="319.75629" /> + <rect + style="color:#000000;fill:url(#linearGradient5729);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5731);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3621" + width="6.9975381" + height="5.9956141" + x="1268.938" + y="320.7514" /> + </g> + <use + xlink:href="#g5384" + style="opacity:0.5" + height="1250" + width="1250" + transform="translate(-13.97489,0)" + id="use6276" + y="0" + x="0" /> + </g> + <g + id="transform-scale-horizontal" + inkscape:label="#transform_scale_hor" + transform="translate(-142.00842,-53.992004)"> + <g + id="g6303" + transform="translate(0,-0.0070343)"> + <rect + y="244.5435" + x="906.50592" + height="14.95563" + width="20.98823" + id="rect6287" + style="color:#000000;fill:url(#linearGradient5733);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5735);stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="243.515" + x="905.50842" + height="16.984039" + width="22.983259" + id="rect6285" + style="color:#000000;fill:none;stroke:url(#linearGradient5737);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + style="opacity:0.5;display:inline" + id="g12100" + transform="matrix(1,0,0,2.125424,-355.4347,-436.1096)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5739);stroke-width:0.68592602;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect12102" + width="8.9748974" + height="7.9907908" + x="1267.947" + y="319.75629" /> + <rect + style="color:#000000;fill:url(#linearGradient5741);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5743);stroke-width:0.68592548;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect12104" + width="6.9975381" + height="6.9402218" + x="1268.938" + y="320.29971" /> + </g> + <path + id="path5628" + d="m 905.9609,255.57942 3,-2.50002 0,2.00002 16.0782,0 0,-2.00002 3,2.50002 -3,2.49998 0,-1.99998 -16.0782,0 0,1.99998 -3,-2.49998 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccccc" /> + <rect + y="240" + x="905" + height="24" + width="24" + id="rect5634" + style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> + </g> + <g + id="transform-rotate" + inkscape:label="#transform_rotate" + transform="matrix(-1,0,0,1,1753.9972,-53.895324)"> + <use + xlink:href="#use6342" + style="opacity:0.5" + height="1250" + width="1250" + transform="matrix(0.707107,-0.707107,0.707107,0.707107,89.21378,722.4379)" + id="use6356" + y="0" + x="0" /> + <rect + y="240" + x="905" + height="24" + width="24" + id="rect5743" + style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <path + id="path5749" + d="m 907,262 2e-5,-3 -2.00002,0 2.50002,-3 2.49998,3 -1.99998,0 -2e-5,3 3,0 0,1 -3,0 -1,-1 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccccc" /> + <g + id="use6342" + transform="matrix(0.707107,0.707107,-0.707107,0.707107,444.6614,-565.4777)"> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5757);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6346" + width="14.99428" + height="9.9891272" + x="905.71863" + y="240.2337" /> + <rect + style="color:#000000;fill:url(#linearGradient5759);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5762);stroke-width:0.99999982;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6348" + width="12.98509" + height="7.9908481" + x="906.7204" + y="241.2301" /> + </g> + <use + xlink:href="#path5749" + height="1250" + width="1250" + transform="matrix(-1,0,0,-1,1834,507.9991)" + id="use6358" + y="0" + x="0" /> + </g> + <g + id="transform-skew-horizontal" + inkscape:label="#transform_scew_hor" + transform="matrix(-1,0,0,1,1723.0323,-54.001204)"> + <g + id="g6663" + style="opacity:0.5"> + <rect + y="246.4982" + x="911.46283" + height="11.00354" + width="11.07448" + id="rect6417" + style="color:#000000;fill:url(#linearGradient5745);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5747);stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="245.49879" + x="910.46777" + height="13.00241" + width="13.0645" + id="rect6419" + style="color:#000000;fill:none;stroke:url(#linearGradient5749);stroke-width:0.99999791;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <rect + y="240" + x="905" + height="24" + width="24" + id="rect6423" + style="opacity:0.55131974;color:#000000;fill:none;stroke:none;stroke-width:1px;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cccccccc" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 926,242 0,-2 3,2.5 -3,2.5 0,-2 -3,0 0,-0.9997 3,-3e-4 z" + id="use6595" /> + <use + xlink:href="#use6595" + height="1250" + width="1250" + transform="matrix(-1,0,0,-1,1834,504)" + id="use6602" + y="0" + x="0" /> + <g + id="g6667" + transform="matrix(1.008867,0,-0.759374,1,183.2271,0)"> + <rect + style="color:#000000;fill:url(#linearGradient5751);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5753);stroke-width:0.99567062;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6669" + width="11.07448" + height="11.00519" + x="907.10687" + y="246.5351" + transform="matrix(1,0,0.017299,0.9998504,0,0)" /> + <rect + style="color:#000000;fill:none;stroke:url(#linearGradient5755);stroke-width:0.99566841;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6671" + width="13.0645" + height="13.00435" + x="906.11182" + y="245.53551" + transform="matrix(1,0,0.017299,0.9998504,0,0)" /> + </g> + </g> + <g + id="show-path-outline" + transform="translate(842.93369,-119.91717)" + inkscape:label="#nodes_show_helperpath"> + <path + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m -42.51871,188.4465 c 0,-5.4991 0.67562,-12.9767 11,-11 1.81091,0.3467 0.33484,11.7418 -11,11" + id="path4756" + sodipodi:nodetypes="csc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4758" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use4760" + y="0" + x="0" + transform="translate(-4.9762,-0.0534998)" /> + <use + xlink:href="#rect4374" + height="1250" + width="1250" + id="use4762" + y="0" + x="0" + transform="translate(5.981293,-11.02417)" /> + </g> + <g + id="randomize" + transform="translate(-174.62312,-48.061624)"> + <rect + y="208" + x="777.85358" + height="24" + width="24" + id="rect7476" + style="fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> + <g + id="g4914" + transform="translate(5.853577,2.75)"> + <path + id="path4908" + d="m 773,210.5 0,12.5 11,5.5 11,-5.5 0,-12.5 -11,4.5 -11,-4.5 z" + style="fill:url(#radialGradient8472);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5637);stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="ccccc" + id="path4912" + d="m 784,206 11,4.5 -11,4.5 -11,-4.5 11,-4.5 z" + style="fill:url(#radialGradient8474);fill-opacity:1;fill-rule:nonzero;stroke:url(#linearGradient5633);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 848,219 0,13.417" + id="path5699" + transform="translate(-64,-4)" + sodipodi:nodetypes="cc" /> + <g + id="g5864" + transform="translate(-64,-4)"> + <path + transform="matrix(1.795342,0,0,1.795342,-669.664,-176.9133)" + d="m 843,222.75 c 0,0.69036 -0.33579,1.25 -0.75,1.25 -0.41421,0 -0.75,-0.55964 -0.75,-1.25 0,-0.69036 0.33579,-1.25 0.75,-1.25 0.41421,0 0.75,0.55964 0.75,1.25 z" + sodipodi:ry="1.25" + sodipodi:rx="0.75" + sodipodi:cy="222.75" + sodipodi:cx="842.25" + id="path5706" + style="fill:url(#radialGradient5496);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1.34840238;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5833" + transform="translate(9.037201,-1.473703)" + width="1250" + height="1250" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5842" + transform="translate(9.037201,3.880038)" + width="1250" + height="1250" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5848" + transform="translate(13.22746,-3.462058)" + width="1250" + height="1250" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5855" + transform="translate(13.22746,1.844619)" + width="1250" + height="1250" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5857" + transform="matrix(0,1,-1,0,1067.75,-628.0593)" + width="1250" + height="1250" /> + <use + xlink:href="#path5706" + x="0" + y="0" + id="use5859" + transform="matrix(0,1,-1,0,1074.743,-628.0313)" + width="1250" + height="1250" /> + </g> + </g> + </g> + <g + id="path-clip-edit" + inkscape:label="#g7356" + transform="translate(-21,0)"> + <path + sodipodi:nodetypes="cc" + id="path4828" + d="m 855,62 c -2,2 -5,1.5 -8,-1.5" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" /> + <use + xlink:href="#path4828" + x="0" + y="0" + id="use4830" + transform="matrix(0,1,1,0,785.5,-785)" + width="1250" + height="1250" /> + <path + style="fill:none;stroke:#00ff00;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="m 842.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" + id="path4813" + sodipodi:nodetypes="cc" /> + <rect + y="55.053501" + x="839.9762" + height="16" + width="16" + id="rect4815" + style="fill:none;stroke:none;marker:none;display:inline" /> + <use + xlink:href="#rect10675" + height="1250" + width="1250" + id="use4819" + y="0" + x="0" + transform="translate(885.0318,-128.6983)" /> + <use + xlink:href="#rect10675" + transform="translate(873.0318,-116.6983)" + x="0" + y="0" + id="use4821" + width="1250" + height="1250" /> + </g> + <g + id="path-mask-edit" + inkscape:label="#g7344" + transform="translate(-40,0)"> + <use + xlink:href="#path4893" + x="0" + y="0" + id="use4911" + transform="matrix(0,1,1,0,825.5171,-825.2431)" + width="1250" + height="1250" /> + <path + style="fill:none;stroke:url(#linearGradient5824);stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + d="m 895,62 c -2,2 -6,1 -10,-4" + id="path4893" + sodipodi:nodetypes="cc" /> + <path + sodipodi:nodetypes="cc" + id="path4899" + d="m 882.5,68.5 c 0.8058,-6.48429 5.5747,-9.9922 11,-11" + style="fill:none;stroke:#0000ff;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="fill:none;stroke:none;marker:none;display:inline" + id="rect4901" + width="16" + height="16" + x="879.9762" + y="55.053501" /> + <use + xlink:href="#rect10675" + transform="translate(925.0318,-128.6983)" + x="0" + y="0" + id="use4903" + width="1250" + height="1250" /> + <use + xlink:href="#rect10675" + height="1250" + width="1250" + id="use4905" + y="0" + x="0" + transform="translate(913.0318,-116.6983)" /> + </g> + <g + id="draw-eraser" + transform="translate(1.5,359.5)" + inkscape:label="#draw_erase"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" + id="rect7418" + width="24" + height="24" + x="450" + y="115" /> + <g + transform="matrix(0.8660254,0.5,-0.5,0.8660254,125.3963,-213.9852)" + id="g8277"> + <rect + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7420" + width="10.99167" + height="18.991779" + x="456.5083" + y="117.5082" /> + <rect + style="color:#000000;fill:url(#linearGradient7424);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7426);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect7422" + width="9" + height="17" + x="457.5" + y="118.5" /> + </g> + </g> + <path + style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + d="m 887.09278,67.572248 c -2.0587,-0.26142 -3.7811,-2.06568 -3.9403,-4.13574 -0.2323,-2.06273 1.1189,-4.16029 3.0929,-4.80202 1.9506,-0.71096 4.3057,0.11085 5.3951,1.87722 0.6818,1.02879 0.8348,2.31056 0.6716,3.51285 -0.1753,1.20282 0.3156,2.52456 1.3984,3.14493 1.3484,0.86475 3.329,0.33453 4.065,-1.08834 0.8134,-1.38006 0.2089,-3.33927 -1.2407,-4.02117" + id="path-mode-spiro" + sodipodi:nodetypes="cccccccs" + inkscape:label="#spiro_splines_mode" /> + <g + id="path-mode-bezier" + transform="matrix(0.6666666,0,0,0.6666666,934.49999,-64.835925)" + inkscape:label="bezier_mode"> + <rect + y="180" + x="-110" + height="24" + width="24" + id="rect4983" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="csc" + id="path4985" + d="m -107.5,202 c -0.5,-8 0.6365,-12.357 3.9649,-15.4022 C -100.5976,183.9103 -96,182 -88,182.5" + style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="color:#000000;fill:#0000ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.50000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4987" + width="6.1177049" + height="5.9961362" + x="-106.5" + y="183.50391" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:1.20047224;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4989" + width="4.7995281" + height="4.8015089" + x="-109.8907" + y="198.8925" /> + <use + xlink:href="#rect10541" + height="1250" + width="1250" + transform="matrix(1.200473,0,0,1.200473,40.4649,-59.44417)" + id="use4993" + y="0" + x="0" /> + </g> + <g + id="path-mode-polyline" + transform="matrix(0.6666666,0,0,0.6666666,976.13919,-64.654121)" + inkscape:label="polylines_mode"> + <rect + y="180" + x="-110" + height="24" + width="24" + id="rect4983-8" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="ccccc" + id="path4985-5" + d="m -85.93689,200.106 c 0,0 -19.27191,-10.1248 -19.27191,-10.1248 0,0 7.87184,-6.5308 7.87184,-6.5308 0,0 -4.40444,20.2338 -4.40444,20.2338 0,0 12.56783,-11.1304 12.56783,-11.1304" + style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4989-9" + width="2.9951611" + height="2.996397" + x="-86.988617" + y="198.8744" /> + <rect + y="190.5354" + x="-90.292511" + height="2.996397" + width="2.9951611" + id="rect8372" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8374" + width="2.9951611" + height="2.996397" + x="-98.651253" + y="181.5116" /> + <rect + y="188.5146" + x="-106.7003" + height="2.996397" + width="2.9951611" + id="rect8376" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8378" + width="2.9951611" + height="2.996397" + x="-103.3954" + y="202.62289" /> + </g> + <g + id="path-mode-polyline-paraxial" + transform="matrix(0.6666666,0,0,0.6666666,996.85286,-65.39675)" + inkscape:label="paraxial_lines_mode"> + <rect + y="180" + x="-110" + height="24" + width="24" + id="rect4983-8-8" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <path + sodipodi:nodetypes="ccccccc" + id="path4985-5-5" + d="m -83.37415,197.5433 c 0,0 -20.67835,0 -20.67835,0 0,0 0,-7.8541 0,-7.8541 0,0 8.84746,0 8.84746,0 0,0 0,13.6806 0,13.6806 0,0 5.91443,0 5.91443,0 0,0 0,-19.3232 0,-19.3232" + style="fill:none;stroke:#646464;stroke-width:2.25000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect4989-9-0" + width="2.9951611" + height="2.996397" + x="-84.48362" + y="196.0672" /> + <rect + y="182.1676" + x="-90.81646" + height="2.996397" + width="2.9951611" + id="rect8372-9" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8374-6" + width="2.9951611" + height="2.996397" + x="-96.732529" + y="188.1577" /> + <rect + y="188.1577" + x="-105.581" + height="2.996397" + width="2.9951611" + id="rect8376-3" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8378-8" + width="2.9951611" + height="2.996397" + x="-105.581" + y="196.0672" /> + <rect + y="201.7701" + x="-96.732529" + height="2.996397" + width="2.9951611" + id="rect5087" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#6464ff;stroke-width:0.74915862;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5089" + width="2.9951611" + height="2.996397" + x="-90.81646" + y="201.7701" /> + </g> + <g + id="draw-geometry-line-segment" + transform="translate(733.29,-88.29195)" + inkscape:label="line_segment"> + <path + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + d="M -44.20553,190.1345 -30.7183,176.434" + id="path4418-8" + sodipodi:nodetypes="cc" /> + <rect + y="175" + x="-45" + height="16" + width="16" + id="rect4420-5" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="color:#000000;fill:#ff2100;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#d40000;stroke-width:0.64440769;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="use5756-0-3" + width="2.5502379" + height="2.5587261" + x="-41.81641" + y="185.1907" /> + <use + xlink:href="#use5756-0-3" + height="1250" + width="1250" + transform="translate(6.040428,-6.111492)" + id="use5845" + y="0" + x="0" /> + </g> + <g + id="draw-geometry-circle-from-three-points" + inkscape:label="circle_3pts" + transform="translate(70,0)"> + <path + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" + d="m 658.0599,95.55848 c 0,0.80381 -0.1598,1.60731 -0.4674,2.34994 -0.3076,0.74262 -0.7628,1.4238 -1.3311,1.99217 -0.5683,0.56841 -1.2494,1.02351 -1.9918,1.33111 -0.7424,0.3075 -1.5456,0.4673 -2.3489,0.4673 -0.8033,-1e-4 -1.6061,-0.1599 -2.348,-0.4676 -0.7419,-0.3076 -1.4222,-0.7628 -1.9898,-1.33116 -0.5676,-0.56838 -1.0221,-1.2495 -1.3292,-1.99207 -0.3071,-0.74256 -0.4667,-1.54597 -0.4667,-2.34969 0,-0.80373 0.1596,-1.60714 0.4667,-2.3497 0.3071,-0.74256 0.7616,-1.42369 1.3292,-1.99207 0.5676,-0.56837 1.2479,-1.02353 1.9898,-1.33117 0.7419,-0.30764 1.5447,-0.46752 2.348,-0.46757 0.8033,-4e-5 1.6065,0.15974 2.3489,0.46731 0.7424,0.30758 1.4235,0.76271 1.9918,1.33108 0.5683,0.56838 1.0235,1.24955 1.3311,1.99218 0.3076,0.74262 0.4674,1.54612 0.4674,2.34994" + id="path2526" /> + <use + xlink:href="#use5756-0-3" + x="0" + y="0" + id="use5845-6" + transform="translate(690.7581,-96.67858)" + width="1250" + height="1250" /> + <use + xlink:href="#use5756-0-3" + x="0" + y="0" + id="use5845-6-1" + transform="translate(686.3637,-90.33765)" + width="1250" + height="1250" /> + <use + xlink:href="#use5756-0-3" + x="0" + y="0" + id="use5845-6-1-9" + transform="translate(697.4319,-87.13558)" + width="1250" + height="1250" /> + </g> + <g + id="draw-geometry-angle-bisector" + inkscape:label="angle_bisector" + transform="translate(130,0)"> + <path + sodipodi:nodetypes="cc" + id="path4418-8-1" + d="M 683.5954,101.6495 672.621,88.41118" + style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.72727266;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="ccc" + d="m 677.4691,101.0666 -2.6405,-10.1315 9.7457,4.74274" + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + id="path4418-8-1-0" /> + </g> + <g + transform="translate(110,2.2e-5)" + id="draw-geometry-line-perpendicular" + inkscape:label="perp_bisector"> + <path + sodipodi:nodetypes="cc" + id="path4418-8-1-2" + d="M 683.5954,101.6495 672.621,88.41118" + style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.72727266;stroke-dasharray:none" /> + <path + sodipodi:nodetypes="cc" + d="m 674.4659,97.31266 7.1053,-5.38872" + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + id="path4418-8-1-0-1" /> + </g> + <rect + style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.30013371;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.3001337, 2.3001337;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="show-bounding-box" + width="10.66002" + height="16.84721" + x="865.56531" + y="86.075531" + inkscape:label="lpetool_show_bbox" /> + <g + transform="translate(92.93803,-0.728071)" + id="draw-geometry-circle-from-radius" + inkscape:label="circle_3pts"> + <path + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:square;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" + d="m 658.0599,95.55848 c 0,0.80381 -0.1598,1.60731 -0.4674,2.34994 -0.3076,0.74262 -0.7628,1.4238 -1.3311,1.99217 -0.5683,0.56841 -1.2494,1.02351 -1.9918,1.33111 -0.7424,0.3075 -1.5456,0.4673 -2.3489,0.4673 -0.8033,-1e-4 -1.6061,-0.1599 -2.348,-0.4676 -0.7419,-0.3076 -1.4222,-0.7628 -1.9898,-1.33116 -0.5676,-0.56838 -1.0221,-1.2495 -1.3292,-1.99207 -0.3071,-0.74256 -0.4667,-1.54597 -0.4667,-2.34969 0,-0.80373 0.1596,-1.60714 0.4667,-2.3497 0.3071,-0.74256 0.7616,-1.42369 1.3292,-1.99207 0.5676,-0.56837 1.2479,-1.02353 1.9898,-1.33117 0.7419,-0.30764 1.5447,-0.46752 2.348,-0.46757 0.8033,-4e-5 1.6065,0.15974 2.3489,0.46731 0.7424,0.30758 1.4235,0.76271 1.9918,1.33108 0.5683,0.56838 1.0235,1.24955 1.3311,1.99218 0.3076,0.74262 0.4674,1.54612 0.4674,2.34994" + id="circle_with_radius" + inkscape:label="circle_with_radius" /> + <path + sodipodi:nodetypes="cc" + d="m 651.6968,95.73494 5.4178,-3.38872" + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + id="path4418-8-1-0-1-0" /> + <use + xlink:href="#use5756-0-3" + x="0" + y="0" + id="use5845-6-1-4" + transform="translate(692.3012,-90.77515)" + width="1250" + height="1250" /> + <use + xlink:href="#use5756-0-3" + x="0" + y="0" + id="use5845-6-1-9-8" + transform="translate(697.6194,-94.13558)" + width="1250" + height="1250" /> + </g> + <g + transform="matrix(0.4295736,0.9030318,-0.9030318,0.4295736,560.3677,-559.0022)" + id="draw-geometry-line-parallel" + inkscape:label="parallel"> + <path + sodipodi:nodetypes="cc" + d="m 672.4285,92.87286 14.7066,-3.2674" + style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" + id="path4418-8-1-0-1-4-4" /> + <path + sodipodi:nodetypes="cc" + d="m 673.2681,96.33213 14.7067,-3.26741" + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + id="path4418-8-1-0-1-4-4-6" /> + </g> + <g + id="draw-geometry-inactive" + inkscape:label="all_inactive_old" + transform="translate(50.20458,0)"> + <rect + y="85.500023" + x="612.75" + height="24" + width="20.25" + id="rect5112" + style="color:#000000;fill:none;stroke:none;stroke-width:3;marker:none;visibility:visible;display:inline" /> + <path + id="path6027" + d="m 617.64905,102.88197 10.4519,-10.763857" + style="fill:none;stroke:#000000;stroke-width:4.23622561;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" /> + <path + id="path6027-1" + d="M 628.25684,102.72593 617.49316,92.274104" + style="fill:none;stroke:#000000;stroke-width:4.23622561;stroke-linecap:round;stroke-linejoin:bevel;stroke-miterlimit:4.26999998;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:23.2" /> + </g> + <text + xml:space="preserve" + style="font-size:20px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-align:start;line-height:100%;writing-mode:lr-tb;text-anchor:start;fill:#008f00;fill-opacity:1;stroke:none;font-family:Arial;-inkscape-font-specification:Arial" + x="614.23224" + y="103.43147" + id="all_inactive" + sodipodi:linespacing="100%" + inkscape:label="all_inactive"><tspan + sodipodi:role="line" + id="tspan5899" + x="614.23224" + y="103.43147">none</tspan></text> + <g + transform="matrix(0.4295736,0.9030318,-0.9030318,0.4295736,624.3677,-559.0021)" + id="draw-geometry-mirror" + inkscape:label="mirror_symmetry"> + <path + sodipodi:nodetypes="cs" + d="m 674.8734,92.098 c 5.4139,5.20542 2.5695,-7.76863 9.7231,-0.7933" + style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" + id="path4418-8-1-0-1-4-4-8" /> + <path + sodipodi:nodetypes="cc" + d="m 673.2681,96.33213 14.7067,-3.26741" + style="fill:none;stroke:#5a5a5a;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" + id="path4418-8-1-0-1-4-4-6-5" /> + <path + sodipodi:nodetypes="cs" + d="m 676.5145,99.48186 c 2.6094,-7.04252 5.4004,6.66004 9.0995,-3.51658" + style="fill:none;stroke:#da0000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.7254902;stroke-dasharray:none" + id="path4418-8-1-0-1-4-4-8-5" /> + </g> + <g + transform="translate(416.9762,-39.9465)" + id="object-tweak-push" + inkscape:label="#g4416"> + <rect + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect4991" + width="16" + height="16" + x="-45" + y="175" /> + <g + id="g5135" + style="fill:#000000" + transform="translate(-416.8263,39.0012)"> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + inkscape:tile-h="2.223736" + inkscape:tile-w="2.223736" + inkscape:tile-cy="137.9821" + inkscape:tile-cx="375.0941" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5011" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.17581)" /> + <use + xlink:href="#path5011" + transform="translate(4.825002e-8,2.41142)" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + id="use5085" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.0067742,5.089253)" + id="use5087" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.0027824,7.946541)" + id="use5091" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.959973,-0.63416)" + id="use5095" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(3.006247,0.88896)" + id="use5097" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(3.034311,2.716243)" + id="use5099" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.998324,5.976212)" + id="use5101" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.922205,-0.70933)" + id="use5105" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.986644,0.3787152)" + id="use5107" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(6.028303,2.049693)" + id="use5109" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.985226,4.82628)" + id="use5111" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.86036,-0.67653)" + id="use5115" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.908855,0.84335)" + id="use5117" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.937926,2.560875)" + id="use5119" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.901517,5.920781)" + id="use5121" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.79723,-0.00985)" + id="use5125" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.80716,2.53059)" + id="use5127" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.81518,5.183143)" + id="use5129" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.80214,7.912301)" + id="use5131" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5011" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5136" + transform="translate(0.0027824,10.71149)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5011" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5138" + transform="translate(2.998324,9.724665)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5011" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5140" + transform="translate(5.985226,9.503606)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5011" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5142" + transform="translate(8.901517,9.887791)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5011" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5144" + transform="translate(11.80214,10.67725)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + </g> + </g> + <rect + inkscape:label="#rect5080" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="tweak_move_mode_inout" + width="16" + height="16" + x="391.9762" + y="135.0535" /> + <g + id="object-tweak-attract" + style="fill:#000000" + transform="translate(20.0953,-1.38242)" + inkscape:label="#g5082"> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.861385,11.02164)" + id="use5124" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5130" + transform="translate(2.953795,11.09914)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.11579,3.027365)" + id="use5088" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5126" + transform="translate(11.0383,9.082095)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(10.38143,6.05473)" + id="use5090" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5132" + transform="translate(5.90759,10.40446)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + inkscape:tile-h="2.223736" + inkscape:tile-w="2.223736" + inkscape:tile-cy="137.9821" + inkscape:tile-cx="375.0941" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5084" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" /> + <use + xlink:href="#path5084" + transform="translate(8.706381,0.9318868)" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + id="use5086" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.953795,0.8543842)" + id="use5092" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.81518,0)" + id="use5094" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(1.317544,6.05473)" + id="use5096" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.7764177,9.082095)" + id="use5098" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.90759,1.588803)" + id="use5100" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.6601638,3.027365)" + id="use5103" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(3.225052,3.298622)" + id="use5106" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(3.147551,8.733335)" + id="use5108" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.90759,4.189904)" + id="use5110" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.706381,3.376124)" + id="use5112" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(3.961329,6.05473)" + id="use5114" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.90759,7.764549)" + id="use5116" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(7.698848,6.05473)" + id="use5120" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.90759,6.05473)" + id="use5118" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.628879,8.772087)" + id="use5122" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5128" + transform="translate(0,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5134" + transform="translate(11.81518,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + </g> + <rect + inkscape:label="#rect5080-2" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="tweak_move_mode_jitter" + width="16" + height="16" + x="410.95239" + y="135.10649" /> + <g + id="object-tweak-randomize" + style="fill:#000000" + transform="translate(39.0715,-1.3294)" + inkscape:label="#g5082-9"> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + inkscape:tile-h="2.223736" + inkscape:tile-w="2.223736" + inkscape:tile-cy="137.9821" + inkscape:tile-cx="375.0941" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5084-3" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-78.24976,-27.879)" /> + <use + xlink:href="#path5084-3" + transform="translate(8.561625,0.49145)" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + id="use5086-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.84313,2.65475)" + id="use5088-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.465,6.015863)" + id="use5090-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.800431,0.1644349)" + id="use5092-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.808,-0.0096427)" + id="use5094-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(-0.4334583,6.118019)" + id="use5096-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.2602591,9.383794)" + id="use5098-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(6.0991,-0.2204626)" + id="use5100-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(0.4371078,2.794418)" + id="use5103-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.823264,2.99384)" + id="use5106-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.2685,8.914454)" + id="use5108-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(7.821966,3.036785)" + id="use5110-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.506131,3.395216)" + id="use5112-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(2.865657,4.495371)" + id="use5114-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(5.940444,8.422506)" + id="use5116-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(6.998359,5.075075)" + id="use5118-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(7.573388,6.436901)" + id="use5120-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.395772,9.33012)" + id="use5122-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(8.885973,11.77538)" + id="use5124-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-3" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5126-2" + transform="translate(11.49834,9.064573)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-3" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5128-6" + transform="translate(-0.009413,12.10337)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-3" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5130-6" + transform="translate(3.166048,12.23381)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-3" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5132-7" + transform="translate(5.944623,11.84999)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-3" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5134-4" + transform="translate(11.80662,12.10332)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + </g> + <rect + inkscape:label="#rect5080-7" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="tweak_scale_mode" + width="16" + height="16" + x="372.07108" + y="157.0817" /> + <g + id="object-tweak-shrink" + style="fill:#000000" + transform="translate(0.1905,20.64585)" + inkscape:label="#g5082-3"> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + inkscape:tile-h="2.223736" + inkscape:tile-w="2.223736" + inkscape:tile-cy="137.9821" + inkscape:tile-cx="375.0941" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5084-2" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" /> + <use + xlink:href="#path5084-2" + transform="matrix(0.9860759,0,0,0.9860759,14.06913,1.928293)" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + id="use5086-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.28127459" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9791266,0,0,0.9791266,19.62171,5.917923)" + id="use5088-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.2832711" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9025255,0,0,0.9025255,48.27027,19.55311)" + id="use5090-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.3073135" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9860707,0,0,0.9860707,8.163368,1.928972)" + id="use5092-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.28127581" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.81518,0)" + id="use5094-42" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9068615,0,0,0.9068615,34.83344,18.95266)" + id="use5096-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.3058435" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9828022,0,0,0.9828022,6.431961,11.46371)" + id="use5098-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.2822113" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9220478,0,0,0.9220478,35.06151,10.79493)" + id="use5100-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.3008064" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9801935,0,0,0.9801935,7.407717,5.770255)" + id="use5103-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.28296289" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.6146776,0,0,0.6146776,147.0627,56.38727)" + id="use5106-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.451224" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.6232617,0,0,0.6232617,143.8529,61.25332)" + id="use5108-2" + style="fill:#000000;stroke:#ffffff;stroke-width:0.44501051" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4296546,0,0,0.4296546,219.2145,82.00947)" + id="use5110-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.64553702" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.6112925,0,0,0.6112925,154.2364,56.85603)" + id="use5112-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.45372361" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4261003,0,0,0.4261003,217.5898,85.52904)" + id="use5114-3" + style="fill:#000000;stroke:#ffffff;stroke-width:0.65092158" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4378052,0,0,0.4378052,216.1661,86.93554)" + id="use5116-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.63351899" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.256807,0,0,0.256807,283.8591,108.9729)" + id="use5118-6" + style="fill:#000000;stroke:#ffffff;stroke-width:1.08002281" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4222839,0,0,0.4222839,224.9252,86.0576)" + id="use5120-92" + style="fill:#000000;stroke:#ffffff;stroke-width:0.65680492" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.6190024,0,0,0.6190024,151.3531,61.84314)" + id="use5122-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.44807181" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9884129,0,0,0.9884129,13.19493,13.71404)" + id="use5124-2" + style="fill:#000000;stroke:#ffffff;stroke-width:0.28060961" + width="1250" + height="1250" /> + <use + xlink:href="#path5084-2" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.28292781" + id="use5126-4" + transform="matrix(0.9803125,0,0,0.9803125,19.17819,11.80843)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-2" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5128-4" + transform="translate(0,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-2" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.2802223" + id="use5130-0" + transform="matrix(0.9897789,0,0,0.9897789,6.776422,13.52485)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-2" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.29816419" + id="use5132-1" + transform="matrix(0.9302193,0,0,0.9302193,32.00541,21.7728)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#path5084-2" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5134-8" + transform="translate(11.81518,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + </g> + <rect + inkscape:label="#rect5080-5" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="tweak_rotate_mode" + width="16" + height="16" + x="392.0683" + y="156.9639" /> + <g + id="object-tweak-rotate" + style="fill:#000000" + transform="translate(20.1874,20.52808)" + inkscape:label="#g5082-36"> + <use + xlink:href="#rect5405" + transform="matrix(0.9927752,0.1199887,-0.1199887,0.9927752,28.17842,-43.8731)" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + id="use5086-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9930841,0.1174035,-0.1174035,0.9930841,30.65864,-39.92162)" + id="use5088-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9707895,0.2399317,-0.2399317,0.9707895,55.96322,-79.63037)" + id="use5090-9" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9898587,0.142054,-0.142054,0.9898587,26.4169,-51.72114)" + id="use5092-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="translate(11.81518,0)" + id="use5094-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9520134,0.306057,-0.306057,0.9520134,60.32662,-101.7599)" + id="use5096-08" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9893261,0.1457176,-0.1457176,0.9893261,24.16967,-43.93548)" + id="use5098-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.964703,0.263341,-0.263341,0.964703,55.57351,-93.59679)" + id="use5100-2" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9866073,0.1631128,-0.1631128,0.9866073,27.59522,-56.11927)" + id="use5103-7" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.708691,0.705519,-0.705519,0.708691,209.5928,-220.4851)" + id="use5106-2" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.7404779,0.6720807,-0.6720807,0.7404779,193.0747,-206.3267)" + id="use5108-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4506213,0.8927151,-0.8927151,0.4506213,334.9811,-254.7574)" + id="use5110-65" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.7521633,0.6589768,-0.6589768,0.7521633,192.7978,-209.099)" + id="use5112-8" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4220244,0.9065843,-0.9065843,0.4220244,344.6426,-252.9571)" + id="use5114-5" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.5013396,0.8652508,-0.8652508,0.5013396,312.2107,-245.4545)" + id="use5116-6" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.0314108,0.9995066,-0.9995066,0.0314108,506.5457,-233.6188)" + id="use5118-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.4941625,0.8693694,-0.8693694,0.4941625,318.4189,-249.0282)" + id="use5120-1" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.7802341,0.6254874,-0.6254874,0.7802341,177.6622,-194.4068)" + id="use5122-0" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + x="0" + y="0" + inkscape:tiled-clone-of="#path5011" + transform="matrix(0.9957744,0.091834,-0.091834,0.9957744,23.15816,-21.64954)" + id="use5124-4" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + width="1250" + height="1250" /> + <use + xlink:href="#rect5405" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5126-7" + transform="matrix(0.9946836,0.102978,-0.102978,0.9946836,28.063,-28.69348)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#rect5405" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5128-0" + transform="translate(0,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#rect5405" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5130-7" + transform="matrix(0.9938227,0.1109792,-0.1109792,0.9938227,20.63155,-28.53934)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#rect5405" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5132-5" + transform="matrix(0.9757626,0.2188315,-0.2188315,0.9757626,45.27406,-66.3732)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <use + xlink:href="#rect5405" + height="1250" + width="1250" + style="fill:#000000;stroke:#ffffff;stroke-width:0.27735791" + id="use5134-1" + transform="translate(11.81518,12.10946)" + inkscape:tiled-clone-of="#path5011" + y="0" + x="0" /> + <rect + y="136.95441" + x="373.47241" + height="3.036042" + width="1.2579449" + id="rect5405" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.3344132;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" /> + </g> + <rect + y="157.0817" + x="411.24261" + height="16" + width="16" + id="tweak_moreless_mode" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + inkscape:label="#rect5080-7" /> + <g + clip-path="url(#clipPath5905)" + transform="translate(37.4344,20.35234)" + style="fill:#000000" + id="object-tweak-duplicate" + inkscape:label="#g5678"> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use5685" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(2.361086,0,0,2.361086,-503.8152,-187.3038)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use5687" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(2.176368,0,0,2.176368,-434.5286,-155.763)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use5828" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(2.363946,0,0,2.363946,-504.888,-175.5924)" /> + <path + transform="matrix(0,2.361086,-2.361086,0,713.6548,-741.0926)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + id="path5885" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + transform="matrix(0,2.363946,-2.363946,0,701.94,-742.1654)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + id="path5889" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5893" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(0,2.361086,-2.361086,0,713.6548,-747.1456)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5895" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(0,2.363946,-2.363946,0,701.94,-748.2184)" /> + <path + transform="matrix(0,2.361086,-2.361086,0,713.6548,-735.0396)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + id="path5897" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + transform="matrix(0,2.363946,-2.363946,0,701.94,-736.1123)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + id="path5899" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + transform="matrix(2.176368,0,0,2.176368,-433.9294,-155.2869)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + id="path5909" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="path5911" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.138679;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(2.176368,0,0,2.176368,-433.3154,-154.7343)" /> + </g> + <rect + y="181.0817" + x="372.07108" + height="16" + width="16" + id="tweak_blur_mode" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + inkscape:label="#rect5080-7" /> + <g + transform="translate(0.1905,44.64585)" + style="fill:#000000" + id="object-tweak-blur" + inkscape:label="#g7655"> + <path + transform="matrix(1.20571,0,0,1.20571,-78.25832,-27.88514)" + sodipodi:type="arc" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + id="path7657" + sodipodi:cx="375.09409" + sodipodi:cy="137.9821" + sodipodi:rx="1.111868" + sodipodi:ry="1.111868" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + inkscape:tile-cx="375.0941" + inkscape:tile-cy="137.9821" + inkscape:tile-w="2.223736" + inkscape:tile-h="2.223736" + inkscape:tile-x0="373.9822" + inkscape:tile-y0="136.8702" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7660" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.188922,0,0,1.188922,-63.09951,-25.56857)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7662" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.180543,0,0,1.180543,-57.00309,-21.38516)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7664" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.088184,0,0,1.088184,-22.35986,-5.61394)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7666" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.188915,0,0,1.188915,-69.00487,-25.56775)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7668" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-66.44314,-27.88514)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7670" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.093412,0,0,1.093412,-36.13602,-6.3353)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7672" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.184974,0,0,1.184974,-70.48049,-15.94187)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7674" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.111722,0,0,1.111722,-37.0964,-14.9165)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7676" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.181829,0,0,1.181829,-69.30058,-21.56258)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7678" + style="color:#000000;fill:url(#radialGradient7818);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-180.3604,-63.50353)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7680" + style="color:#000000;fill:url(#radialGradient7802);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-180.3597,-57.44874)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7682" + style="color:#000000;fill:url(#radialGradient7826);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-177.4064,-63.50356)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7684" + style="color:#000000;fill:url(#radialGradient7834);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-174.4526,-63.50354)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7686" + style="color:#000000;fill:url(#radialGradient7810);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-180.3605,-60.47619)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7688" + style="color:#000000;fill:url(#radialGradient7794);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.4858,0,0,1.4858,-177.4101,-57.45014)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7692" + style="color:#000000;fill:url(#radialGradient7842);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.485788,0,0,1.485788,-174.4524,-60.47613)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7694" + style="color:#000000;fill:url(#radialGradient7786);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.492675,0,0,1.492675,-177.0357,-58.39903)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7696" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.191739,0,0,1.191739,-64.1566,-13.84799)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7698" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.181973,0,0,1.181973,-57.53942,-15.52772)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7700" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-78.25832,-15.77568)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7702" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.193386,0,0,1.193386,-70.68201,-14.07527)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7704" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.121575,0,0,1.121575,-40.79199,-4.166495)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7706" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#ffffff;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(1.20571,0,0,1.20571,-66.44314,-15.77568)" /> + <path + inkscape:tile-y0="136.8702" + inkscape:tile-x0="373.9822" + d="m 376.20595,137.9821 c 0,0.61407 -0.4978,1.11187 -1.11186,1.11187 -0.61407,0 -1.11187,-0.4978 -1.11187,-1.11187 0,-0.61407 0.4978,-1.11187 1.11187,-1.11187 0.61406,0 1.11186,0.4978 1.11186,1.11187 z" + sodipodi:ry="1.111868" + sodipodi:rx="1.111868" + sodipodi:cy="137.9821" + sodipodi:cx="375.09409" + id="use7690" + style="color:#000000;fill:url(#radialGradient7778);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.27735791;marker:none;visibility:visible;display:inline" + sodipodi:type="arc" + transform="matrix(6.75293,0,0,6.75293,-2153.081,-787.2478)" /> + </g> + <g + inkscape:label="#node_symmetric" + transform="translate(736.47168,-120)" + id="node-type-auto-smooth"> + <path + sodipodi:nodetypes="csc" + id="path5383" + d="m -44.41296,176.5635 c -0.52712,3.4524 1.3869,9.3867 7.3869,9.3867 6,0 7.98876,-5.9343 7.51588,-9.3867" + style="fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect5385" + width="16" + height="16" + x="-45" + y="175" /> + <rect + transform="matrix(2.790265e-6,-1,1,-2.867107e-6,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.00000155;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5387" + width="4.9663939" + height="4.9501772" + x="-188.48309" + y="-39.479382" + ry="2.4750891" /> + </g> + <g + id="snap" + inkscape:label="#toggle_snap_global"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6" + width="16" + height="16" + x="620" + y="30" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0" + width="16" + height="16" + x="620" + y="30.00057" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2" + width="3.5840631" + height="3.621212" + x="415.401" + y="462.05151" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692000000002;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172000000000;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-8" + width="3.5840631" + height="3.621212" + x="415.401" + y="476.28201" /> + <path + id="path9093" + d="m 631,41 0,-4 -4,4 4,0" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:1px;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + inkscape:transform-center-y="-2.12133" + inkscape:transform-center-x="1.414208" + y="466.7135" + x="416.69299" + height="7.9622078" + width="1" + id="rect9095" + style="fill:#000000;fill-opacity:1;stroke:none" /> + </g> + <g + id="snap-bounding-box" + inkscape:label="#toggle_snap_bbox"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4" + width="16" + height="16" + x="638" + y="30" /> + <path + id="path9141" + d="m 641,46 0,-13 13,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-2" + width="3.5840631" + height="3.621212" + x="428.12891" + y="474.69101" /> + </g> + <g + id="snap-bounding-box-edges" + inkscape:label="#toggle_snap_to_bbox_path"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-5" + width="16" + height="16" + x="656" + y="30.00057" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0-1" + width="16" + height="16" + x="656" + y="30.001141" /> + <path + id="path9141-9" + d="m 669,30 0,13 -13,0" + style="color:#000000;fill:none;stroke:#008000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.50000000000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <g + id="snap-bounding-box-corners" + inkscape:label="#toggle_snap_to_bbox_node"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-0" + width="16" + height="16" + x="674" + y="30.00057" /> + <path + id="path9141-9-2" + d="m 687,30 0,13 -13,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-8-6" + width="3.5840631" + height="3.621212" + x="453.58469" + y="514.37732" /> + </g> + <g + id="snap-nodes" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_nodes"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-7" + width="16" + height="16" + x="692" + y="30.00057" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0-8" + width="16" + height="16" + x="692" + y="30.001141" /> + <path + sodipodi:nodetypes="ccsc" + id="path6308" + d="m 693,38 c 0,0 0,-5 7,-5 -4,5 -2.25,8 0.5,9.75 2.75,1.75 6.5,2.25 6.5,2.25" + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#0000ff;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-9" + width="3.5840631" + height="3.621212" + x="469.82391" + y="516.5415" /> + </g> + <g + id="snap-nodes-path" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_to_paths"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-8" + width="16" + height="16" + x="710" + y="30.00057" /> + <path + sodipodi:nodetypes="ccsc" + id="path6308-6" + d="m 725,39 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 714.75,32.5 711,32 711,32" + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccsc" + id="path6308-6-9" + d="m 725,39.00001 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 -2.75,-1.75 -6.5,-2.25 -6.5,-2.25" + style="color:#000000;fill:none;stroke:#008000;stroke-width:1.00000019999999989;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <g + id="snap-nodes-cusp" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_to_nodes"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-74" + width="16" + height="16" + x="728" + y="30.00057" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0-19" + width="16" + height="16" + x="728" + y="30.001141" /> + <path + sodipodi:nodetypes="ccsc" + id="path6308-6-3" + d="m 743,38 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 732.75,31.5 729,31 729,31" + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0.7071068,-0.7071068,0.7071068,0.7071068,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-8-6-5" + width="3.5840631" + height="3.621212" + x="488.233" + y="549.02557" /> + </g> + <g + id="snap-nodes-smooth" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_to_smooth_nodes"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-09" + width="16" + height="16" + x="746" + y="30.00057" /> + <path + sodipodi:nodetypes="ccsc" + id="path6308-6-3-2" + d="m 761,38 c 0,0 0,5 -7,5 4,-5 2.25,-8 -0.5,-9.75 C 750.75,31.5 747,31 747,31" + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <rect + transform="matrix(0,-1,1,0,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-8-6-5-6" + width="3.5840631" + height="3.621212" + x="-35.084061" + y="751.87878" /> + </g> + <g + id="snap-nodes-midpoint" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_to_midpoints"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-5-8" + width="16" + height="16" + x="764" + y="30.001141" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0-1-8" + width="16" + height="16" + x="764" + y="30.001711" /> + <path + id="path6507" + d="M 765,45 779,31" + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + transform="matrix(0.8749999,0,0,0.875,112.6876,9.126711)" + d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 1.10457,0 2,0.895431 2,2 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <g + transform="matrix(1.5,0,0,1.5,-383.9324,-21.06763)" + id="g6242"> + <path + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 766.7737,40.68077 1,4" + id="path6218" /> + <path + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 767.9558,39.58974 1,4" + id="path6218-9" /> + </g> + <g + id="g6242-2" + transform="matrix(1.5,0,0,1.5,-375.4835,-29.48977)"> + <path + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 766.7737,40.68077 1,4" + id="path6218-2" /> + <path + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#c00000;stroke-width:0.66666669px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 767.9558,39.58974 1,4" + id="path6218-9-6" /> + </g> + </g> + <g + id="snap-nodes-intersection" + transform="translate(36,-0.001709)" + inkscape:label="#toggle_snap_to_path_intersections"> + <g + id="g6774"> + <rect + y="30.001141" + x="782" + height="16" + width="16" + id="rect5385-6-4-0-5" + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#646464;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 783,45 797,31" + id="path6507-9" /> + <path + style="color:#000000;fill:none;stroke:#646464;stroke-width:1.00000012;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 783,40 14,-4" + id="path6507-9-3" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path6530-3" + sodipodi:cx="753.5" + sodipodi:cy="33" + sodipodi:rx="2" + sodipodi:ry="2" + d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 1.10457,0 2,0.895431 2,2 z" + transform="matrix(0.8749999,0,0,0.875,130.6876,9.127)" /> + </g> + </g> + <g + id="snap-nodes-rotation-center" + transform="translate(54.5,0.5)" + inkscape:label="#toggle_snap_center"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-7-8" + width="16" + height="16" + x="800" + y="30.001141" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-0-8-4" + width="16" + height="16" + x="800" + y="30.001711" /> + <path + id="path9141-9-0" + d="m 813,30 0,13 -13,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + id="path6380" + d="m 805,31.5 0,3" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + id="path6380-4" + d="m 805,35.5 0,3" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + id="path6380-8" + d="m 801.5,35 3,0" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + id="path6380-4-0" + d="m 805.5,35 3,0" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <g + id="snap-page" + transform="translate(54.5,0.5)" + inkscape:label="#toggle_snap_page_border"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-8-3" + width="16" + height="16" + x="818" + y="30.001141" /> + <path + sodipodi:nodetypes="ccccc" + id="path3805-7" + d="m 820.7689,31.00114 10.4622,0 0,14 -10.4622,0 0,-14 z" + style="color:#000000;fill:url(#linearGradient6465);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6467);stroke-width:1.00000024;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="snap-grid-guide-intersections" + transform="translate(54.5,0.5)" + inkscape:label="#toggle_snap_grid_guide_intersections"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-8-3-1" + width="16" + height="16" + x="836" + y="30.00057" /> + <path + id="path6498-9-0" + d="m 851,37 -14,0" + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + id="path6498-1" + d="m 841.5822,45.57303 4.8364,-15.14606" + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + transform="matrix(0.8749999,0,0,0.875,185.0073,8.125)" + d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 1.10457,0 2,0.895431 2,2 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530-3-7" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + </g> + <g + id="snap-bounding-box-center" + inkscape:label="#toggle_snap_to_bbox_midpoints"> + <path + transform="matrix(0.8749999,0,0,0.875,56.39207,5.147436)" + d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530-5" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-0-8" + width="16" + height="16" + x="712" + y="29.998859" /> + <path + id="path9141-9-2-5" + d="m 725,29.99829 0,13 -13,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <g + transform="translate(162.5,0.5)" + id="snap-nodes-center" + inkscape:label="#toggle_snap_to_bbox_midpoints-3"> + <g + id="toggle_snap_to_object_midpoints"> + <rect + y="30.00057" + x="674" + height="16" + width="16" + id="rect5385-6-4-0-8-1" + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" /> + <path + style="color:#000000;fill:none;stroke:#646464;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 687,30 0,13 -13,0" + id="path9141-9-2-5-1" /> + <path + transform="matrix(0.8749999,0,0,0.875,19.93758,6.375)" + d="m 755.5,33 c 0,1.104569 -0.89543,2 -2,2 -1.10457,0 -2,-0.895431 -2,-2 0,-1.104569 0.89543,-2 2,-2 1.10457,0 2,0.895431 2,2 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530-3-6" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + </g> + </g> + <g + id="snap-bounding-box-midpoints" + inkscape:label="#toggle_snap_to_bbox_edge_midpoints"> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.1;marker:none;display:inline" + id="rect5385-6-4-0-8-5" + width="16" + height="16" + x="692.5" + y="30" /> + <path + id="path9141-9-2-5-3" + d="m 705.5,29.99943 0,13 -13,0" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1, 2;stroke-dashoffset:2.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:1.14285719;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path6530-4" + sodipodi:cx="753.5" + sodipodi:cy="33" + sodipodi:rx="2" + sodipodi:ry="2" + d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" + transform="matrix(0.8749999,0,0,0.875,46.21002,5.147436)" /> + </g> + <g + id="guides" + transform="translate(-118,-28)" + inkscape:label="#guide"> + <path + sodipodi:nodetypes="cc" + id="path5235-0" + d="m 305.5,421.5 0,15" + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + style="fill:none;stroke:#0000ff;stroke-width:1;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 315.5,421.5 -5.0974,15" + id="use5244-0" + sodipodi:nodetypes="cc" /> + <use + xlink:href="#path5235-0" + x="0" + y="0" + id="use5246-9" + transform="translate(12,0)" + width="1250" + height="1250" + style="stroke-linecap:round" /> + </g> + <use + xlink:href="#transform-scale-horizontal" + inkscape:label="#use5735" + height="1250" + width="1250" + transform="matrix(0,-1,1,0,576.98404,1005.9833)" + id="transform-scale-vertical" + y="0" + x="0" /> + <use + xlink:href="#transform-move-horizontal" + inkscape:label="#use5770" + height="1250" + width="1250" + transform="matrix(0,-1,-1,0,942,973.9749)" + id="transform-move-vertical" + y="0" + x="0" /> + <g + id="draw-polygon-star" + inkscape:label="#g6798"> + <g + id="g6790"> + <path + style="color:#000000;fill:url(#linearGradient5939);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient5941);stroke-width:1.00000024;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 462.07367,189.31546 -7.77133,0 -2.22033,-7.54952 6.10599,-4.85323 6.10609,4.85323 -2.22042,7.54952 z" + id="path6584" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;fill:none;stroke:url(#linearGradient5936);stroke-width:0.99999911;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 462.87165,190.34592 -9.36809,0 -2.6767,-8.86924 7.36074,-5.70167 7.36075,5.70167 -2.6767,8.86924 z" + id="star" + sodipodi:nodetypes="cccccc" /> + </g> + <rect + y="173.99997" + x="449.99997" + height="23.999996" + width="23.999998" + id="rect3610" + style="color:#000000;fill:none;stroke:none;stroke-width:1.00000012;marker:none;display:inline" /> + <g + id="g6786"> + <path + sodipodi:type="star" + style="color:#000000;fill:#fffbc5;fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6644);stroke-width:0.67829257;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="path2669" + sodipodi:sides="5" + sodipodi:cx="103" + sodipodi:cy="195" + sodipodi:r1="6.158659" + sodipodi:r2="3" + sodipodi:arg1="-0.122765" + sodipodi:arg2="0.5055535" + inkscape:flatsided="false" + inkscape:rounded="0" + inkscape:randomized="0" + d="m 109.11231,194.24583 -3.48759,2.20705 -0.0186,4.12722 -3.17675,-2.63488 -3.930991,1.25764 1.524251,-3.83549 -2.410831,-3.34996 4.118791,0.26442 2.44101,-3.32803 1.0213,3.99891 z" + transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" /> + <path + transform="matrix(1.4926956,-0.04098291,0.03994835,1.4550146,302.93141,-91.012178)" + d="m 107.52772,194.4445 -2.56903,1.61532 -0.0312,3.07464 -2.33014,-1.94413 -2.933809,0.92041 1.128929,-2.81686 -1.78196,-2.5058 3.02785,0.20322 1.8325,-2.46908 0.74239,2.94245 z" + inkscape:randomized="0" + inkscape:rounded="0" + inkscape:flatsided="false" + sodipodi:arg2="0.49597247" + sodipodi:arg1="-0.12207873" + sodipodi:r2="2.2270374" + sodipodi:r1="4.5616722" + sodipodi:cy="195" + sodipodi:cx="103" + sodipodi:sides="5" + id="path5971" + style="color:#000000;fill:url(#linearGradient6636-2);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6625-4);stroke-width:0.67829257;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:80;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="star" /> + </g> + </g> + <use + xlink:href="#object-columns" + inkscape:label="#use5494" + height="1250" + width="1250" + transform="matrix(0,1,-1,0,1044.0083,-459)" + id="object-rows" + y="0" + x="0" /> + <g + id="draw-geometry" + transform="translate(82.158875,-154.53542)" + inkscape:label="#g7080"> + <rect + y="235.53542" + x="503.84113" + height="24" + width="24" + id="rect7049" + style="color:#000000;fill:none;stroke:none;stroke-width:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccc" + id="rect6919" + d="m 512.76764,243.3399 9.04823,7.73133 -1.00281,1.17362 -9.04823,-7.73133 c 0.116,-0.72045 0.51121,-1.01974 1.00281,-1.17362 z" + style="color:#000000;fill:url(#linearGradient7072);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccccc" + id="path6913" + d="m 521.76669,239.93433 0.41802,-1.35648 2.27331,-1.90169 1.20466,1.02933 -1.61915,2.59959 -1.12717,0.49472 -1.14967,-0.86547 z" + style="color:#000000;fill:url(#linearGradient7069);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccc" + id="path6124" + d="m 507.22246,249.54909 -1.20288,3.01674 2.05323,-2.08949 -0.85021,-0.92719 z" + style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="cccccc" + id="path6904" + d="m 508.07267,250.47628 -0.85021,-0.92719 0.11692,-1.26029 11.89882,-8.27525 -0.25485,2.84225 -10.91068,7.62048 z" + style="color:#000000;fill:url(#linearGradient7065);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:nodetypes="ccccccc" + id="path6908" + d="m 521.6141,239.68707 c -0.86987,-0.31989 -1.7651,-0.27296 -2.37535,0.32361 l -0.25651,2.8496 c -0.64083,1.27305 0.33526,1.8966 1.42451,1.21718 l 2.77469,-0.69791 c 0.49407,-0.69585 0.40078,-1.58745 -0.0509,-2.39676 -0.28341,-0.72585 -0.78316,-1.12526 -1.51642,-1.29572 z" + style="color:#000000;fill:url(#linearGradient7062);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:url(#linearGradient7059);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.8;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 514.58867,256.0406 1.04848,0.69516 1.22662,-0.31211 6.31767,-13.0441 -2.76769,0.69513 -5.82508,11.96592 z" + id="path6917" + sodipodi:nodetypes="cccccc" /> + <path + transform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.05892,34.899768)" + d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 1.03089,0 1.86659,1.90194 1.86659,4.24809 z" + sodipodi:ry="4.2480874" + sodipodi:rx="1.8665838" + sodipodi:cy="215.72934" + sodipodi:cx="610.75909" + id="path6923" + style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + transform="matrix(0.29409385,0.2512907,-0.2512907,0.29409385,396.58894,35.35265)" + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient7074);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path6925" + sodipodi:cx="610.75909" + sodipodi:cy="215.72934" + sodipodi:rx="1.8665838" + sodipodi:ry="4.2480874" + d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 1.03089,0 1.86659,1.90194 1.86659,4.24809 z" /> + <path + transform="matrix(0.67177764,0.57400547,-0.57400547,0.67177764,236.7316,-232.3531)" + d="m 592.86562,198.57608 c 0,0.4088 -0.33139,0.7402 -0.74019,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 0.4088,0 0.74019,0.3314 0.74019,0.7402 z" + sodipodi:ry="0.740197" + sodipodi:rx="0.740197" + sodipodi:cy="198.57608" + sodipodi:cx="592.12543" + id="path6927" + style="color:#000000;fill:url(#linearGradient7102);fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <path + id="path6947" + d="m 508.31361,248.61207 4.07087,-2.80954" + style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.40000001;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.57197958;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 515.63715,256.73576 -2.79207,1.65891 1.74359,-2.35407 1.04848,0.69516 z" + id="path6949" + sodipodi:nodetypes="cccc" /> + <path + id="path6998" + d="m 522.9128,238.97897 1.50906,-1.24867" + style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.40000001;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <use + xlink:href="#path6927" + height="540" + width="1250" + transform="translate(1.4564128,1.1833354)" + id="use7078" + y="0" + x="0" /> + </g> + <g + id="dialog-geometry" + inkscape:label="#g2858" + transform="translate(2.0000007,7.2467919e-6)"> + <g + transform="matrix(1.5000667,0,0,1.4950108,711.15574,-419.4617)" + id="g2770"> + <rect + y="338.80829" + x="115.5577" + height="11.99987" + width="14.99917" + id="rect2772" + style="color:#000000;fill:url(#linearGradient2876);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.66776335;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="335.7579" + x="115.5588" + height="3.011261" + width="14.99819" + id="rect2774" + style="color:#000000;fill:url(#linearGradient2878);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.66776329;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <path + style="color:#000000;fill:url(#linearGradient2880);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 893.90864,90.944372 4.50115,8.555326 -1.10969,0.583832 -4.50114,-8.555327 c 0.30425,-0.508689 0.69248,-0.615615 1.10968,-0.583831 z" + id="path2794" + sodipodi:nodetypes="ccccc" /> + <path + style="color:#000000;fill:url(#linearGradient2882);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 901.723,91.082024 0.72346,-0.897722 2.28732,-0.750961 0.59927,1.139035 -2.00369,1.474323 -0.99929,0.03418 -0.60707,-0.998859 z" + id="path2796" + sodipodi:nodetypes="ccccccc" /> + <path + style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 887.85685,93.9611 -1.8151,1.914293 2.17775,-0.958865 -0.36256,-0.95534 z" + id="path2798" + sodipodi:nodetypes="cccc" /> + <path + style="color:#000000;fill:url(#linearGradient2884);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 888.21942,94.916441 -0.36257,-0.955341 0.46735,-0.915725 11.4672,-2.664223 -1.04732,2.067833 -10.52466,2.467456 z" + id="path2800" + sodipodi:nodetypes="cccccc" /> + <path + style="color:#000000;fill:url(#linearGradient2886);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 901.68225,90.849561 c -0.56009,-0.503042 -1.24967,-0.736945 -1.88957,-0.470409 l -1.05079,2.072879 c -0.86648,0.767746 -0.31759,1.531856 0.70864,1.346907 l 2.30348,0.308131 c 0.58211,-0.376393 0.77994,-1.077177 0.68261,-1.823687 0.005,-0.632917 -0.25239,-1.084615 -0.75436,-1.433815 z" + id="path2802" + sodipodi:nodetypes="ccccccc" /> + <path + sodipodi:nodetypes="cccccc" + id="path2804" + d="m 891.46188,101.07497 0.58196,0.83992 1.01939,0.13351 8.69078,-7.941331 -2.29736,-0.308122 -7.99477,7.276023 z" + style="color:#000000;fill:url(#linearGradient2889);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.64981508;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path2806" + sodipodi:cx="610.75909" + sodipodi:cy="215.72934" + sodipodi:rx="1.8665838" + sodipodi:ry="4.2480874" + d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 1.03089,0 1.86659,1.90194 1.86659,4.24809 z" + transform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.55597,-101.43481)" /> + <path + d="m 612.62568,215.72934 c 0,2.34615 -0.8357,4.24809 -1.86659,4.24809 -1.03088,0 -1.86658,-1.90194 -1.86658,-4.24809 0,-2.34615 0.8357,-4.24809 1.86658,-4.24809 1.03089,0 1.86659,1.90194 1.86659,4.24809 z" + sodipodi:ry="4.2480874" + sodipodi:rx="1.8665838" + sodipodi:cy="215.72934" + sodipodi:cx="610.75909" + id="path2808" + style="color:#000000;fill:url(#linearGradient2891);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.47862911;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" + transform="matrix(0.14630043,0.27807299,-0.27807299,0.14630043,868.81964,-100.93366)" /> + <path + sodipodi:type="arc" + style="color:#000000;fill:url(#linearGradient2893);fill-opacity:1;fill-rule:evenodd;stroke:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path2810" + sodipodi:cx="592.12543" + sodipodi:cy="198.57608" + sodipodi:rx="0.740197" + sodipodi:ry="0.740197" + d="m 592.86562,198.57608 c 0,0.4088 -0.33139,0.7402 -0.74019,0.7402 -0.4088,0 -0.7402,-0.3314 -0.7402,-0.7402 0,-0.4088 0.3314,-0.7402 0.7402,-0.7402 0.4088,0 0.74019,0.3314 0.74019,0.7402 z" + transform="matrix(0.33418365,0.63518235,-0.63518235,0.33418365,828.73985,-351.00961)" /> + <path + style="color:#000000;fill:none;stroke:#ffffff;stroke-width:0.32490754;stroke-linecap:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 888.96202,93.582362 3.91669,-0.895182" + id="path2812" /> + <path + sodipodi:nodetypes="cccc" + id="path2814" + d="m 892.04384,101.91489 -2.60569,0.41172 2.02373,-1.25164 0.58196,0.83992 z" + style="color:#000000;fill:#b6cbe0;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.46460122;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#f7df3a;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.32490754;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:30;stroke-opacity:1;stroke-dasharray:none;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 902.87514,90.705982 1.51424,-0.488162" + id="path2816" /> + <use + xlink:href="#path6927" + x="0" + y="0" + id="use2818" + transform="matrix(0.75450792,0.30082971,-0.30082971,0.75450792,580.96816,-245.58228)" + width="1250" + height="540" /> + </g> + <g + id="draw-geometry-set-bounding-box" + inkscape:label="#g3679"> + <rect + style="color:#000000;fill:none;stroke:#0000ff;stroke-width:2.30013371;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:2.3001337, 2.3001337;stroke-dashoffset:0;marker:none;visibility:visible;display:inline" + id="rect2895" + width="10.66002" + height="16.84721" + x="865.15009" + y="115.15007" + inkscape:label="lpetool_show_bbox" /> + <path + id="path2897" + d="m 860,120 0,7.85252 3.99063,-3.99062 L 860,120 z" + style="color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + style="color:#000000;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.40000001;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 881,120 0,7.85252 -3.99063,-3.99062 L 881,120 z" + id="path3677" /> + </g> + <g + id="draw-geometry-show-measuring-info" + transform="translate(23.01003,-32.10901)" + inkscape:label="#g3731"> + <path + style="color:#000000;fill:url(#linearGradient3740);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.99999923;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline" + d="m 891.48997,114.60901 22.99994,0 6e-5,14.42552 -4.18179,0 -4.60727,8.57448 -0.61997,-8.57448 -13.59082,0 -1.5e-4,-14.42552 z" + id="rect5189-6" + sodipodi:nodetypes="cccccccc" /> + <g + id="text3706" + style="font-size:8.74605656px;writing-mode:lr-tb"> + <path + id="path3719" + d="m 895.99405,119.29585 c -0.84773,-0.0207 -1.20026,0.90061 -1.27292,1.60217 -0.0917,1.04553 -0.16819,2.19733 0.35882,3.14607 0.41648,0.73692 1.61508,0.62486 1.91767,-0.15314 0.43913,-1.01113 0.38314,-2.17037 0.23062,-3.23901 -0.11066,-0.63205 -0.47841,-1.38829 -1.23419,-1.35609 z m 0,-0.68328 c 0.95681,-0.0602 1.75787,0.70179 1.98172,1.59211 0.31196,1.15879 0.31439,2.42417 -0.0466,3.572 -0.25633,0.88825 -1.128,1.55578 -2.06715,1.44765 -1.03314,0.005 -1.76992,-0.9324 -1.93065,-1.88214 -0.22337,-1.20675 -0.23824,-2.52448 0.29066,-3.65638 0.3215,-0.67313 1.02532,-1.10265 1.77201,-1.07324 z" /> + <path + id="path3721" + d="m 899.71795,124.01907 c 0.30036,0 0.60073,0 0.90109,0 0,0.36157 0,0.72314 0,1.08471 -0.30036,0 -0.60073,0 -0.90109,0 0,-0.36157 0,-0.72314 0,-1.08471 z" /> + <path + id="path3723" + d="m 903.24542,124.37779 c 1.00357,0 2.00715,0 3.01072,0 0,0.242 0,0.48399 0,0.72599 -1.34949,0 -2.69897,0 -4.04846,0 0,-0.242 0,-0.48399 0,-0.72599 0.95244,-1.03556 2.05014,-1.94675 2.88394,-3.08493 0.43708,-0.57314 0.32843,-1.53951 -0.39176,-1.82918 -0.82389,-0.32425 -1.72065,0.0454 -2.44948,0.44286 0,-0.2904 0,-0.58079 0,-0.87119 1.07463,-0.45607 2.49913,-0.71183 3.45362,0.13582 0.78212,0.71284 0.60707,1.99676 -0.072,2.7189 -0.75829,0.86206 -1.59084,1.65991 -2.38662,2.48772 z" /> + <path + id="path3725" + d="m 910.68469,121.666 c 0.89363,0.12497 1.4826,1.05773 1.2925,1.92328 -0.0941,1.00279 -1.11367,1.5906 -2.04198,1.62018 -0.72256,0.0699 -1.45173,-0.0589 -2.13313,-0.29781 0,-0.27759 0,-0.55517 0,-0.83276 0.83664,0.45611 1.92451,0.60201 2.80073,0.17757 0.80169,-0.43444 0.69059,-1.81155 -0.19684,-2.08095 -0.48076,-0.18386 -1.00008,-0.10942 -1.50209,-0.12512 0,-0.2363 0,-0.47261 0,-0.70891 0.6676,-0.0288 1.50939,0.14892 1.9565,-0.47536 0.4177,-0.66094 -0.14468,-1.53437 -0.90782,-1.51097 -0.66571,-0.0681 -1.33009,0.0928 -1.95831,0.2995 0,-0.25623 0,-0.51247 0,-0.7687 1.08005,-0.28661 2.40764,-0.52909 3.35334,0.23188 0.80208,0.64443 0.62653,2.14224 -0.3992,2.46393 l -0.12785,0.0456 -0.13585,0.0387" /> + </g> + </g> + <g + transform="matrix(0.8557944,0,0,0.8106021,188.92188,242.35843)" + id="spray-mode-copy"> + <path + d="m 368.21875,315.40625 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.051 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" + id="rect6196" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <g + transform="translate(-3.5450574e-7,0.5149192)" + id="g6335"> + <rect + width="26.775824" + height="21.111708" + ry="1.0718389" + x="367.13776" + y="315.42078" + id="rect6337" + style="fill:url(#linearGradient6466-2);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <g + transform="translate(7.2088757,-31.410101)" + id="g6339"> + <rect + width="26.775824" + height="21.111708" + ry="1.0718389" + x="352.72" + y="356.61435" + id="rect6341" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="26.775824" + height="21.111708" + ry="1.0718389" + x="352.20511" + y="356.09943" + id="rect6343" + style="fill:url(#linearGradient6468-0);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + </g> + </g> + <g + transform="matrix(0.8413762,0,0,0.8105392,266.3079,183.1218)" + id="spray-mode-union"> + <path + d="m 377.48731,389.03977 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.0511 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" + id="path6506" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <path + d="m 377.47944,388.53223 c -0.5938,0 -1.0625,0.49995 -1.0625,1.09375 l 0,8.1875 -6.65625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.44535 0.27129,0.83772 0.65625,1 0.17597,0.35015 0.51748,0.59376 0.9375,0.59375 l 24.65625,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" + id="rect6510" + style="fill:url(#linearGradient6563-3);fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <g + transform="translate(164.42529,191.5008)" + id="spray-mode-clone" + inkscape:label="#g5793"> + <path + transform="matrix(0.8269532,0,0,0.8236011,70.705122,33.206996)" + d="m 373.36795,331.88368 c -0.5938,0 -1.09375,0.49995 -1.09375,1.09375 l 0,8.1875 -6.625,0 c -0.5938,0 -1.09375,0.4687 -1.09375,1.0625 l 0,18.96875 c 0,0.41391 0.2519,0.75879 0.59375,0.9375 0.026,0.0136 0.0353,0.051 0.0625,0.0625 0.17831,0.34313 0.52264,0.59376 0.9375,0.59375 l 24.625,0 c 0.5938,0 1.09376,-0.46869 1.09375,-1.0625 l 0,-8.71875 6.125,0 c 0.5938,0 1.06251,-0.46869 1.0625,-1.0625 l 0,-18.96875 c 0,-0.5938 -0.4687,-1.09375 -1.0625,-1.09375 l -24.625,0 z" + id="path6442" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <g + id="g5785"> + <g + id="g5780"> + <rect + width="22.142353" + height="17.387625" + ry="0.88276768" + x="378.569" + y="306.55872" + id="rect6446" + style="fill:url(#linearGradient5783-6-3);fill-opacity:1;stroke:#000000;stroke-width:0.99000001;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <g + id="g5775"> + <rect + transform="matrix(0.8269532,0,0,0.8236011,80.498855,-10.474112)" + width="26.775824" + height="21.111708" + ry="1.0718389" + x="353.23492" + y="394.71841" + id="rect6450" + style="fill:#000000;fill-opacity:1;stroke:#000000;stroke-width:1.20000005;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <rect + width="22.142353" + height="17.387625" + ry="0.88276768" + x="372.51971" + y="314.02679" + id="rect6452" + style="fill:url(#linearGradient6583-7);fill-opacity:1;stroke:#c2c2c2;stroke-width:1.88999999;stroke-linejoin:miter;stroke-miterlimit:4.19999981;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + <rect + style="fill:none;stroke:#000000;stroke-width:1.88999999;stroke-linejoin:miter;stroke-miterlimit:4.19999981;stroke-opacity:1;stroke-dasharray:3.77999997, 3.77999997;stroke-dashoffset:0" + id="rect6585" + y="314.02679" + x="372.51971" + ry="0.88276768" + height="17.387625" + width="22.142353" /> + </g> + </g> + </g> + <g + id="connector-ignore" + inkscape:label="#g8308" + transform="translate(16.916975,1.0009742)"> + <g + id="g5802" + style="stroke:url(#linearGradient8290-1);stroke-opacity:1" + transform="matrix(0.625904,0,0,0.672041,489.16821,222.32729)"> + <rect + style="fill:none;stroke:url(#linearGradient8288-3);stroke-width:1.54186893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5792" + width="7.9986801" + height="2.959625" + x="8.5082998" + y="211.5502" /> + </g> + <path + style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.8469945" + d="m 494.5,361.4977 6,8" + id="path7667" + sodipodi:nodetypes="cc" /> + <g + transform="matrix(0.689556,0,0,0.507098,484.56529,256.2643)" + id="g5761" + style="stroke:#000000;stroke-opacity:1"> + <rect + style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5763" + width="4.5088892" + height="2.0118859" + x="11.50698" + y="205.5087" /> + </g> + <use + xlink:href="#g5761" + height="1250" + width="1250" + transform="matrix(0.997702,0,0,1.018967,8.1086669,2.1407896)" + id="use5785" + y="0" + x="0" /> + </g> + <g + id="connector-avoid" + inkscape:label="#g8327" + transform="translate(16.916975,1.0009742)"> + <path + style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.83060111" + d="m 517.5,361.4977 5,3 0,5" + id="path12164" + sodipodi:nodetypes="ccc" /> + <g + transform="matrix(0.689556,0,0,0.507098,506.56529,256.2643)" + id="use5787" + style="stroke:#000000;stroke-opacity:1"> + <rect + style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8286" + width="4.5088892" + height="2.0118859" + x="11.50698" + y="205.5087" /> + </g> + <g + transform="matrix(0.689556,0,0,0.507098,513.514,265.26677)" + id="use5790" + style="stroke:#000000;stroke-opacity:1"> + <rect + style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8282" + width="4.5088892" + height="2.0118859" + x="11.50698" + y="205.5087" /> + </g> + <g + id="use5814" + style="stroke:url(#linearGradient8278-4);stroke-opacity:1" + transform="matrix(0.625904,0,0,0.672041,509.17462,223.32729)"> + <rect + style="fill:none;stroke:url(#linearGradient8276-2);stroke-width:1.54186893;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8274" + width="7.9986801" + height="2.959625" + x="8.5082998" + y="211.5502" /> + </g> + </g> + <g + id="connector-orthogonal" + inkscape:label="#g8327" + transform="matrix(-1,0,0,1,1072.9748,1.0009342)"> + <path + style="fill:none;stroke:#3c3c3c;stroke-width:1.00000024px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:0.83060111" + d="m 517.5,360.9977 2,0.002 0,9.00234 3,-0.002" + id="path5193" + sodipodi:nodetypes="cccc" /> + <g + transform="matrix(0.689556,0,0,0.507098,506.56529,256.2643)" + id="g5195" + style="stroke:#000000;stroke-opacity:1"> + <rect + style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5197" + width="4.5088892" + height="2.0118859" + x="11.50698" + y="205.5087" /> + </g> + <g + transform="matrix(0.689556,0,0,0.507098,513.514,265.26677)" + id="g5199" + style="stroke:#000000;stroke-opacity:1"> + <rect + style="fill:none;stroke:#000000;stroke-width:1.69109905;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5201" + width="4.5088892" + height="2.0118859" + x="11.50698" + y="205.5087" /> + </g> + <g + id="g5203" + style="stroke:url(#linearGradient5209);stroke-opacity:1" + transform="matrix(0.625904,0,0,0.672041,509.17462,223.32729)" /> + </g> + <g + id="connector-edit" + transform="matrix(0.5008045,0,0,0.5008045,547.98616,270.83347)" + inkscape:label="#draw_node"> + <rect + y="180" + x="-110" + height="24" + width="24" + id="rect5213" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="fill:#ff0000;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#ff0000;stroke-width:1.99678624;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5217" + width="6.1177049" + height="5.9961362" + x="-108.26915" + y="181.73476" /> + <path + sodipodi:nodetypes="cccc" + id="path5221" + d="m -104.98202,185.05712 10.198948,18.1231 6.79927,-6.79616 -16.998218,-11.32694 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#ffffff;stroke-width:0.99839354;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + </g> + <g + transform="translate(-11.083035,0.97828419)" + id="connector-new-connpoint" + inkscape:label="#g6061"> + <path + sodipodi:end="4.7170453" + sodipodi:start="3.1455643" + d="m 578.00008,371.96028 c 0.0219,-5.5228 4.51683,-9.98214 10.03964,-9.9602 0.002,10e-6 0.005,2e-5 0.007,3e-5 L 588,372 z" + sodipodi:ry="10" + sodipodi:rx="10" + sodipodi:cy="372" + sodipodi:cx="588" + id="path6018" + style="fill:#b0c5da;fill-opacity:1;fill-rule:evenodd;stroke:#0000ff;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:1.5;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" + sodipodi:type="arc" /> + <rect + y="360.98068" + x="577" + height="12.019308" + width="12.019308" + id="rect5199" + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <rect + style="fill:#ff7777;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.94117647;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect5202" + width="3" + height="3" + x="580" + y="363" /> + </g> + <g + transform="translate(-11.083035,0.97828419)" + id="connector-remove-connpoint" + inkscape:label="#g6098"> + <rect + style="fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect6086" + width="12.019308" + height="12.019308" + x="591.5" + y="361" /> + <g + transform="matrix(0.5555556,0,0,0.5555556,57.499957,271.55555)" + id="g6088"> + <path + id="path6090" + d="m 972,171 1,-1 7,0 1,1 0,7 -1,1 -7,0 -1,-1 0,-7 z" + style="fill:#aa0000;fill-opacity:1;fill-rule:evenodd;stroke:#aa0000;stroke-width:1.79999971px;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="ccccccccc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.15999985;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 974,171.85 5,5" + id="path6092" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#ffffff;stroke-width:2.15999985;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 979,171.85 -5,5" + id="path6094" + sodipodi:nodetypes="cc" /> + </g> + <rect + y="363" + x="593" + height="3" + width="3" + id="rect6096" + style="fill:#ff7777;fill-opacity:1;fill-rule:evenodd;stroke:#ff0000;stroke-width:0.99999952;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:0.94117647;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="node-transform" + inkscape:label="#g5821"> + <path + sodipodi:nodetypes="ccccccccccc" + id="path5786" + d="m 480,55 0,5 1.5,-1.5 2,2 -1.5,1.5 5,0 0,-5 -1.5,1.5 -2,-2 1.5,-1.5 -5,0 z" + style="fill:#000000;stroke:none;stroke-width:0.15833369999999999;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" /> + <use + height="540" + width="1250" + transform="matrix(-1,0,0,1,976,0)" + id="use5795" + xlink:href="#path5786" + y="0" + x="0" /> + <use + height="540" + width="1250" + transform="matrix(1,0,0,-1,0,126)" + id="use5805" + xlink:href="#path5786" + y="0" + x="0" /> + <use + height="540" + width="1250" + transform="matrix(-1,0,0,-1,976,126)" + id="use5819" + xlink:href="#path5786" + y="0" + x="0" /> + </g> + <g + id="tool-spray" + inkscape:label="#g7080" + transform="translate(0,-1.97016)"> + <path + id="path5769" + d="m 452.01281,501.97016 24,0 0,24 -24,0 0,-24 z" + style="fill:none;stroke:none" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + style="fill:#ffffff;fill-opacity:0.75000000000000000;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 469.84518,510.27318 -0.6125,-2.12647 c -0.5069,-1.41581 -4.19993,-1.08963 -3.67673,0.37912 l 0.42518,2.06099" + id="path6331-0" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccc" + id="path6315-8" + d="m 473.73077,513.59345 -1.56685,-0.76789 -7.77667,1.05925 -1.34563,1.49786 1.2612,7.06278 c 2.65486,-1.53278 4.20967,6.06515 11.1123,2.07992 l -1.68435,-10.93192 z" + style="fill:url(#linearGradient7073);fill-opacity:1;fill-rule:evenodd;stroke:none" /> + <path + inkscape:connector-curvature="0" + style="fill:url(#linearGradient7067);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient7070);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" + d="m 471.97327,512.76682 -0.85175,-2.5639 -6.47412,1.04874 -0.35347,2.9386" + id="path5211-1" + sodipodi:nodetypes="cccc" /> + <path + inkscape:connector-curvature="0" + id="path6317-2" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1" + d="m 463.99631,521.91457 -0.79118,-5.6356 c -0.21484,-0.93904 0.42907,-2.16731 1.14937,-2.12761 2.65324,0.14615 5.24124,-0.19924 7.73737,-1.27803 0.4782,-0.20671 1.68816,0.69377 1.79436,1.34468 l 1.22233,9.7764" + sodipodi:nodetypes="ccsscc" /> + <path + inkscape:connector-curvature="0" + style="fill:none;stroke:none" + d="m 470.92728,507.98887 -6.00498,0.63511 0.24648,4.10555 5.69839,-1.1661 0.0601,-3.57456 z" + id="path6311-1" + sodipodi:nodetypes="ccccc" /> + <path + inkscape:connector-curvature="0" + style="fill:none;stroke:#ffffff;stroke-width:1.22622585px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 471.42015,516.19988 1.02383,7.90446" + id="path6321-0" + sodipodi:nodetypes="cc" /> + <path + transform="matrix(0.4357219,0,0,0.4357219,373.84569,283.24992)" + d="m 207.51493,518.42187 c 0,0.51107 -0.41431,0.92538 -0.92538,0.92538 -0.51107,0 -0.92537,-0.41431 -0.92537,-0.92538 0,-0.51106 0.4143,-0.92537 0.92537,-0.92537 0.51107,0 0.92538,0.41431 0.92538,0.92537 z" + sodipodi:ry="0.92537314" + sodipodi:rx="0.92537314" + sodipodi:cy="518.42188" + sodipodi:cx="206.58955" + id="path23475" + style="color:#000000;fill:#000000;stroke:none;stroke-width:0.22950419000000000;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.0586461,0,0,1.0586461,-27.969181,-28.729696)" + id="use23477" + xlink:href="#path23475" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(0,-2.2081683)" + id="use23479" + xlink:href="#use23477" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(-0.69823087,1.0789188)" + id="use23481" + xlink:href="#use23479" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.3762691,0,0,1.3762691,-175.63564,-191.13423)" + id="use23483" + xlink:href="#use23477" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.3762691,0,0,1.3762691,-175.96745,-192.06739)" + id="use23485" + xlink:href="#use23479" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.3762691,0,0,1.3762691,-175.6304,-191.57278)" + id="use23487" + xlink:href="#use23481" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.5012295,0,0,1.5012295,-233.37625,-255.20287)" + id="use23489" + xlink:href="#use23483" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.5012295,0,0,1.5012295,-233.50101,-255.12925)" + id="use23491" + xlink:href="#use23485" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.5012295,0,0,1.5012295,-233.25387,-255.19482)" + id="use23493" + xlink:href="#use23487" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.4856427,0,0,1.4856427,-226.34972,-247.01891)" + id="use23495" + xlink:href="#use23489" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.4856427,0,0,1.4856427,-226.14425,-246.95651)" + id="use23497" + xlink:href="#use23491" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="matrix(1.4856427,0,0,1.4856427,-226.09634,-247.25898)" + id="use23499" + xlink:href="#use23493" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(-4.2358148,-1.3033276)" + id="use23501" + xlink:href="#path23475" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(0.44801887,2.6881132)" + id="use23503" + xlink:href="#use23501" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(-4.7245626,0)" + id="use23505" + xlink:href="#use23485" + y="0" + x="0" /> + <use + height="1052.3622" + width="744.09448" + transform="translate(0.69239279,4.1136278)" + id="use23509" + xlink:href="#use23505" + y="0" + x="0" /> + </g> + <g + transform="translate(-1.367187e-5,-1.000977e-6)" + id="exchange-positions" + inkscape:label="#g5791"> + <rect + y="217.9579" + x="1105.989" + height="24" + width="24" + id="rect5511" + style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + transform="translate(1106.989,-822.8055)" + id="g6870"> + <rect + style="fill:none;stroke:url(#linearGradient6608);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6878" + width="9.674352" + height="9.673169" + x="0.462824" + y="1042.226" /> + <rect + style="fill:url(#linearGradient6610);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6612);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6880" + width="7.840812" + height="7.835659" + x="1.379594" + y="1043.145" /> + </g> + <g + id="g6888" + transform="translate(1119.244,-812.1375)"> + <rect + y="1042.226" + x="0.462824" + height="9.673169" + width="9.674352" + id="rect6890" + style="fill:none;stroke:url(#linearGradient6614);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="1043.145" + x="1.379594" + height="7.835659" + width="7.840812" + id="rect6892" + style="fill:url(#linearGradient6616);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient6618-9);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="g6894" + transform="matrix(-1.5,0,0,-1.5,1679.065,1036.244)" + style="fill:#ffff00"> + <path + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 373.1989,533.2837 0,0.7 3,0 1.1645,1 0,2.5154 -1.2973,0 1.6269,1.9968 1.6838,-1.9968 -1.2954,0 0,-2.782 -1.6826,-1.4334 -3.1999,0 z" + id="path6896" + sodipodi:nodetypes="cccccccccccc" /> + </g> + <g + style="fill:#ffff00" + transform="matrix(1.5,0,0,1.5,556.9348,-576.9256)" + id="g5473"> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" + id="path5524" + d="m 373.1989,533.2837 0,0.7 3,0 1.1645,1 0,2.5154 -1.2973,0 1.6269,1.9968 1.6838,-1.9968 -1.2954,0 0,-2.782 -1.6826,-1.4334 -3.1999,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + </g> + </g> + <g + id="exchange-positions-zorder" + transform="translate(31.999986,-26.000001)" + inkscape:label="exchange-positions-zorder"> + <rect + y="244" + x="1106" + height="24" + width="24" + id="rect5511-4" + style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" /> + <g + transform="matrix(0.8490566,0,0,0.8490566,1107,-639.5161)" + id="g6870-3"> + <rect + style="fill:none;stroke:url(#linearGradient8772);stroke-width:0.92564797;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6878-1" + width="9.6743517" + height="9.6731691" + x="0.46282399" + y="1042.226" /> + <rect + style="fill:url(#linearGradient8774);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8776);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect6880-9" + width="7.8408122" + height="7.835659" + x="1.379594" + y="1043.145" /> + </g> + <g + id="g6888-1" + transform="matrix(0.8490566,0,0,0.8490566,1120,-632.5151)"> + <rect + y="1042.226" + x="0.46282399" + height="9.6731691" + width="9.6743517" + id="rect6890-0" + style="fill:none;stroke:url(#linearGradient8766);stroke-width:0.92564797;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="1043.145" + x="1.379594" + height="7.835659" + width="7.8408122" + id="rect6892-9" + style="fill:url(#linearGradient8768);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8770);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + id="g6894-4" + transform="matrix(-1.214009,0,0,-1.214009,1572.567,906.4111)" + style="fill:#ffff00"> + <path + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 372.8308,534.9312 0,0.7 5.0155,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.2154,0 z" + id="path6896-5" + sodipodi:nodetypes="cccccccccccc" + inkscape:connector-curvature="0" /> + </g> + <g + style="fill:#ffff00" + transform="matrix(1.214009,0,0,1.214009,661.8316,-398.1738)" + id="g5473-6"> + <path + sodipodi:nodetypes="cccccccccccc" + id="path5524-2" + d="m 373.9715,533.0883 0,0.7 5.606,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.8059,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + inkscape:connector-curvature="0" /> + </g> + <use + xlink:href="#path10475" + height="1250" + width="1250" + id="use7638-0" + y="0" + x="0" + style="display:inline" + transform="translate(1155.035,83.0092)" /> + <use + xlink:href="#path10483" + height="1250" + width="1250" + id="use8589-6" + y="0" + x="0" + style="display:inline" + transform="translate(1152.062,76.0092)" /> + <use + transform="translate(1155.062,79.0092)" + style="display:inline" + x="0" + y="0" + id="use7946" + width="1250" + height="1250" + xlink:href="#path10483" /> + <path + id="path10449-0" + d="m 1116.127,258 -0.936,0 0,5.4545 -1.873,0 2.256,2.5524 2.426,-2.5524 -1.873,0 0,-5.4545 z" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="cccccccc" + inkscape:connector-curvature="0" /> + <path + id="path10449-0-8" + d="m 1112.236,266 -0.882,0 0,-2.9358 0,-2.5187 -1.763,0 2.373,-2.3834 2.036,2.3834 -1.764,0 0,5.4545 z" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="ccccccccc" + inkscape:connector-curvature="0" /> + </g> + <g + id="exchange-positions-clockwise" + transform="translate(23.99999,-26)" + inkscape:label="exchange-positions-clockwise"> + <rect + style="opacity:0;fill:none;stroke:none;stroke-width:1;marker:none;display:inline" + id="rect8798" + width="24" + height="24" + x="1146" + y="244" /> + <g + id="g8800" + transform="matrix(0.8490566,0,0,0.8490566,1147,-639.5161)"> + <rect + y="1042.226" + x="0.462824" + height="9.673169" + width="9.674352" + id="rect8802" + style="fill:none;stroke:url(#linearGradient8980);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <rect + y="1043.145" + x="1.379594" + height="7.835659" + width="7.840812" + id="rect8804" + style="fill:url(#linearGradient8982);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8984);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + </g> + <g + transform="matrix(0.8490566,0,0,0.8490566,1160,-632.5151)" + id="g8806"> + <rect + style="fill:none;stroke:url(#linearGradient8986);stroke-width:0.925648;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8808" + width="9.674352" + height="9.673169" + x="0.462824" + y="1042.226" /> + <rect + style="fill:url(#linearGradient8988);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient8990);stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect8810" + width="7.840812" + height="7.835659" + x="1.379594" + y="1043.145" /> + </g> + <g + style="fill:#ffff00" + transform="matrix(-1.214009,0,0,-1.214009,1612.567,906.4111)" + id="g8812"> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccccccccccc" + id="path8814" + d="m 372.8308,534.9312 0,0.7 5.0155,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.2154,0 z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" /> + </g> + <g + id="g8816" + transform="matrix(1.214009,0,0,1.214009,701.8316,-398.1738)" + style="fill:#ffff00"> + <path + inkscape:connector-curvature="0" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 373.9715,533.0883 0,0.7 5.606,0 1.1646,1 0,0.8679 -1.2973,0 1.6268,1.9968 1.6838,-1.9968 -1.2953,0 0,-1.1346 -1.6827,-1.4333 -5.8059,0 z" + id="path8818" + sodipodi:nodetypes="cccccccccccc" /> + </g> + <g + inkscape:transform-center-x="3.042784" + transform="matrix(0.5350629,0.5892249,-0.5892249,0.5350629,686.558,-576.3326)" + id="g8956"> + <path + inkscape:connector-curvature="0" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0;marker:none;display:inline" + d="m 1173.915,279.6085 c 3.028,0 5.485,-2.458 5.485,-5.4866 0,-3.0286 -2.457,-5.4866 -5.485,-5.4866" + id="path11132-6" + sodipodi:nodetypes="csc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cccc" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + d="m 1172.21,279.2058 3.771,-3.1433 0,6.2868 -3.771,-3.1435 z" + id="path11140-4" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="csc" + id="path8948" + d="m 1173.102,268.4294 c -3.028,0 -5.485,2.458 -5.485,5.4866 0,3.0286 2.457,5.4866 5.485,5.4866" + style="color:#000000;fill:none;stroke:#c80000;stroke-width:1.5077016;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:1.5077017, 1.5077017;stroke-dashoffset:0.3015402;marker:none;display:inline" /> + <path + inkscape:connector-curvature="0" + id="path8950" + d="m 1174.61,268.7807 -3.771,3.1434 0,-6.2867 3.771,3.1433 z" + style="fill:#c80000;fill-opacity:1;fill-rule:evenodd;stroke:none" + sodipodi:nodetypes="cccc" /> + </g> + </g> + <g + id="text_remove_kerns" + transform="translate(-693.87,270.0361)"> + <g + transform="matrix(0.922438,0,0,0.922438,106.4646,4.828925)" + id="g2607"> + <rect + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.7402338px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3019" + width="29.18541" + height="29.19199" + x="1352.876" + y="51.67942" /> + <path + id="text3027" + d="m 1357.349,63.74015 -1.275,3.44056 2.555,0 -1.28,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.976,0 -0.634,-1.77353 -3.13,0 -0.633,1.77353 -0.991,0 2.652,-6.91352 m 7.304,0.92149 -1.275,3.44056 2.554,0 -1.279,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.977,0 -0.633,-1.77353 -3.131,0 -0.632,1.77353 -0.992,0 2.653,-6.91352" + style="font-size:7.9593143px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:102.9672503%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" + inkscape:connector-curvature="0" /> + <path + id="text3097" + d="m 1370.815,63.74015 -1.275,3.44056 2.555,0 -1.28,-3.44056 m -0.531,-0.92149 1.066,0 2.647,6.91352 -0.977,0 -0.632,-1.77353 -3.131,0 -0.633,1.77353 -0.991,0 2.651,-6.91352 m 7.305,0.92149 -1.275,3.44056 2.554,0 -1.279,-3.44056 m -0.53,-0.92149 1.065,0 2.647,6.91352 -0.977,0 -0.633,-1.77353 -3.131,0 -0.633,1.77353 -0.99,0 2.652,-6.91352" + style="font-size:7.9593143px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:102.9672503%;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;font-family:Bitstream Vera Sans" + inkscape:connector-curvature="0" /> + </g> + <rect + y="51.96389" + x="1353.87" + height="28" + width="28" + id="rect6752" + style="font-size:12px;fill:none;stroke:none" /> + </g> + <g + id="text_line_spacing" + transform="translate(-0.0508118,0.0123038)"> + <rect + y="321.9877" + x="480.0508" + height="28" + width="28" + id="rect6696" + style="font-size:12px;fill:none;stroke:none" /> + <g + transform="translate(-787.9306,270.3015)" + id="g7600"> + <use + xlink:href="#g3805" + height="1250" + width="1250" + transform="matrix(0.684222,0,0,0.684222,1257.669,-36.0664)" + id="use3810" + y="0" + x="0" /> + <g + transform="matrix(0.684211,0,0,0.684211,1257.617,-22.11736)" + id="g3813"> + <path + inkscape:connector-curvature="0" + style="font-size:24px;fill:url(#linearGradient12388);fill-opacity:1;stroke:#000000;stroke-width:1;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none" + d="m 33,129.5 5,0 6.5,18 -4,0 -1,-2.5 -8,0 -1,2.5 -4,0 6.5,-18 z m 5.5,12 -3,-8.5 -3,8.5 6,0 z" + id="path3815" + sodipodi:nodetypes="ccccccccccccc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path3817" + d="M 33.5,130.5 28,146" + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:1.0000002px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path3819" + d="m 38,142.5244 -5.5,0" + style="fill:url(#radialGradient12390);fill-opacity:0.75;fill-rule:evenodd;stroke:url(#linearGradient12392);stroke-width:1.0000002px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + </g> + <g + id="text_word_spacing" + transform="matrix(0.942859,0,0,0.942859,-695.392,273.9242)"> + <g + transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" + id="g7621-3"> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect6706-6" + width="29.92172" + height="30" + x="1310" + y="49.93628" /> + </g> + <g + transform="matrix(1.060604,0,0,1.060604,769.377,-305.3736)" + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill:#0000ff;fill-opacity:1;stroke:#000000;stroke-width:0.5;font-family:Arial;-inkscape-font-specification:Arial" + id="text11660"> + <path + style="font-weight:bold;color:#000000;fill:url(#linearGradient5857-1);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.9999999;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="M 510,347.3125 510,349 c 0.2685,0.074 0.5104,0.2153 0.7187,0.4375 0.3125,0.3281 0.4532,0.8021 0.4688,1.4375 l -1.1875,0 0,1.3437 3.375,0 c 0.031,-1.6822 -0.3177,-2.9062 -1.0313,-3.7187 -0.5988,-0.6862 -1.3781,-1.0772 -2.3437,-1.1875 z m 1.0625,5.7812 c -0.1198,0.4167 -0.2969,0.7188 -0.5313,0.9063 -0.1565,0.1253 -0.3258,0.2084 -0.5312,0.25 l 0,1.6562 c 0.7568,-0.048 1.4126,-0.2317 1.9375,-0.5937 0.6094,-0.4219 1.0312,-1.0417 1.3125,-1.8438 l -2.1875,-0.375 z" + transform="translate(8.87136e-6,9.40804e-6)" + id="path11665" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + d="m 522.7891,355.75 -2.0391,0 0,-1.2188 c -0.3386,0.474 -0.7396,0.8282 -1.2031,1.0625 -0.4584,0.2292 -0.9219,0.3438 -1.3907,0.3438 -0.9531,0 -1.7708,-0.3828 -2.4531,-1.1484 -0.6771,-0.7709 -1.0156,-1.8438 -1.0156,-3.2188 0,-1.4062 0.3307,-2.4739 0.9922,-3.2031 0.6614,-0.7344 1.4974,-1.1016 2.5078,-1.1016 0.9271,0 1.7292,0.3854 2.4062,1.1563 l 0,-4.125 2.1954,0 0,11.4531 m -5.8594,-4.3281 c 0,0.8854 0.1224,1.526 0.3672,1.9218 0.3541,0.573 0.8489,0.8594 1.4843,0.8594 0.5052,0 0.9349,-0.2135 1.2891,-0.6406 0.3542,-0.4323 0.5313,-1.0755 0.5313,-1.9297 0,-0.9531 -0.1719,-1.638 -0.5157,-2.0547 -0.3437,-0.4218 -0.7838,-0.6328 -1.3203,-0.6328 -0.5208,0 -0.9583,0.2084 -1.3125,0.625 -0.3489,0.4115 -0.5234,1.0287 -0.5234,1.8516" + style="font-weight:bold;color:#000000;fill:url(#linearGradient5857-64);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path11667" /> + <path + inkscape:connector-curvature="0" + d="m 533.2031,347.4531 0,1.75 -1.5,0 0,3.3438 c 0,0.6771 0.013,1.0729 0.039,1.1875 0.031,0.1093 0.096,0.2005 0.1953,0.2734 0.1042,0.073 0.2292,0.1094 0.375,0.1094 0.2031,0 0.4974,-0.07 0.8828,-0.211 l 0.1875,1.7032 c -0.5104,0.2187 -1.0885,0.3281 -1.7343,0.3281 -0.3959,0 -0.7526,-0.065 -1.0704,-0.1953 -0.3177,-0.1354 -0.552,-0.3073 -0.7031,-0.5156 -0.1458,-0.2136 -0.2474,-0.5 -0.3047,-0.8594 -0.047,-0.2552 -0.07,-0.7708 -0.07,-1.5469 l 0,-3.6172 -1.0078,0 0,-1.75 1.0078,0 0,-1.6484 2.2032,-1.2813 0,2.9297 1.5,0" + style="font-weight:bold;color:#000000;fill:url(#linearGradient5621-6);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path11669" /> + <path + style="font-weight:bold;color:#000000;fill:url(#linearGradient5621-8);fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.684211;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + d="m 534.75,344.2812 0,11.4688 2.1875,0 0,-4.1563 c 0,-0.6979 0.057,-1.2395 0.1875,-1.5937 0.1354,-0.3594 0.3385,-0.6042 0.625,-0.7813 0.077,-0.048 0.1448,-0.09 0.2279,-0.125 l 0,-1.4687 c -0.3851,0.2058 -0.714,0.4934 -1.0404,0.875 l 0,-4.2188 z" + transform="translate(8.87136e-6,9.40804e-6)" + id="path11671" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccc" /> + <path + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0;word-spacing:0;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" + d="m 537.9836,347.3884 c -0.2626,0.1113 -0.5715,0.3803 -0.7961,0.5803 l 0,-3.6875 0,-0.25 -0.25,0 -2.1875,0 -0.25,0 0,0 0,0.25 0,11.4688 0,0.25 0.25,0 2.1875,0 0.25,0 0,-0.25 0,-4.1563 c 0,-0.6842 0.078,-1.201 0.1875,-1.5 l -0.031,0 c 0.1195,-0.3172 0.2875,-0.5055 0.5312,-0.6562 0.06,-0.037 0.055,-0.106 0.1334,-0.1309 M 535,344.5312 l 1.6875,0 0,3.9688 0,0.6875 0.4375,-0.5313 c 0.1921,-0.2245 0.638,-0.5655 0.846,-0.7209 l 0,0.7812 c -0.044,0.022 -0.3031,0.257 -0.346,0.2835 -0.3292,0.2035 -0.5675,0.5047 -0.7188,0.9062 l -0.031,0 c -0.1504,0.4094 -0.1875,0.976 -0.1875,1.6875 l 0,3.9063 -1.6875,0 0,-10.9688 z" + id="path11671-3" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccc" /> + <path + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:125%;letter-spacing:0;word-spacing:0;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:none;stroke-width:0.5;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" + d="m 509.9927,349.2942 c 0.2272,0.063 0.3601,0.1092 0.5385,0.2995 l 0,0.031 c 0.2036,0.2137 0.2632,0.583 0.3125,1 l -0.8437,0 0,1.8437 3.375,0 0.25,0 0,-0.25 c 0.032,-1.7191 -0.3247,-2.9993 -1.0938,-3.875 -0.6385,-0.7317 -1.5164,-1.1651 -2.5331,-1.2812 z m 2.1635,-0.638 c 0.6193,0.7052 0.9252,1.8183 0.9375,3.3125 l -3.0923,0 0,-0.8437 1.1861,0 0.25,0 0,-0.25 c -0.016,-0.6576 -0.1755,-1.207 -0.5313,-1.5938 -0.01,-0.01 -0.025,0.01 -0.031,0 -0.1799,-0.1865 -0.6563,-0.3916 -0.8791,-0.4835 l 0,-1.1765 c 0.8775,0.137 1.5383,0.4788 2.1603,1.035 z m -1.2812,4.1563 -0.062,0.2187 c -0.1106,0.3847 -0.2575,0.6373 -0.4375,0.7813 -0.1301,0.1041 -0.2074,0.1594 -0.3768,0.1865 l 0,2.1583 c 0.7896,-0.017 1.5178,-0.2313 2.0902,-0.626 0.6591,-0.4564 1.1124,-1.131 1.4062,-1.9688 l 0.094,-0.2812 -0.3125,-0.062 -2.1875,-0.375 -0.2187,-0.031 z m 0.3125,0.5625 1.625,0.2812 c -0.2595,0.5903 -0.5614,1.1123 -1.0313,1.4375 -0.4028,0.2779 -1.1988,0.4841 -1.7798,0.5572 l 0,-1.1563 c 0.1572,-0.057 0.5579,-0.2045 0.6861,-0.3071 0.2284,-0.1827 0.3745,-0.4901 0.5,-0.8125 z" + id="path11665-7" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccccccccccccccccccccccccccccccccccccccccccc" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path3817-5" + d="m 537.7359,348.3968 c -0.26,0.1703 -0.5421,0.4041 -0.8021,0.75" + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + d="m 515.1958,351.9239 c 0,-1.4062 0.2202,-2.5181 0.8817,-3.2473 0.6614,-0.7344 1.5416,-0.9911 2.552,-0.9027" + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12203);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" + id="path11667-0" + sodipodi:nodetypes="ccc" /> + <path + inkscape:connector-curvature="0" + d="m 520.929,352.4257 c 0,0.7286 -0.286,1.2427 -0.7661,1.7266 -0.3607,0.3635 -0.8208,0.5355 -1.3442,0.4897" + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12201);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" + id="path11667-0-3" + sodipodi:nodetypes="csc" /> + <path + inkscape:connector-curvature="0" + d="m 511.4152,353.5647 c -0.2823,0.6881 -0.5979,0.9388 -1.1869,1.2819" + style="font-size:16px;font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;color:#000000;fill:none;stroke:url(#linearGradient12220);stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;font-family:Arial;-inkscape-font-specification:Arial" + id="path11667-0-3-8" + sodipodi:nodetypes="cc" /> + </g> + <path + style="fill:#b2dafe;fill-opacity:1;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 1333.3,63.71495 1.046,0" + id="path3819-4" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path3817-9" + d="m 1330.49,63.76263 0.488,-9.6e-4" + style="fill:#ffffff;fill-opacity:0.75;fill-rule:evenodd;stroke:#b2dafe;stroke-width:0.7256771px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + <g + id="text_letter_spacing" + transform="matrix(0.942859,0,0,0.942859,-725.403,273.9242)"> + <g + transform="matrix(0.992487,0,0,0.989897,10.11498,1.557598)" + id="g7621"> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect6706" + width="29.92172" + height="30" + x="1310" + y="49.93628" /> + </g> + <g + id="g11383" + transform="translate(-0.306361,0)"> + <use + xlink:href="#use3810" + x="0" + y="0" + id="use11377" + transform="matrix(1.060604,0,0,1.060604,-41.64705,2.913479)" + width="1250" + height="1250" /> + <use + xlink:href="#g3813" + x="0" + y="0" + id="use11379" + transform="matrix(1.060604,0,0,1.060604,-26.74292,-11.87951)" + width="1250" + height="1250" /> + </g> + </g> + <g + id="text_horz_kern" + transform="translate(-668.472,236.5637)"> + <g + transform="translate(0.437484,0)" + id="g7628"> + <path + style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1457608;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" + d="m 1283.273,89.56319 0,20.74611" + id="path2219" + transform="translate(-1.25,-0.5)" + inkscape:connector-curvature="0" /> + <use + xlink:href="#g11383" + height="1250" + width="1250" + id="use11389" + y="0" + x="0" + transform="matrix(0.942859,0,0,0.942859,32.60846,37.50304)" /> + </g> + <g + transform="matrix(0.935775,0,0,0.933333,42.8409,7.095812)" + id="g7662-8"> + <g + id="g6738-8" + transform="translate(0.232684,0.559354)" /> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect6736-4" + width="29.92172" + height="30" + x="1309.75" + y="83.93627" /> + </g> + </g> + <g + id="text_vert_kern" + transform="translate(-741.483,236.5637)"> + <g + transform="matrix(0.935775,0,0,0.933333,85.72702,7.095784)" + id="g7662"> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect6736" + width="29.92172" + height="30" + x="1309.884" + y="83.93627" /> + </g> + <g + id="g7648"> + <path + id="path2221" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1.199;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" + d="m 1324.696,87.52091 0,21.71199 m 13.383,-7.8478 -13.191,0 m -0.5,4.5 -13,0" + sodipodi:nodetypes="cccccc" + transform="translate(0.755145,1.059354)" + inkscape:connector-curvature="0" /> + <use + xlink:href="#use11377" + height="1250" + width="1250" + transform="matrix(0.942859,0,0,0.942859,75.57607,38.50326)" + id="use11392" + y="0" + x="0" /> + </g> + <use + xlink:href="#g3813" + height="1250" + width="1250" + transform="translate(50.538,22.7904)" + id="use3728" + y="0" + x="0" /> + </g> + <g + id="text_rotation" + transform="translate(-724.5715,236.3563)"> + <g + transform="matrix(0.935775,0,0,0.933333,88.85183,7.069861)" + id="g7699"> + <g + id="g6769" + transform="translate(-0.990112,0.559353)" /> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect6775" + width="29.92172" + height="30" + x="1352.59" + y="84.18627" /> + </g> + <g + transform="matrix(0.9996731,0,0,1,2.594501,1.121155e-6)" + id="g7685"> + <path + id="path3005" + style="color:#000000;fill:none;stroke:#000000;stroke-width:1.1707308;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dashoffset:0;marker:none;display:inline;font-family:Bitstream Vera Sans" + d="m 1366.121,88.83886 0,21.19484 m 11.923,0.04 -11.625,-6.625" + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" /> + <use + xlink:href="#use11392" + height="1250" + width="1250" + transform="translate(40.65159,-3.000001)" + id="use11398" + y="0" + x="0" /> + <use + xlink:href="#g3813" + x="0" + y="0" + id="use3744" + transform="matrix(0.866026,0.5,-0.5,0.866026,301.6845,-602.4203)" + width="1250" + height="1250" /> + </g> + <g + transform="matrix(0.935775,0,0,0.933333,167.3071,6.369855)" + id="g7641"> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect15695" + width="29.92172" + height="30" + x="1268.75" + y="84.93627" /> + </g> + </g> + <g + id="text_subscript" + transform="matrix(0.942859,0,0,0.942859,-575.14529,244.63136)" + style="fill:#cccccc"> + <rect + style="font-size:12px;fill:none;stroke:none" + id="rect5911" + width="29.921721" + height="30" + x="1310" + y="49.936279" /> + <g + transform="matrix(1.060604,0,0,1.060604,610.00136,-259.457)" + style="font-size:24px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill:none;stroke:#000000;stroke-width:0.75;stroke-opacity:1;font-family:Arial;-inkscape-font-specification:Arial Bold Italic" + id="text5975"> + <path + inkscape:connector-curvature="0" + d="M 669.69141,306.50781 666.59766,310 l -4.125,0 5.7539,-6.375 -3.16406,-6.07031 3.57422,0 1.8164,3.55078 3.15235,-3.55078 4.08984,0 -5.77734,6.45703 3.14062,5.98828 -3.57422,0 -1.79296,-3.49219" + style="color:#000000;fill:url(#linearGradient5918-3-6);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path5935" /> + <path + inkscape:connector-curvature="0" + d="m 677.66193,306.71043 2.17855,0 0.54844,4.02955 c 0.13711,1.03596 0.21328,1.76214 0.22852,2.17855 0.28438,-0.82774 0.6754,-1.70119 1.17307,-2.62035 l 1.93479,-3.58775 2.31566,0 -4.99695,8.88177 c -0.41134,0.73634 -0.73634,1.25177 -0.97501,1.54631 -0.2336,0.29453 -0.51798,0.52559 -0.85314,0.69317 -0.33008,0.16758 -0.72872,0.25137 -1.19591,0.25137 -0.46212,0 -0.98264,-0.0813 -1.56155,-0.24375 l 0.19043,-1.6301 c 0.26407,0.0762 0.52052,0.11426 0.76935,0.11426 0.67032,0 1.2213,-0.50782 1.65295,-1.52346 l -1.4092,-8.08957" + style="font-size:65.00091553%;baseline-shift:sub;color:#000000;fill:url(#linearGradient5932-9-2);fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:0.75;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + id="path5937" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6782" + d="m 663.8155,309.4334 4.86915,-5.38212 m 1.99525,-2.25349 3.13212,-3.60616" + style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6792" + d="m 677.16618,316.79906 c 0.90551,0 1.48175,-0.28808 2.26378,-1.60523 m 1.6464,-2.42842 2.94292,-5.51541" + style="fill:none;stroke:#83c3fd;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + id="text_superscript"> + <rect + y="292" + x="629.99963" + height="27.999998" + width="28.000008" + id="rect5896" + style="font-size:12px;fill:none;stroke:none" /> + <g + id="text5926" + style="font-size:24px;font-style:italic;font-variant:normal;font-weight:bold;font-stretch:normal;line-height:125%;letter-spacing:0;word-spacing:0;fill-opacity:1;stroke:#000000;stroke-width:0.75;font-family:Arial;-inkscape-font-specification:Arial Bold Italic"> + <path + id="path5908" + style="fill:url(#linearGradient5918);fill-opacity:1" + d="M 639.69141,308.50781 636.59766,312 l -4.125,0 5.7539,-6.375 -3.16406,-6.07031 3.57422,0 1.8164,3.55078 3.15235,-3.55078 4.08984,0 -5.77734,6.45703 3.14062,5.98828 -3.57422,0 -1.79296,-3.49219" + inkscape:connector-curvature="0" /> + <path + id="path5910" + style="font-size:65.00091553%;baseline-shift:super;fill:url(#linearGradient5932);fill-opacity:1;stroke:#000000;stroke-width:0.75" + d="m 647.66193,294.31043 2.17855,0 0.54844,4.02955 c 0.13711,1.03596 0.21328,1.76214 0.22852,2.17855 0.28438,-0.82775 0.6754,-1.70119 1.17307,-2.62035 l 1.93479,-3.58775 2.31566,0 -4.99695,8.88177 c -0.41134,0.73634 -0.73634,1.25177 -0.97501,1.54631 -0.2336,0.29453 -0.51798,0.52559 -0.85314,0.69317 -0.33008,0.16758 -0.72872,0.25137 -1.19591,0.25137 -0.46212,0 -0.98264,-0.0812 -1.56155,-0.24375 l 0.19043,-1.6301 c 0.26407,0.0762 0.52052,0.11426 0.76935,0.11426 0.67032,0 1.2213,-0.50782 1.65295,-1.52346 l -1.4092,-8.08957" + inkscape:connector-curvature="0" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6006" + d="m 633.8112,311.45286 4.86915,-5.38212 m 1.99525,-2.25349 3.13212,-3.60616" + style="fill:none;stroke:#808080;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + sodipodi:nodetypes="cccc" + inkscape:connector-curvature="0" + id="path6790" + d="m 647.19598,304.48388 c 0.90551,0 1.48175,-0.28808 2.26378,-1.60523 m 1.6464,-2.42842 2.94292,-5.51541" + style="fill:none;stroke:#82c2fe;stroke-width:0.5;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + </g> + </g> + <g + style="display:inline" + id="tool-measure" + transform="matrix(0,0.99999999,0.99999999,0,303.35939,23.950225)" + inkscape:label="#tool-measure"> + <rect + transform="matrix(-0.5,0.86602541,0.86602541,0.5,0,0)" + style="fill:url(#linearGradient10236);fill-opacity:1;fill-rule:evenodd;stroke:url(#linearGradient10238);stroke-width:0.99999982;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect10234" + width="9" + height="17" + x="-125.51743" + y="455.10529" /> + <g + transform="matrix(-0.5,0.86602541,0.86602541,0.5,583.01743,-336.60527)" + id="g11186"> + <rect + y="117.5082" + x="456.5083" + height="18.991779" + width="10.99167" + id="rect10232" + style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <g + id="g11166" + transform="matrix(-0.50000001,-0.86602541,-0.86602541,0.50000001,827.03618,462.44953)"> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 468.44435,154.45624 0.99999,1.73204" + id="path11168" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path11170" + d="m 469.17643,151.72417 c 0,0 2,3.4641 2,3.4641" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 471.90848,152.45622 1,1.73205" + id="path11172" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <path + inkscape:connector-curvature="0" + id="path11174" + d="m 472.64053,149.72417 c 0,0 2,3.4641 2,3.4641" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" /> + <path + inkscape:connector-curvature="0" + id="path11176" + d="m 475.37258,150.45622 0.99996,1.73206" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 476.10463,147.72417 c 0,0 2,3.4641 2,3.4641" + id="path11180" + inkscape:connector-curvature="0" /> + <path + inkscape:connector-curvature="0" + id="path11182" + d="m 478.83668,148.45622 1,1.73205" + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + sodipodi:nodetypes="cc" /> + <path + style="fill:none;stroke:#000000;stroke-width:1px;stroke-linecap:round;stroke-linejoin:miter;stroke-opacity:1" + d="m 479.56873,145.72417 c 0,0 2,3.4641 2,3.4641" + id="path11184" + inkscape:connector-curvature="0" /> + </g> + </g> + </g> + <g + id="g7621-2" + transform="matrix(0.9357753,0,0,0.9333333,-316.61139,-22.531117)"> + <rect + y="49.936279" + x="1310" + height="30" + width="29.921721" + id="rect6706-4" + style="font-size:12px;fill:none;stroke:none" /> + </g> + <g + id="snap-text-baseline" + inkscape:label="#toggle_snap_text_baseline"> + <path + style="fill:none;stroke:#008000;stroke-width:0.94135743px;stroke-linecap:square;stroke-linejoin:miter;stroke-opacity:1" + d="m 912.5,44.986907 12,-1e-6" + id="path13356" + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" /> + <use + height="1250" + width="1250" + transform="translate(-363.35011,-20.145792)" + id="use11377-6" + y="0" + x="0" + xlink:href="#use3810" /> + <rect + transform="matrix(0.70710678,-0.70710678,0.70710678,0.70710678,0,0)" + style="color:#000000;fill:#6464ff;fill-opacity:0.39215692;fill-rule:evenodd;stroke:#008000;stroke-width:0.90510172;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" + id="rect3224-2-8-6-5-8" + width="3.5840631" + height="3.621212" + x="611.27881" + y="674.88129" /> + </g> + <rect + style="color:#000000;fill:none;stroke:none;stroke-width:0.4532662;marker:none;display:inline" + id="rect2808-3" + width="24" + height="24" + x="930" + y="25" /> + <g + id="snap-others" + inkscape:label="#toggle_snap_others"> + <path + inkscape:connector-curvature="0" + sodipodi:nodetypes="cc" + id="path3570-5" + d="m 935,31.25 0,8.5" + style="fill:none;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <rect + y="30.1269" + x="932.9951" + height="4.01786" + width="4.0099" + id="rect3568-1" + style="color:#000000;fill:#ffffff;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;display:inline" /> + <path + sodipodi:nodetypes="cc" + inkscape:connector-curvature="0" + id="path6498-1-8" + d="m 939,39 6,-9" + style="color:#000000;fill:#c00000;fill-opacity:1;fill-rule:nonzero;stroke:#0065ff;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + transform="matrix(0.8749999,0,0,0.875,282.6876,5.625)" + d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530-3-7-6" + style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + <g + transform="translate(1.5,0.5)" + id="g13570"> + <path + inkscape:connector-curvature="0" + id="path6380-5" + d="m 943,37.5 0,3" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path6380-4-1" + d="m 943,41.5 0,3" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path6380-8-4" + d="m 939.5,41 3,0" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + <path + inkscape:connector-curvature="0" + id="path6380-4-0-5" + d="m 943.5,41 3,0" + style="color:#000000;fill:#000000;fill-opacity:1;fill-rule:nonzero;stroke:#000000;stroke-width:1px;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" /> + </g> + <path + transform="matrix(0.8749999,0,0,0.875,277.1876,14.625)" + d="m 755.5,33 a 2,2 0 1 1 -4,0 2,2 0 1 1 4,0 z" + sodipodi:ry="2" + sodipodi:rx="2" + sodipodi:cy="33" + sodipodi:cx="753.5" + id="path6530-3-7-6-0" + style="color:#000000;fill:#6464ff;fill-opacity:0.3921569;fill-rule:evenodd;stroke:#0000ff;stroke-width:1.1428572;stroke-linecap:round;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate" + sodipodi:type="arc" /> + </g> + <g + inkscape:label="#mesh-gradient" + id="mesh-gradient" + transform="translate(507.9575,294.89331)"> + <rect + style="color:#000000;fill:none;stroke:none" + id="box" + width="24" + height="24" + x="-19.9575" + y="90.106689" /> + <path + sodipodi:nodetypes="ccccc" + id="path6190" + d="m -0.4575,109.60669 c -3.5,-7.5 4.5,-7.5 0,-15 -7.5,4.5 -7.5,-3.5 -15,0 4.5,7.5 -3.5,7.5 0,15 7.5,-3.5 7.5,4.5 15,0 z" + style="fill:url(#linearGradient6212);fill-opacity:1;stroke:#3c3c3c;stroke-width:1px;stroke-linecap:round;stroke-linejoin:round;stroke-opacity:1" /> + <rect + style="fill:#ffffff;stroke:#000000;stroke-width:1" + id="rect6105" + width="4" + height="4" + x="-17.4575" + y="92.606689" /> + <use + transform="matrix(1,0,0,0.99644,13.7166,13.067552)" + xlink:href="#rect3568" + id="use3133" /> + <use + transform="matrix(1,0,0,0.99644,13.7265,-1.932448)" + xlink:href="#rect3568" + id="use3135" /> + <use + transform="matrix(1,0,0,0.99644,-1.2735,13.067552)" + xlink:href="#rect3568" + id="use3137" /> + </g> + <g + id="paint-gradient-mesh" + inkscape:label="#fill_mesh"> + <rect + style="fill:#99b6d4" + height="9.5" + width="9.5" + y="347" + x="1095.5" + id="rect3140" /> + <rect + style="fill:#ffffff" + height="9.5" + width="9.5" + y="357" + x="1095.5" + id="rect3142" /> + <rect + style="fill:#99b6d4" + height="9.5" + width="9.5" + y="357" + x="1105" + id="rect3144" /> + <rect + style="fill:#ffffff" + height="9.5" + width="9.5" + y="347" + x="1105" + id="rect3146" /> + <use + xlink:href="#rect4381" + transform="translate(425.035091 282.020218)" + id="use3148" /> + </g> + <g + id="paint-gradient-conical" + inkscape:label="#fill_conical"> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#ffffff" + sodipodi:type="arc" + sodipodi:start="0" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="1.0471976" + d="m1144.5 357a9.5 9.5 0 0 1 -4.75 8.2272l-4.8-8.23z" + id="path3145" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#ffffff" + sodipodi:type="arc" + sodipodi:start="4.1887902" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="5.2359878" + d="m1130.2 348.77a9.5 9.5 0 0 1 9.5 0l-4.7 8.23z" + id="path3147" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#99b6d4" + sodipodi:type="arc" + sodipodi:start="1.0471976" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="2.0943951" + d="m1139.8 365.23a9.5 9.5 0 0 1 -9.5 0l4.7-8.23z" + id="path3149" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#ffffff" + sodipodi:type="arc" + d="m1130.2 365.23a9.5 9.5 0 0 1 -4.7 -8.23h9.5z" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="3.1415927" + sodipodi:start="2.0943951" + id="path3151" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#99b6d4" + sodipodi:type="arc" + sodipodi:start="3.1415927" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="4.1887902" + d="m1125.5 357a9.5 9.5 0 0 1 4.75 -8.2272l4.8 8.23z" + id="path3153" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:#99b6d4" + sodipodi:type="arc" + d="m1139.8 348.77a9.5 9.5 0 0 1 4.7 8.23h-9.5z" + sodipodi:cy="357" + sodipodi:cx="1135" + sodipodi:end="6.2831853" + sodipodi:start="5.2359878" + id="path3155" /> + <path + sodipodi:rx="9.5" + sodipodi:ry="9.5" + style="fill:none;stroke:#000000" + sodipodi:type="arc" + d="m1144.5 357a9.5 9.5 0 1 1 -19 0 9.5 9.5 0 1 1 19 0z" + sodipodi:cy="357" + sodipodi:cx="1135" + id="path3157" /> + </g> + <g + id="dialog-filters" + inkscape:label="#dialog-filters"> + <path + sodipodi:nodetypes="cscccccc" + inkscape:connector-curvature="0" + id="path7138" + d="m 272.415,308.6281 c 0.094,-3.3143 5.6445,-3.5094 7.46,-3.5204 1.9957,-0.012 7.3463,0.2617 7.4598,3.4365 l -6.0191,6.2866 0,4.1909 c -1.4294,0.465 -1.6006,0.5246 -2.9496,0 L 278.3661,314.8308 Z" + style="opacity:0.909;fill:url(#linearGradient7163);fill-opacity:1;stroke:#000000;stroke-width:0.9143469;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:10;display:inline" /> + <path + d="m 294.9642,496.273 a 60.6092,14.6472 0 1 1 -121.2184,0 A 60.6092,14.6472 0 1 1 294.9642,496.273 Z" + sodipodi:ry="14.6472" + sodipodi:rx="60.6092" + sodipodi:cy="496.273" + sodipodi:cx="234.355" + id="path7140" + style="opacity:0.909;fill:url(#radialGradient7218);fill-opacity:1.0;stroke:url(#radialGradient7220);stroke-width:3.5711801;stroke-linecap:round;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:10;display:inline" + sodipodi:type="arc" + transform="matrix(0.115021,0,0,0.1903986,253.0723,212.7017)" /> + <rect + style="fill:none;stroke:none" + id="rect4326-5" + width="16" + height="16" + x="272" + y="304" /> + </g> + <g + id="symbols_old" + inkscape:label="#symbols" + transform="translate(0.6024061,-0.83343494)"> + <path + transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-108.76002,51.062605)" + d="m 339.00425,147.22294 c -0.55856,0.34108 -3.66676,-2.48281 -4.29893,-2.6522 -0.6527,-0.17489 -4.86217,0.67984 -5.21433,0.10313 -0.34109,-0.55856 2.48281,-3.66677 2.6522,-4.29893 0.17489,-0.65271 -0.67984,-4.86217 -0.10313,-5.21434 0.55856,-0.34108 3.66677,2.48281 4.29893,2.6522 0.65271,0.1749 4.86217,-0.67983 5.21434,-0.10312 0.34108,0.55856 -2.48282,3.66676 -2.6522,4.29893 -0.1749,0.6527 0.67983,4.86217 0.10312,5.21433 z" + inkscape:randomized="0" + inkscape:rounded="0.12956553" + inkscape:flatsided="false" + sodipodi:arg2="1.8079867" + sodipodi:arg1="1.0471976" + sodipodi:r2="3.4762988" + sodipodi:r1="6.9641943" + sodipodi:cy="141.19177" + sodipodi:cx="335.52216" + sodipodi:sides="4" + id="path6040-9" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#c80000;stroke-width:0.79027408;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.790274, 0.790274;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="star" /> + <path + transform="matrix(1.1987895,-0.31461843,0.30931067,1.2194987,-106.22945,53.360636)" + d="m 339.00425,147.22294 c -0.55856,0.34108 -3.66676,-2.48281 -4.29893,-2.6522 -0.6527,-0.17489 -4.86217,0.67984 -5.21433,0.10313 -0.34109,-0.55856 2.48281,-3.66677 2.6522,-4.29893 0.17489,-0.65271 -0.67984,-4.86217 -0.10313,-5.21434 0.55856,-0.34108 3.66677,2.48281 4.29893,2.6522 0.65271,0.1749 4.86217,-0.67983 5.21434,-0.10312 0.34108,0.55856 -2.48282,3.66676 -2.6522,4.29893 -0.1749,0.6527 0.67983,4.86217 0.10312,5.21433 z" + inkscape:randomized="0" + inkscape:rounded="0.12956553" + inkscape:flatsided="false" + sodipodi:arg2="1.8079867" + sodipodi:arg1="1.0471976" + sodipodi:r2="3.4762988" + sodipodi:r1="6.9641943" + sodipodi:cy="141.19177" + sodipodi:cx="335.52216" + sodipodi:sides="4" + id="path6040" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.70196078;fill-rule:evenodd;stroke:#000000;stroke-width:0.7902742;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="star" /> + </g> + <g + transform="translate(10.12068,24.83988)" + inkscape:label="#symbols" + id="symbols"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect14677" + width="16" + height="16" + x="319.423" + y="108.194" /> + <path + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient5545-0-70);fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.0000007;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + d="m 321.4694,109.627 c 4.013,-1.1346 7.9876,-1.2788 11.9072,0 -0.9623,3.0613 -0.1342,5.9645 -0.5253,8.9123 -0.3223,2.4291 -2.7191,3.8905 -5.3932,5.1263 -2.235,-1.2411 -4.943,-2.2279 -5.4283,-5.1263 C 321.5371,115.5973 322.3342,111.8965 321.4694,109.627 Z" + id="path13801" + inkscape:connector-curvature="0" + sodipodi:nodetypes="ccscsc" /> + <g + id="g14615" + style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + transform="matrix(0.0362255,0,0,0.0374743,341.0312,112.2468)"> + <path + sodipodi:nodetypes="czczc" + inkscape:connector-curvature="0" + id="path13803" + d="m -477.8634,129.033 c -47.7622,-35.34842 40.4745,-98.71298 71.2745,-29.15779 30.8001,69.55519 -22.9969,107.72809 -39.6868,64.79499 17.4149,-0.107 34.161,-19.3157 13.7689,-48.5962 C -452.899,86.79346 -476.4068,97.43427 -477.8634,129.033 Z" + style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <path + sodipodi:nodetypes="ccccccc" + inkscape:connector-curvature="0" + id="path13805" + d="m -406.5888,201.5225 c 42.8118,-38.3565 24.4831,-122.22255 -19.4385,-158.74789 9.1169,-27.50161 24.6669,-51.989057 51.026,-70.86957 21.4731,16.69615 40.2672,37.030722 51.0261,70.86957 -46.9482,33.5572 -62.3216,121.69019 -19.4385,158.74789 -7.7569,14.5018 -13.3081,31.1485 -31.5875,37.2323 C -389.3257,233.7161 -400.9014,219.5169 -406.5888,201.5225 Z" + style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <path + inkscape:transform-center-y="-7.288905" + inkscape:transform-center-x="-68.84826" + style="fill:url(#linearGradient15270-5);stroke:none;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill-opacity:1;fill-rule:evenodd;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + d="m -273.4425,129.033 c 47.7622,-35.34842 -40.4745,-98.71298 -71.2745,-29.15779 -30.8001,69.55519 22.9969,107.72809 39.6868,64.79499 -17.4149,-0.107 -34.161,-19.3157 -13.7689,-48.5962 C -298.4069,86.79346 -274.8991,97.43427 -273.4425,129.033 Z" + id="path13807" + inkscape:connector-curvature="0" + sodipodi:nodetypes="czczc" /> + <path + inkscape:connector-curvature="0" + id="path13809" + d="m -443.0312,121.4688 a 10.001,10.001 0 1 0 0,20 l 135.25,0 a 10.001,10.001 0 1 0 0,-20 L -443.0312,121.4688 Z" + style="font-size:xx-small;font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;text-indent:0;text-align:start;text-decoration:none;line-height:normal;letter-spacing:normal;word-spacing:normal;text-transform:none;direction:ltr;block-progression:tb;writing-mode:lr-tb;text-anchor:start;baseline-shift:baseline;color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient15270-5);fill-opacity:1;stroke:none;stroke-width:20;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;font-family:sans-serif;-inkscape-font-specification:sans-serif;fill-rule:evenodd" /> + </g> + </g> + <g + id="symbol-add" + inkscape:label="#symbols" + transform="translate(10.12068,44.83988)"> + <rect + y="108.194" + x="319.6498" + height="16" + width="16" + id="rect15227" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path10909" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" /> + <path + inkscape:connector-curvature="0" + id="path4685-2" + d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + sodipodi:nodetypes="cccccccccc" /> + </g> + <g + id="no-marker" + inkscape:label="#markers" + transform="translate(10.75523,88.20311)"> + <rect + y="107.8581" + x="319.3575" + height="16" + width="16" + id="rect3997" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <g + id="g7224" + transform="translate(-0.0655561,0.8269009)"> + <path + inkscape:connector-curvature="0" + id="path4011" + d="m 334.5089,115.0312 -14.1716,0" + style="fill:none;stroke:#000000;stroke-width:1.4;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0" /> + </g> + </g> + <g + transform="matrix(0,1,1,0,221.5126,-146.552)" + inkscape:label="#symbols" + id="symbol-remove"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff07f5;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect10952" + width="16" + height="16" + x="319.6498" + y="108.194" /> + <path + transform="matrix(1.101789,0,0,1.080243,-44.03243,-58.71167)" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path10954" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#cc0000;stroke-width:0.9166216;stroke-linecap:square;stroke-linejoin:round;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:0.9166216,1.8332432;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" /> + <path + sodipodi:nodetypes="cccccccccc" + style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:none;display:inline" + d="m 319.522,118.6983 0,-2.1228 7.6278,0 0,-5.3815 -2,0 2.8739,-3 2.8739,3 -2,0 L 328.8976,118.6983 Z" + id="path10956" + inkscape:connector-curvature="0" /> + </g> + <g + transform="translate(30.12068,44.83988)" + inkscape:label="#symbols" + id="symbol-smaller"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect10979" + width="16" + height="16" + x="319.6498" + y="108.194" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.6086934;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.6086934,0.6086934;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path10989" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" /> + <path + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path10981" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.9166217;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" /> + </g> + <g + id="symbol-bigger" + inkscape:label="#symbols" + transform="translate(30.12068,64.83988)"> + <rect + y="108.194" + x="319.6498" + height="16" + width="16" + id="rect11047" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#ff00ff;fill-opacity:0;fill-rule:evenodd;stroke:none;stroke-width:0.9868108;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" /> + <path + transform="matrix(1.659594,0,0,1.626301,-232.2048,-148.9271)" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path11049" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;stroke:#000000;stroke-width:0.6086935;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto;fill-opacity:0.7019608;fill-rule:evenodd" + sodipodi:type="arc" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;fill-opacity:1;fill-rule:evenodd;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215,0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path11051" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> + </g> + <g + transform="translate(30.12068,84.83988)" + inkscape:label="#symbols" + id="symbol-fit"> + <rect + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:url(#linearGradient15175-8);fill-opacity:1;fill-rule:evenodd;stroke:#3465a4;stroke-width:1.0000001;stroke-linecap:square;stroke-linejoin:miter;stroke-miterlimit:4;stroke-opacity:1;stroke-dasharray:1.0000001, 2.0000002;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="rect11107" + width="16" + height="16" + x="319.6498" + y="108.194" /> + <path + transform="matrix(2.894146,0,0,2.833322,-656.743,-353.6308)" + d="m 341.30778,163.0209 c 0,2.27157 -1.77451,4.11305 -3.96348,4.11305 l 0,-4.11305 z" + sodipodi:ry="4.113043" + sodipodi:rx="3.963478" + sodipodi:cy="163.0209" + sodipodi:cx="337.3443" + id="path11111" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:#99b7d6;fill-opacity:0.7019608;fill-rule:evenodd;stroke:#000000;stroke-width:0.3492142;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:none;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + sodipodi:type="arc" + sodipodi:start="0" + sodipodi:end="1.570796" /> + <path + sodipodi:type="arc" + style="color:#000000;color-interpolation:sRGB;color-interpolation-filters:linearRGB;fill:none;stroke:#c80000;stroke-width:0.9166215;stroke-linecap:butt;stroke-linejoin:round;stroke-miterlimit:0;stroke-opacity:1;stroke-dasharray:0.9166215, 0.9166215;stroke-dashoffset:0;marker:none;visibility:visible;display:inline;overflow:visible;enable-background:accumulate;clip-rule:nonzero;color-rendering:auto;image-rendering:auto;shape-rendering:auto;text-rendering:auto" + id="path11051-8" + sodipodi:cx="337.3443" + sodipodi:cy="163.0209" + sodipodi:rx="3.963478" + sodipodi:ry="4.113043" + d="m 341.30778,163.0209 c 0,2.27158 -1.77451,4.11305 -3.96348,4.11305 -2.18897,0 -3.96348,-1.84147 -3.96348,-4.11305 0,-2.27157 1.77451,-4.11304 3.96348,-4.11304 2.18897,0 3.96348,1.84147 3.96348,4.11304 z" + transform="matrix(1.101789,0,0,1.080243,-44.03243,-59.90819)" /> + </g> </svg> diff --git a/share/keys/default.xml b/share/keys/default.xml index 52bbd486c..00219c837 100644 --- a/share/keys/default.xml +++ b/share/keys/default.xml @@ -417,6 +417,8 @@ override) the bindings in the main default.xml. <bind key="b" modifiers="Alt,Shift" action="SelectionTrace" display="true" /> <bind key="B" modifiers="Alt,Shift" action="SelectionTrace" /> + <bind action="SelectionPixelArt" /> + <bind key="i" modifiers="Alt" action="ObjectsToPattern" display="true" /> <bind key="I" modifiers="Alt" action="ObjectsToPattern" /> diff --git a/share/keys/inkscape.xml b/share/keys/inkscape.xml index 52bbd486c..00219c837 100644 --- a/share/keys/inkscape.xml +++ b/share/keys/inkscape.xml @@ -417,6 +417,8 @@ override) the bindings in the main default.xml. <bind key="b" modifiers="Alt,Shift" action="SelectionTrace" display="true" /> <bind key="B" modifiers="Alt,Shift" action="SelectionTrace" /> + <bind action="SelectionPixelArt" /> + <bind key="i" modifiers="Alt" action="ObjectsToPattern" display="true" /> <bind key="I" modifiers="Alt" action="ObjectsToPattern" /> diff --git a/share/ui/menus-bars.xml b/share/ui/menus-bars.xml index 935bafb0e..ade758788 100644 --- a/share/ui/menus-bars.xml +++ b/share/ui/menus-bars.xml @@ -144,6 +144,7 @@ <menuitem action='ObjectToPath'/> <menuitem action='StrokeToPath'/> <menuitem action='Trace'/> + <menuitem action='PixelArt' /> <separator/> <menuitem action='Union'/> <menuitem action='Difference'/> diff --git a/src/CMakeLists.txt b/src/CMakeLists.txt index 42e091f43..a09bceb06 100644 --- a/src/CMakeLists.txt +++ b/src/CMakeLists.txt @@ -61,7 +61,6 @@ set(sp_SRC sp-root.cpp sp-script.cpp sp-shape.cpp - # sp-skeleton.cpp sp-spiral.cpp sp-star.cpp sp-stop.cpp @@ -153,7 +152,6 @@ set(sp_SRC sp-root.h sp-script.h sp-shape.h - # sp-skeleton.h sp-spiral.h sp-star.h sp-stop.h @@ -560,6 +558,7 @@ add_subdirectory(libuemf) add_subdirectory(libvpsc) add_subdirectory(livarot) add_subdirectory(libnrtype) +add_subdirectory(libdepixelize) get_property(inkscape_global_SRC GLOBAL PROPERTY inkscape_global_SRC) diff --git a/src/Makefile.am b/src/Makefile.am index 6fcfa421d..a0c240252 100644 --- a/src/Makefile.am +++ b/src/Makefile.am @@ -23,15 +23,16 @@ endif noinst_LIBRARIES = \ - dom/libdom.a \ - libcroco/libcroco.a \ - libavoid/libavoid.a \ - $(internal_GDL) \ - libuemf/libuemf.a \ - libcola/libcola.a \ - libvpsc/libvpsc.a \ - livarot/libvarot.a \ - 2geom/lib2geom.a \ + dom/libdom.a \ + libcroco/libcroco.a \ + libavoid/libavoid.a \ + $(internal_GDL) \ + libuemf/libuemf.a \ + libcola/libcola.a \ + libvpsc/libvpsc.a \ + livarot/libvarot.a \ + 2geom/lib2geom.a \ + libdepixelize/libdepixelize.a \ libinkversion.a all_libs = \ @@ -138,6 +139,7 @@ include ui/widget/Makefile_insert include util/Makefile_insert include trace/Makefile_insert include 2geom/Makefile_insert +include libdepixelize/Makefile_insert # Extra files not mentioned as sources to include in the source tarball EXTRA_DIST += \ @@ -181,8 +183,8 @@ EXTRA_DIST += \ io/crystalegg.xml \ io/doc2html.xsl \ show-preview.bmp \ - sp-skeleton.cpp sp-skeleton.h \ winconsole.cpp \ + libdepixelize/makefile.in \ $(CXXTEST_TEMPLATE) # Extra files to remove when doing "make distclean" diff --git a/src/desktop.cpp b/src/desktop.cpp index cb56669a8..69d83d8da 100644 --- a/src/desktop.cpp +++ b/src/desktop.cpp @@ -1923,6 +1923,7 @@ SPDesktop::show_dialogs() mapVerbPreference.insert(std::make_pair ((int)SP_VERB_DIALOG_DISPLAY, "/dialogs/preferences") ); mapVerbPreference.insert(std::make_pair ((int)SP_VERB_SELECTION_GRIDTILE, "/dialogs/gridtiler") ); mapVerbPreference.insert(std::make_pair ((int)SP_VERB_SELECTION_TRACE, "/dialogs/trace") ); + mapVerbPreference.insert(std::make_pair ((int)SP_VERB_SELECTION_PIXEL_ART, "/dialogs/pixelart") ); mapVerbPreference.insert(std::make_pair ((int)SP_VERB_DIALOG_TEXT, "/dialogs/textandfont") ); mapVerbPreference.insert(std::make_pair ((int)SP_VERB_DIALOG_EXPORT, "/dialogs/export") ); mapVerbPreference.insert(std::make_pair ((int)SP_VERB_DIALOG_XML_EDITOR, "/dialogs/xml") ); diff --git a/src/display/cairo-utils.cpp b/src/display/cairo-utils.cpp index 755553033..451f0b509 100644 --- a/src/display/cairo-utils.cpp +++ b/src/display/cairo-utils.cpp @@ -15,6 +15,8 @@ #include "display/cairo-utils.h" #include <stdexcept> +#include <glib/gstdio.h> +#include <glibmm/fileutils.h> #include <2geom/pathvector.h> #include <2geom/bezier-curve.h> #include <2geom/hvlinesegment.h> @@ -28,6 +30,8 @@ #include "helper/geom-curves.h" #include "display/cairo-templates.h" +static void ink_cairo_pixbuf_cleanup(guchar *, void *); + /** * Key for cairo_surface_t to keep track of current color interpolation value * Only the address of the structure is used, it is never initialized. See: @@ -116,6 +120,380 @@ Cairo::RefPtr<CairoContext> CairoContext::create(Cairo::RefPtr<Cairo::Surface> c return ret; } + +/* The class below implement the following hack: + * + * The pixels formats of Cairo and GdkPixbuf are different. + * GdkPixbuf accesses pixels as bytes, alpha is not premultiplied, + * and successive bytes of a single pixel contain R, G, B and A components. + * Cairo accesses pixels as 32-bit ints, alpha is premultiplied, + * and each int contains as 0xAARRGGBB, accessed with bitwise operations. + * + * In other words, on a little endian system, a GdkPixbuf will contain: + * char *data = "rgbargbargba...." + * int *data = { 0xAABBGGRR, 0xAABBGGRR, 0xAABBGGRR, ... } + * while a Cairo image surface will contain: + * char *data = "bgrabgrabgra...." + * int *data = { 0xAARRGGBB, 0xAARRGGBB, 0xAARRGGBB, ... } + * + * It is possible to convert between these two formats (almost) losslessly. + * Some color information from partially transparent regions of the image + * is lost, but the result when displaying this image will remain the same. + * + * The class allows interoperation between GdkPixbuf + * and Cairo surfaces without creating a copy of the image. + * This is implemented by creating a GdkPixbuf and a Cairo image surface + * which share their data. Depending on what is needed at a given time, + * the pixels are converted in place to the Cairo or the GdkPixbuf format. + */ + +/** Create a pixbuf from a Cairo surface. + * The constructor takes ownership of the passed surface, + * so it should not be destroyed. */ +Pixbuf::Pixbuf(cairo_surface_t *s) + : _pixbuf(gdk_pixbuf_new_from_data( + cairo_image_surface_get_data(s), GDK_COLORSPACE_RGB, TRUE, 8, + cairo_image_surface_get_width(s), cairo_image_surface_get_height(s), + cairo_image_surface_get_stride(s), NULL, NULL)) + , _surface(s) + , _mod_time(0) + , _pixel_format(PF_CAIRO) + , _cairo_store(true) +{} + +/** Create a pixbuf from a GdkPixbuf. + * The constructor takes ownership of the passed GdkPixbuf reference, + * so it should not be unrefed. */ +Pixbuf::Pixbuf(GdkPixbuf *pb) + : _pixbuf(pb) + , _surface(0) + , _mod_time(0) + , _pixel_format(PF_GDK) + , _cairo_store(false) +{ + _forceAlpha(); + _surface = cairo_image_surface_create_for_data( + gdk_pixbuf_get_pixels(_pixbuf), CAIRO_FORMAT_ARGB32, + gdk_pixbuf_get_width(_pixbuf), gdk_pixbuf_get_height(_pixbuf), gdk_pixbuf_get_rowstride(_pixbuf)); +} + +Pixbuf::Pixbuf(Inkscape::Pixbuf const &other) + : _pixbuf(gdk_pixbuf_copy(other._pixbuf)) + , _surface(cairo_image_surface_create_for_data( + gdk_pixbuf_get_pixels(_pixbuf), CAIRO_FORMAT_ARGB32, + gdk_pixbuf_get_width(_pixbuf), gdk_pixbuf_get_height(_pixbuf), gdk_pixbuf_get_rowstride(_pixbuf))) + , _mod_time(other._mod_time) + , _path(other._path) + , _pixel_format(other._pixel_format) + , _cairo_store(false) +{} + +Pixbuf::~Pixbuf() +{ + if (_cairo_store) { + g_object_unref(_pixbuf); + cairo_surface_destroy(_surface); + } else { + cairo_surface_destroy(_surface); + g_object_unref(_pixbuf); + } +} + +Pixbuf *Pixbuf::create_from_data_uri(gchar const *uri_data) +{ + Pixbuf *pixbuf = NULL; + + bool data_is_image = false; + bool data_is_base64 = false; + + gchar const *data = uri_data; + + while (*data) { + if (strncmp(data,"base64",6) == 0) { + /* base64-encoding */ + data_is_base64 = true; + data_is_image = true; // Illustrator produces embedded images without MIME type, so we assume it's image no matter what + data += 6; + } + else if (strncmp(data,"image/png",9) == 0) { + /* PNG image */ + data_is_image = true; + data += 9; + } + else if (strncmp(data,"image/jpg",9) == 0) { + /* JPEG image */ + data_is_image = true; + data += 9; + } + else if (strncmp(data,"image/jpeg",10) == 0) { + /* JPEG image */ + data_is_image = true; + data += 10; + } + else if (strncmp(data,"image/jp2",9) == 0) { + /* JPEG2000 image */ + data_is_image = true; + data += 9; + } + else { /* unrecognized option; skip it */ + while (*data) { + if (((*data) == ';') || ((*data) == ',')) { + break; + } + data++; + } + } + if ((*data) == ';') { + data++; + continue; + } + if ((*data) == ',') { + data++; + break; + } + } + + if ((*data) && data_is_image && data_is_base64) { + GdkPixbuf *buf = NULL; + GdkPixbufLoader *loader = gdk_pixbuf_loader_new(); + + if (!loader) return NULL; + + gsize decoded_len = 0; + guchar *decoded = g_base64_decode(data, &decoded_len); + + if (gdk_pixbuf_loader_write(loader, decoded, decoded_len, NULL)) { + gdk_pixbuf_loader_close(loader, NULL); + buf = gdk_pixbuf_loader_get_pixbuf(loader); + if (buf) { + g_object_ref(buf); + pixbuf = new Pixbuf(buf); + + GdkPixbufFormat *fmt = gdk_pixbuf_loader_get_format(loader); + gchar *fmt_name = gdk_pixbuf_format_get_name(fmt); + pixbuf->_setMimeData(decoded, decoded_len, fmt_name); + g_free(fmt_name); + } else { + g_free(decoded); + } + } else { + g_free(decoded); + } + g_object_unref(loader); + } + + return pixbuf; +} + +Pixbuf *Pixbuf::create_from_file(std::string const &fn) +{ + Pixbuf *pb = NULL; + // test correctness of filename + if (!g_file_test(fn.c_str(), G_FILE_TEST_EXISTS)) { + return NULL; + } + struct stat stdir; + int val = g_stat(fn.c_str(), &stdir); + if (val == 0 && stdir.st_mode & S_IFDIR){ + return NULL; + } + + // we need to load the entire file into memory, + // since we'll store it as MIME data + gchar *data = NULL; + gsize len = 0; + GError *error; + + if (g_file_get_contents(fn.c_str(), &data, &len, &error)) { + + GdkPixbufLoader *loader = gdk_pixbuf_loader_new(); + gdk_pixbuf_loader_write(loader, (guchar *) data, len, NULL); + gdk_pixbuf_loader_close(loader, NULL); + + GdkPixbuf *buf = gdk_pixbuf_loader_get_pixbuf(loader); + if (buf) { + g_object_ref(buf); + pb = new Pixbuf(buf); + pb->_mod_time = stdir.st_mtime; + pb->_path = fn; + + GdkPixbufFormat *fmt = gdk_pixbuf_loader_get_format(loader); + gchar *fmt_name = gdk_pixbuf_format_get_name(fmt); + pb->_setMimeData((guchar *) data, len, fmt_name); + g_free(fmt_name); + } else { + g_free(data); + } + g_object_unref(loader); + + // TODO: we could also read DPI, ICC profile, gamma correction, and other information + // from the file. This can be done by using format-specific libraries e.g. libpng. + } else { + return NULL; + } + + return pb; +} + +/** + * Converts the pixbuf to GdkPixbuf pixel format. + * The returned pixbuf can be used e.g. in calls to gdk_pixbuf_save(). + */ +GdkPixbuf *Pixbuf::getPixbufRaw(bool convert_format) +{ + if (convert_format) { + ensurePixelFormat(PF_GDK); + } + return _pixbuf; +} + +/** + * Converts the pixbuf to Cairo pixel format and returns an image surface + * which can be used as a source. + * + * The returned surface is owned by the GdkPixbuf and should not be freed. + * Calling this function causes the pixbuf to be unsuitable for use + * with GTK drawing functions until ensurePixelFormat(Pixbuf::PIXEL_FORMAT_PIXBUF) is called. + */ +cairo_surface_t *Pixbuf::getSurfaceRaw(bool convert_format) +{ + if (convert_format) { + ensurePixelFormat(PF_CAIRO); + } + return _surface; +} + +/* Declaring this function in the header requires including <gdkmm/pixbuf.h>, + * which stupidly includes <glibmm.h> which in turn pulls in <glibmm/threads.h>. + * However, since glib 2.32, <glibmm/threads.h> has to be included before <glib.h> + * when compiling with G_DISABLE_DEPRECATED, as we do in non-release builds. + * This necessitates spamming a lot of files with #include <glibmm/threads.h> + * at the top. + * + * Since we don't really use gdkmm, do not define this function for now. */ + +/* +Glib::RefPtr<Gdk::Pixbuf> Pixbuf::getPixbuf(bool convert_format = true) +{ + g_object_ref(_pixbuf); + Glib::RefPtr<Gdk::Pixbuf> p(getPixbuf(convert_format)); + return p; +} +*/ + +Cairo::RefPtr<Cairo::Surface> Pixbuf::getSurface(bool convert_format) +{ + Cairo::RefPtr<Cairo::Surface> p(new Cairo::Surface(getSurfaceRaw(convert_format), false)); + return p; +} + +/** Retrieves the original compressed data for the surface, if any. + * The returned data belongs to the object and should not be freed. */ +guchar const *Pixbuf::getMimeData(gsize &len, std::string &mimetype) const +{ + static gchar const *mimetypes[] = { + CAIRO_MIME_TYPE_JPEG, CAIRO_MIME_TYPE_JP2, CAIRO_MIME_TYPE_PNG, NULL }; + static guint mimetypes_len = g_strv_length(const_cast<gchar**>(mimetypes)); + + guchar const *data = NULL; + + for (guint i = 0; i < mimetypes_len; ++i) { + unsigned long len_long = 0; + cairo_surface_get_mime_data(const_cast<cairo_surface_t*>(_surface), mimetypes[i], &data, &len_long); + if (data != NULL) { + len = len_long; + mimetype = mimetypes[i]; + break; + } + } + + return data; +} + +int Pixbuf::width() const { + return gdk_pixbuf_get_width(const_cast<GdkPixbuf*>(_pixbuf)); +} +int Pixbuf::height() const { + return gdk_pixbuf_get_height(const_cast<GdkPixbuf*>(_pixbuf)); +} +int Pixbuf::rowstride() const { + return gdk_pixbuf_get_rowstride(const_cast<GdkPixbuf*>(_pixbuf)); +} +guchar const *Pixbuf::pixels() const { + return gdk_pixbuf_get_pixels(const_cast<GdkPixbuf*>(_pixbuf)); +} +guchar *Pixbuf::pixels() { + return gdk_pixbuf_get_pixels(_pixbuf); +} +void Pixbuf::markDirty() { + cairo_surface_mark_dirty(_surface); +} + +void Pixbuf::_forceAlpha() +{ + if (gdk_pixbuf_get_has_alpha(_pixbuf)) return; + + GdkPixbuf *old = _pixbuf; + _pixbuf = gdk_pixbuf_add_alpha(old, FALSE, 0, 0, 0); + g_object_unref(old); +} + +void Pixbuf::_setMimeData(guchar *data, gsize len, Glib::ustring const &format) +{ + gchar const *mimetype = NULL; + + if (format == "jpeg") { + mimetype = CAIRO_MIME_TYPE_JPEG; + } else if (format == "jpeg2000") { + mimetype = CAIRO_MIME_TYPE_JP2; + } else if (format == "png") { + mimetype = CAIRO_MIME_TYPE_PNG; + } + + if (mimetype != NULL) { + cairo_surface_set_mime_data(_surface, mimetype, data, len, g_free, data); + //g_message("Setting Cairo MIME data: %s", mimetype); + } else { + g_free(data); + //g_message("Not setting Cairo MIME data: unknown format %s", name.c_str()); + } +} + +void Pixbuf::ensurePixelFormat(PixelFormat fmt) +{ + if (_pixel_format == PF_GDK) { + if (fmt == PF_GDK) { + return; + } + if (fmt == PF_CAIRO) { + convert_pixels_pixbuf_to_argb32( + gdk_pixbuf_get_pixels(_pixbuf), + gdk_pixbuf_get_width(_pixbuf), + gdk_pixbuf_get_height(_pixbuf), + gdk_pixbuf_get_rowstride(_pixbuf)); + _pixel_format = fmt; + return; + } + g_assert_not_reached(); + } + if (_pixel_format == PF_CAIRO) { + if (fmt == PF_GDK) { + convert_pixels_argb32_to_pixbuf( + gdk_pixbuf_get_pixels(_pixbuf), + gdk_pixbuf_get_width(_pixbuf), + gdk_pixbuf_get_height(_pixbuf), + gdk_pixbuf_get_rowstride(_pixbuf)); + _pixel_format = fmt; + return; + } + if (fmt == PF_CAIRO) { + return; + } + g_assert_not_reached(); + } + g_assert_not_reached(); +} + } // namespace Inkscape /* @@ -371,129 +749,6 @@ ink_cairo_pattern_set_matrix(cairo_pattern_t *cp, Geom::Affine const &m) cairo_pattern_set_matrix(cp, &cm); } -void -ink_cairo_set_source_pixbuf(cairo_t *ct, GdkPixbuf *pb, double x, double y) -{ - cairo_surface_t *pbs = ink_cairo_surface_get_for_pixbuf(pb); - cairo_set_source_surface(ct, pbs, x, y); -} - -/* The functions below implement the following hack: - * - * The pixels formats of Cairo and GdkPixbuf are different. - * GdkPixbuf accesses pixels as bytes, alpha is not premultiplied, - * and successive bytes of a single pixel contain R, G, B and A components. - * Cairo accesses pixels as 32-bit ints, alpha is premultiplied, - * and each int contains as 0xAARRGGBB, accessed with bitwise operations. - * - * In other words, on a little endian system, a GdkPixbuf will contain: - * char *data = "rgbargbargba...." - * int *data = { 0xAABBGGRR, 0xAABBGGRR, 0xAABBGGRR, ... } - * while a Cairo image surface will contain: - * char *data = "bgrabgrabgra...." - * int *data = { 0xAARRGGBB, 0xAARRGGBB, 0xAARRGGBB, ... } - * - * It is possible to convert between these two formats (almost) losslessly. - * Some color information from partially transparent regions of the image - * is lost, but the result when displaying this image will remain the same. - * - * The functions below allow interoperation between GdkPixbuf - * and Cairo surfaces, allowing pixbufs to be used as Cairo sources, - * and saving Cairo surfaces using GdkPixbuf APIs. - * This is implemented by creating a GdkPixbuf and a Cairo image surface - * which share their data. Depending on what is needed at a given time, - * the pixels are converted in place to the Cairo or the GdkPixbuf format. - * In this way, only one copy of the image data is needed. - * - * Given either a GdkPixbuf or a Cairo surface, these functions create - * the other object and convert to its format. The returned object should be - * freed using cairo_surface_destroy or g_object_unref when it's no longer - * needed. - * - * Memory ownership semantics: - * Regardless of whether the pixels are stored in memory originally belonging - * to Cairo surface or to GdkPixbuf, the GdkPixbuf is the master object. - * To free the memory, unref the GdkPixbuf ONLY. - */ - -/** - * Converts the pixbuf to Cairo pixel format and returns an image surface - * which can be used as a source. - * - * The returned surface is owned by the GdkPixbuf and should not be freed. - * Calling this function causes the pixbuf to be unsuitable for use - * with GTK drawing functions until ink_pixbuf_ensure_normal() is called. - * - * @bug You have to call g_object_set_data(G_OBJECT(pb), "cairo_surface", NULL) - * when unrefing the last reference to the pixbuf. Otherwise there will be - * crashes, because cairo_surface_destroy is called after the pixbuf data - * is already freed. - */ -cairo_surface_t * -ink_cairo_surface_get_for_pixbuf(GdkPixbuf *pb) -{ - cairo_surface_t *pbs = - reinterpret_cast<cairo_surface_t*>(g_object_get_data(G_OBJECT(pb), "cairo_surface")); - - ink_pixbuf_ensure_argb32(pb); - - if (pbs == NULL) { - guchar *data = gdk_pixbuf_get_pixels(pb); - int w = gdk_pixbuf_get_width(pb); - int h = gdk_pixbuf_get_height(pb); - int stride = gdk_pixbuf_get_rowstride(pb); - - // create a surface that stores the data - pbs = cairo_image_surface_create_for_data( - data, CAIRO_FORMAT_ARGB32, w, h, stride); - - g_object_set_data_full(G_OBJECT(pb), "cairo_surface", pbs, (GDestroyNotify) cairo_surface_destroy); - cairo_surface_set_user_data(pbs, &ink_pixbuf_key, pb, NULL); - } - - return pbs; -} - -/** - * Converts the Cairo surface to GdkPixbuf pixel format. - * GdkPixbuf takes ownership of the passed surface reference, - * so it should NOT be freed after calling this function. - */ -GdkPixbuf *ink_pixbuf_create_from_cairo_surface(cairo_surface_t *s) -{ - GdkPixbuf *pb = reinterpret_cast<GdkPixbuf*>(cairo_surface_get_user_data(s, &ink_pixbuf_key)); - if (pb == NULL) { - pb = gdk_pixbuf_new_from_data( - cairo_image_surface_get_data(s), GDK_COLORSPACE_RGB, TRUE, 8, - cairo_image_surface_get_width(s), cairo_image_surface_get_height(s), - cairo_image_surface_get_stride(s), NULL, NULL); - - g_object_set_data_full(G_OBJECT(pb), "pixel_format", g_strdup("argb32"), g_free); - g_object_set_data_full(G_OBJECT(pb), "cairo_surface", s, (GDestroyNotify) cairo_surface_destroy); - - cairo_surface_set_user_data(s, &ink_pixbuf_key, pb, NULL); - } else { - g_warning("Received surface which is already owned by GdkPixbuf"); - g_object_ref(pb); - } - - ink_pixbuf_ensure_normal(pb); - - return pb; -} - -/** - * Cleanup function for GdkPixbuf. - * This function should be passed as the GdkPixbufDestroyNotify parameter - * to gdk_pixbuf_new_from_data when creating a GdkPixbuf backed by - * a Cairo surface. - */ -void ink_cairo_pixbuf_cleanup(guchar * /*pixels*/, void *data) -{ - cairo_surface_t *surface = reinterpret_cast<cairo_surface_t*>(data); - cairo_surface_destroy(surface); -} - /** * Create an exact copy of a surface. * Creates a surface that has the same type, content type, dimensions and contents @@ -833,6 +1088,44 @@ ink_cairo_pattern_create_checkerboard() return p; } +/** + * Converts the Cairo surface to a GdkPixbuf pixel format, + * without allocating extra memory. + * + * This function is intended mainly for creating previews displayed by GTK. + * For loading images for display on the canvas, use the Inkscape::Pixbuf object. + * + * The returned GdkPixbuf takes ownership of the passed surface reference, + * so it should NOT be freed after calling this function. + */ +GdkPixbuf *ink_pixbuf_create_from_cairo_surface(cairo_surface_t *s) +{ + guchar *pixels = cairo_image_surface_get_data(s); + int w = cairo_image_surface_get_width(s); + int h = cairo_image_surface_get_height(s); + int rs = cairo_image_surface_get_stride(s); + + convert_pixels_argb32_to_pixbuf(pixels, w, h, rs); + + GdkPixbuf *pb = gdk_pixbuf_new_from_data( + pixels, GDK_COLORSPACE_RGB, TRUE, 8, + w, h, rs, ink_cairo_pixbuf_cleanup, s); + + return pb; +} + +/** + * Cleanup function for GdkPixbuf. + * This function should be passed as the GdkPixbufDestroyNotify parameter + * to gdk_pixbuf_new_from_data when creating a GdkPixbuf backed by + * a Cairo surface. + */ +static void ink_cairo_pixbuf_cleanup(guchar * /*pixels*/, void *data) +{ + cairo_surface_t *surface = static_cast<cairo_surface_t*>(data); + cairo_surface_destroy(surface); +} + /* The following two functions use "from" instead of "to", because when you write: val1 = argb32_from_pixbuf(val1); the name of the format is closer to the value in that format. */ diff --git a/src/display/cairo-utils.h b/src/display/cairo-utils.h index 289d4e01f..505e2ca77 100644 --- a/src/display/cairo-utils.h +++ b/src/display/cairo-utils.h @@ -12,14 +12,15 @@ #ifndef SEEN_INKSCAPE_DISPLAY_CAIRO_UTILS_H #define SEEN_INKSCAPE_DISPLAY_CAIRO_UTILS_H +#include <boost/noncopyable.hpp> +//#include <glibmm/threads.h> // workaround #include <glib.h> #include <cairomm/cairomm.h> +//#include <gdkmm/pixbuf.h> #include <2geom/forward.h> #include "style.h" struct SPColor; -struct _GdkPixbuf; -typedef struct _GdkPixbuf GdkPixbuf; namespace Inkscape { @@ -80,15 +81,61 @@ public: static Cairo::RefPtr<CairoContext> create(Cairo::RefPtr<Cairo::Surface> const &target); }; -} // namespace Inkscape +/** Class to hold image data for raster images. + * Allows easy interoperation with GdkPixbuf and Cairo. */ +class Pixbuf { +public: + enum PixelFormat { + PF_CAIRO = 1, + PF_GDK = 2, + PF_LAST + }; + + explicit Pixbuf(cairo_surface_t *s); + explicit Pixbuf(GdkPixbuf *pb); + Pixbuf(Inkscape::Pixbuf const &other); + ~Pixbuf(); + + GdkPixbuf *getPixbufRaw(bool convert_format = true); + //Glib::RefPtr<Gdk::Pixbuf> getPixbuf(bool convert_format = true); + + cairo_surface_t *getSurfaceRaw(bool convert_format = true); + Cairo::RefPtr<Cairo::Surface> getSurface(bool convert_format = true); + + int width() const; + int height() const; + int rowstride() const; + guchar const *pixels() const; + guchar *pixels(); + void markDirty(); + + bool hasMimeData() const; + guchar const *getMimeData(gsize &len, std::string &mimetype) const; + std::string const &originalPath() const { return _path; } + time_t modificationTime() const { return _mod_time; } -enum InkPixelFormat { - INK_PIXEL_FORMAT_NONE, - INK_PIXEL_FORMAT_CAIRO, - INK_PIXEL_FORMAT_PIXBUF, - INK_PIXEL_FORMAT_LAST + PixelFormat pixelFormat() const { return _pixel_format; } + void ensurePixelFormat(PixelFormat fmt); + + static Pixbuf *create_from_data_uri(gchar const *uri); + static Pixbuf *create_from_file(std::string const &fn); + +private: + void _ensurePixelsARGB32(); + void _ensurePixelsPixbuf(); + void _forceAlpha(); + void _setMimeData(guchar *data, gsize len, Glib::ustring const &format); + + GdkPixbuf *_pixbuf; + cairo_surface_t *_surface; + time_t _mod_time; + std::string _path; + PixelFormat _pixel_format; + bool _cairo_store; }; +} // namespace Inkscape + // TODO: these declarations may not be needed in the header extern cairo_user_data_key_t ink_color_interpolation_key; extern cairo_user_data_key_t ink_pixbuf_key; @@ -102,7 +149,6 @@ void ink_cairo_set_source_color(cairo_t *ct, SPColor const &color, double opacit void ink_cairo_set_source_rgba32(cairo_t *ct, guint32 rgba); void ink_cairo_transform(cairo_t *ct, Geom::Affine const &m); void ink_cairo_pattern_set_matrix(cairo_pattern_t *cp, Geom::Affine const &m); -void ink_cairo_set_source_pixbuf(cairo_t *ct, GdkPixbuf *pb, double x, double y); void ink_matrix_to_2geom(Geom::Affine &, cairo_matrix_t const &); void ink_matrix_to_cairo(cairo_matrix_t &, Geom::Affine const &); @@ -125,13 +171,9 @@ int ink_cairo_surface_linear_to_srgb(cairo_surface_t *surface); cairo_pattern_t *ink_cairo_pattern_create_checkerboard(); +GdkPixbuf *ink_pixbuf_create_from_cairo_surface(cairo_surface_t *s); void convert_pixels_pixbuf_to_argb32(guchar *data, int w, int h, int rs); void convert_pixels_argb32_to_pixbuf(guchar *data, int w, int h, int rs); -void ink_pixbuf_ensure_argb32(GdkPixbuf *); -void ink_pixbuf_ensure_normal(GdkPixbuf *); -cairo_surface_t *ink_cairo_surface_get_for_pixbuf(GdkPixbuf *pb); -GdkPixbuf *ink_pixbuf_create_from_cairo_surface(cairo_surface_t *s); -void ink_cairo_pixbuf_cleanup(guchar *pixels, void *surface); G_GNUC_CONST guint32 argb32_from_pixbuf(guint32 in); G_GNUC_CONST guint32 pixbuf_from_argb32(guint32 in); diff --git a/src/display/drawing-image.cpp b/src/display/drawing-image.cpp index 46f066b8e..0b661a450 100644 --- a/src/display/drawing-image.cpp +++ b/src/display/drawing-image.cpp @@ -22,34 +22,23 @@ namespace Inkscape { DrawingImage::DrawingImage(Drawing &drawing) : DrawingItem(drawing) , _pixbuf(NULL) - , _surface(NULL) // this is owned by _pixbuf! , _style(NULL) , _new_surface(NULL) {} DrawingImage::~DrawingImage() { - if (_style) + if (_style) { sp_style_unref(_style); - if (_pixbuf) { - if (_new_surface) cairo_surface_destroy(_new_surface); - g_object_unref(_pixbuf); } + + // _pixbuf is owned by SPImage - do not delete it } void -DrawingImage::setARGB32Pixbuf(GdkPixbuf *pb) +DrawingImage::setPixbuf(Inkscape::Pixbuf *pb) { - // when done in this order, it won't break if pb == image->pixbuf and the refcount is 1 - if (pb != NULL) { - g_object_ref (pb); - } - if (_pixbuf != NULL) { - g_object_unref(_pixbuf); - // unrefing the pixbuf also destroys surface - } _pixbuf = pb; - _surface = pb ? ink_cairo_surface_get_for_pixbuf(pb) : NULL; _markForUpdate(STATE_ALL, false); } @@ -86,8 +75,8 @@ DrawingImage::bounds() const { if (!_pixbuf) return _clipbox; - double pw = gdk_pixbuf_get_width(_pixbuf); - double ph = gdk_pixbuf_get_height(_pixbuf); + double pw = _pixbuf->width(); + double ph = _pixbuf->height(); double vw = pw * _scale[Geom::X]; double vh = ph * _scale[Geom::Y]; Geom::Point wh(vw, vh); @@ -143,14 +132,16 @@ unsigned DrawingImage::_renderItem(DrawingContext &ct, Geom::IntRect const &/*ar // See https://bugs.launchpad.net/inkscape/+bug/804162 Geom::Scale expansion(_ctm.expansion()); - int orgwidth = cairo_image_surface_get_width(_surface); - int orgheight = cairo_image_surface_get_height(_surface); + int orgwidth = _pixbuf->width(); + int orgheight = _pixbuf->height(); if (_scale[Geom::X]*expansion[Geom::X]*orgwidth*255.0<1.0 || _scale[Geom::Y]*expansion[Geom::Y]*orgheight*255.0<1.0) { // Resized image too small to actually see anything return RENDER_OK; } - + + _pixbuf->ensurePixelFormat(Inkscape::Pixbuf::PF_CAIRO); + // Split scale*expansion in a part that is <= 1.0 and a part that is >= 1.0. We only take care of the part <= 1.0. Geom::Scale scaleExpansionSmall(std::min<Geom::Coord>(fabs(_scale[Geom::X]*expansion[Geom::X]),1),std::min<Geom::Coord>(fabs(_scale[Geom::Y]*expansion[Geom::Y]),1)); Geom::Scale scaleExpansionLarge(_scale[Geom::X]*expansion[Geom::X]/scaleExpansionSmall[Geom::X],_scale[Geom::Y]*expansion[Geom::Y]/scaleExpansionSmall[Geom::Y]); @@ -161,7 +152,7 @@ unsigned DrawingImage::_renderItem(DrawingContext &ct, Geom::IntRect const &/*ar ct.scale(expansion.inverse()); // This should not include scale (see derivation above) ct.translate(_origin*expansion); ct.scale(scaleExpansionLarge); - ct.setSource(_surface, 0, 0); + ct.setSource(_pixbuf->getSurfaceRaw(), 0, 0); } else if (!_new_surface || (newSize-_rescaledSize).length()>0.1) { // Rescaled image is sufficiently different from cached image to recompute if (_new_surface) cairo_surface_destroy(_new_surface); @@ -200,13 +191,13 @@ unsigned DrawingImage::_renderItem(DrawingContext &ct, Geom::IntRect const &/*ar } } + cairo_surface_t *surface = _pixbuf->getSurfaceRaw(); _new_surface = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, newwidth,newheight); - unsigned char * orgdata = cairo_image_surface_get_data(_surface); + unsigned char * orgdata = cairo_image_surface_get_data(surface); unsigned char * newdata = cairo_image_surface_get_data(_new_surface); - int orgstride = cairo_image_surface_get_stride(_surface); + int orgstride = cairo_image_surface_get_stride(surface); int newstride = cairo_image_surface_get_stride(_new_surface); - - //cairo_surface_flush(_surface); + cairo_surface_flush(_new_surface); for(int y=0; y<newheight; y++) { @@ -245,7 +236,7 @@ unsigned DrawingImage::_renderItem(DrawingContext &ct, Geom::IntRect const &/*ar // TODO: If Cairo's problems are gone, uncomment the following: //ct.translate(_origin); //ct.scale(_scale); - //ct.setSource(_surface, 0, 0); + //ct.setSource(_pixbuf->getSurfaceRaw(), 0, 0); //ct.paint(_opacity); ct.paint(); @@ -315,10 +306,10 @@ DrawingImage::_pickItem(Geom::Point const &p, double delta, unsigned /*sticky*/) return NULL; } else { - unsigned char *const pixels = gdk_pixbuf_get_pixels(_pixbuf); - int width = gdk_pixbuf_get_width(_pixbuf); - int height = gdk_pixbuf_get_height(_pixbuf); - int rowstride = gdk_pixbuf_get_rowstride(_pixbuf); + unsigned char *const pixels = _pixbuf->pixels(); + int width = _pixbuf->width(); + int height = _pixbuf->height(); + int rowstride = _pixbuf->rowstride(); Geom::Point tp = p * _ctm.inverse(); Geom::Rect r = bounds(); @@ -336,8 +327,17 @@ DrawingImage::_pickItem(Geom::Point const &p, double delta, unsigned /*sticky*/) unsigned char *pix_ptr = pixels + iy * rowstride + ix * 4; // pick if the image is less than 99% transparent - float alpha = (pix_ptr[3] / 255.0f) * _opacity; - return alpha > 0.01 ? this : NULL; + guint32 alpha = 0; + if (_pixbuf->pixelFormat() == Inkscape::Pixbuf::PF_CAIRO) { + guint32 px = *reinterpret_cast<guint32 const *>(pix_ptr); + alpha = (px & 0xff000000) >> 24; + } else if (_pixbuf->pixelFormat() == Inkscape::Pixbuf::PF_GDK) { + alpha = pix_ptr[3]; + } else { + throw std::runtime_error("Unrecognized pixel format"); + } + float alpha_f = (alpha / 255.0f) * _opacity; + return alpha_f > 0.01 ? this : NULL; } } diff --git a/src/display/drawing-image.h b/src/display/drawing-image.h index 593185c97..58e6de72e 100644 --- a/src/display/drawing-image.h +++ b/src/display/drawing-image.h @@ -19,6 +19,7 @@ #include "display/drawing-item.h" namespace Inkscape { +class Pixbuf; class DrawingImage : public DrawingItem @@ -27,7 +28,7 @@ public: DrawingImage(Drawing &drawing); ~DrawingImage(); - void setARGB32Pixbuf(GdkPixbuf *pb); + void setPixbuf(Inkscape::Pixbuf *pb); void setStyle(SPStyle *style); void setScale(double sx, double sy); void setOrigin(Geom::Point const &o); @@ -41,8 +42,7 @@ protected: DrawingItem *stop_at); virtual DrawingItem *_pickItem(Geom::Point const &p, double delta, unsigned flags); - GdkPixbuf *_pixbuf; - cairo_surface_t *_surface; + Inkscape::Pixbuf *_pixbuf; SPStyle *_style; cairo_surface_t *_new_surface; // Part of hack around Cairo bug diff --git a/src/display/drawing-item.cpp b/src/display/drawing-item.cpp index 80664d822..a9836a9e3 100644 --- a/src/display/drawing-item.cpp +++ b/src/display/drawing-item.cpp @@ -284,7 +284,7 @@ DrawingItem::setZOrder(unsigned z) void DrawingItem::setItemBounds(Geom::OptRect const &bounds) { - _item_bbox = bounds; + if (bounds) _filter_bbox = bounds; } /** @@ -352,8 +352,10 @@ DrawingItem::update(Geom::IntRect const &area, UpdateContext const &ctx, unsigne if (to_update & STATE_BBOX) { // compute drawbox - if (_filter && render_filters) { - _drawbox = _filter->compute_drawbox(this, _item_bbox); + if (_filter && render_filters && _bbox) { + Geom::IntRect newbox(*_bbox); + _filter->area_enlarge(newbox, this); + _drawbox = Geom::OptIntRect(newbox); } else { _drawbox = _bbox; } diff --git a/src/display/drawing-item.h b/src/display/drawing-item.h index 4a516512b..8020659db 100644 --- a/src/display/drawing-item.h +++ b/src/display/drawing-item.h @@ -89,7 +89,7 @@ public: Geom::OptIntRect geometricBounds() const { return _bbox; } Geom::OptIntRect visualBounds() const { return _drawbox; } - Geom::OptRect itemBounds() const { return _item_bbox; } + Geom::OptRect filterBounds() const { return _filter_bbox; } Geom::Affine ctm() const { return _ctm; } Geom::Affine transform() const { return _transform ? *_transform : Geom::identity(); } Drawing &drawing() const { return _drawing; } @@ -175,7 +175,7 @@ protected: Geom::Affine _ctm; ///< Total transform from item coords to display coords Geom::OptIntRect _bbox; ///< Bounding box in display (pixel) coords including stroke Geom::OptIntRect _drawbox; ///< Full visual bounding box - enlarged by filters, shrunk by clips and masks - Geom::OptRect _item_bbox; ///< Geometric bounding box in item coordinates + Geom::OptRect _filter_bbox; ///< Used by filters when settings bounds DrawingItem *_clip; DrawingItem *_mask; diff --git a/src/display/drawing-shape.cpp b/src/display/drawing-shape.cpp index e80f12486..e689d0755 100644 --- a/src/display/drawing-shape.cpp +++ b/src/display/drawing-shape.cpp @@ -179,8 +179,8 @@ DrawingShape::_renderItem(DrawingContext &ct, Geom::IntRect const &area, unsigne // update fill and stroke paints. // this cannot be done during nr_arena_shape_update, because we need a Cairo context // to render svg:pattern - has_fill = _nrstyle.prepareFill(ct, _item_bbox); - has_stroke = _nrstyle.prepareStroke(ct, _item_bbox); + has_fill = _nrstyle.prepareFill(ct, _bbox); + has_stroke = _nrstyle.prepareStroke(ct, _bbox); has_stroke &= (_nrstyle.stroke_width != 0); if (has_fill || has_stroke) { diff --git a/src/display/drawing-text.cpp b/src/display/drawing-text.cpp index 234006983..fa9ce4ff8 100644 --- a/src/display/drawing-text.cpp +++ b/src/display/drawing-text.cpp @@ -398,8 +398,8 @@ unsigned DrawingText::_renderItem(DrawingContext &ct, Geom::IntRect const &/*are using Geom::X; using Geom::Y; - has_fill = _nrstyle.prepareFill( ct, _item_bbox); - has_stroke = _nrstyle.prepareStroke(ct, _item_bbox); + has_fill = _nrstyle.prepareFill( ct, _bbox); + has_stroke = _nrstyle.prepareStroke(ct, _bbox); if (has_fill || has_stroke) { Geom::Affine rotinv; @@ -441,7 +441,7 @@ unsigned DrawingText::_renderItem(DrawingContext &ct, Geom::IntRect const &/*are } Inkscape::DrawingContext::Save save(ct); -// ct.transform(_ctm); // Seems to work fine without this line, which was in the original. + ct.transform(_ctm); // For one thing, this is needed to scale a fill-pattern when zooming in if (has_fill) { _nrstyle.applyFill(ct); ct.fillPreserve(); diff --git a/src/display/nr-filter-image.cpp b/src/display/nr-filter-image.cpp index b9d73f0ad..4ca4cd07c 100644 --- a/src/display/nr-filter-image.cpp +++ b/src/display/nr-filter-image.cpp @@ -30,6 +30,7 @@ FilterImage::FilterImage() : SVGElem(0) , document(0) , feImageHref(0) + , image(0) , broken_ref(false) { } @@ -41,7 +42,7 @@ FilterImage::~FilterImage() { if (feImageHref) g_free(feImageHref); - g_object_set_data(G_OBJECT(image->gobj()), "cairo_surface", NULL); + delete image; } void FilterImage::render_cairo(FilterSlot &slot) @@ -131,50 +132,38 @@ void FilterImage::render_cairo(FilterSlot &slot) // External image, like <image> if (!image && !broken_ref) { broken_ref = true; - try { - /* TODO: If feImageHref is absolute, then use that (preferably handling the - * case that it's not a file URI). Otherwise, go up the tree looking - * for an xml:base attribute, and use that as the base URI for resolving - * the relative feImageHref URI. Otherwise, if document->base is valid, - * then use that as the base URI. Otherwise, use feImageHref directly - * (i.e. interpreting it as relative to our current working directory). - * (See http://www.w3.org/TR/xmlbase/#resolution .) */ - gchar *fullname = feImageHref; - if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { - // Try to load from relative postion combined with document base - if( document ) { - fullname = g_build_filename( document->getBase(), feImageHref, NULL ); - } - } - if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { - // Should display Broken Image png. - g_warning("FilterImage::render: Can not find: %s", feImageHref ); - return; + + /* TODO: If feImageHref is absolute, then use that (preferably handling the + * case that it's not a file URI). Otherwise, go up the tree looking + * for an xml:base attribute, and use that as the base URI for resolving + * the relative feImageHref URI. Otherwise, if document->base is valid, + * then use that as the base URI. Otherwise, use feImageHref directly + * (i.e. interpreting it as relative to our current working directory). + * (See http://www.w3.org/TR/xmlbase/#resolution .) */ + gchar *fullname = feImageHref; + if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { + // Try to load from relative postion combined with document base + if( document ) { + fullname = g_build_filename( document->getBase(), feImageHref, NULL ); } - image = Gdk::Pixbuf::create_from_file(fullname); - if( fullname != feImageHref ) g_free( fullname ); } - catch (const Glib::FileError & e) - { - g_warning("caught Glib::FileError in FilterImage::render: %s", e.what().data() ); + if ( !g_file_test( fullname, G_FILE_TEST_EXISTS ) ) { + // Should display Broken Image png. + g_warning("FilterImage::render: Can not find: %s", feImageHref ); return; } - catch (const Gdk::PixbufError & e) - { - g_warning("Gdk::PixbufError in FilterImage::render: %s", e.what().data() ); + image = Inkscape::Pixbuf::create_from_file(fullname); + if( fullname != feImageHref ) g_free( fullname ); + + if ( !image ) { + g_warning("FilterImage::render: failed to load image: %s", feImageHref); return; } - if ( !image ) return; broken_ref = false; - - bool has_alpha = image->get_has_alpha(); - if (!has_alpha) { - image = image->add_alpha(false, 0, 0, 0); - } } - cairo_surface_t *image_surface = ink_cairo_surface_get_for_pixbuf(image->gobj()); + cairo_surface_t *image_surface = image->getSurfaceRaw(); Geom::Rect sa = slot.get_slot_area(); cairo_surface_t *out = cairo_image_surface_create(CAIRO_FORMAT_ARGB32, @@ -199,7 +188,7 @@ void FilterImage::render_cairo(FilterSlot &slot) // Check aspect ratio of image vs. viewport double feAspect = feImageHeight/feImageWidth; - double aspect = (double)image->get_height()/(double)image->get_width(); + double aspect = (double)image->height()/(double)image->width(); bool ratio = (feAspect < aspect); double ax, ay; // Align side @@ -274,8 +263,8 @@ void FilterImage::render_cairo(FilterSlot &slot) } } - double scaleX = feImageWidth / image->get_width(); - double scaleY = feImageHeight / image->get_height(); + double scaleX = feImageWidth / image->width(); + double scaleY = feImageHeight / image->height(); cairo_translate(ct, feImageX, feImageY); cairo_scale(ct, scaleX, scaleY); @@ -302,8 +291,8 @@ void FilterImage::set_href(const gchar *href){ if (feImageHref) g_free (feImageHref); feImageHref = (href) ? g_strdup (href) : NULL; - g_object_set_data(G_OBJECT(image->gobj()), "cairo_surface", NULL); - image.reset(); + delete image; + image = NULL; broken_ref = false; } diff --git a/src/display/nr-filter-image.h b/src/display/nr-filter-image.h index f45f42265..69691ac99 100644 --- a/src/display/nr-filter-image.h +++ b/src/display/nr-filter-image.h @@ -12,14 +12,14 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#include <gdkmm/pixbuf.h> #include "display/nr-filter-primitive.h" -#include <glibmm/refptr.h> class SPDocument; class SPItem; namespace Inkscape { +class Pixbuf; + namespace Filters { class FilterSlot; @@ -43,7 +43,7 @@ public: private: SPDocument *document; gchar *feImageHref; - Glib::RefPtr<Gdk::Pixbuf> image; + Inkscape::Pixbuf *image; float feImageX, feImageY, feImageWidth, feImageHeight; unsigned int aspect_align, aspect_clip; bool broken_ref; diff --git a/src/display/nr-filter.cpp b/src/display/nr-filter.cpp index f0965c460..a0103cbb0 100644 --- a/src/display/nr-filter.cpp +++ b/src/display/nr-filter.cpp @@ -114,13 +114,16 @@ int Filter::render(Inkscape::DrawingItem const *item, DrawingContext &graphic, D Geom::Affine trans = item->ctm(); -// Geom::OptRect filter_area = filter_effect_area(item->itemBounds()); // disabled, already done in visualBounds - Geom::OptRect filter_area = item->itemBounds(); // see LP Bug 1188336 - if (!filter_area) return 1; + // Get filter are, the filter_effect_area is already done in visualBounds + Geom::OptRect filter_area = item->filterBounds(); + // Use the geometricBounds as a backup solution + if (!filter_area || (filter_area->hasZeroArea() && + filter_area->min()[Geom::X] == 0 && filter_area->min()[Geom::Y] == 0)) + filter_area = item->geometricBounds(); FilterUnits units(_filter_units, _primitive_units); units.set_ctm(trans); - units.set_item_bbox(item->itemBounds()); + units.set_item_bbox(filter_area); units.set_filter_area(*filter_area); std::pair<double,double> resolution @@ -200,7 +203,7 @@ void Filter::area_enlarge(Geom::IntRect &bbox, Inkscape::DrawingItem const *item } Geom::Rect item_bbox; - Geom::OptRect maybe_bbox = item->itemBounds(); + Geom::OptRect maybe_bbox = item->geometricBounds(); if (maybe_bbox.isEmpty()) { // Code below needs a bounding box return; @@ -220,20 +223,6 @@ void Filter::area_enlarge(Geom::IntRect &bbox, Inkscape::DrawingItem const *item */ } -Geom::OptIntRect Filter::compute_drawbox(Inkscape::DrawingItem const *item, Geom::OptRect const &item_bbox) { - -// Geom::OptRect enlarged = filter_effect_area(item_bbox); // disabled, already done in visualBounds - Geom::OptRect enlarged = item_bbox; // see LP Bug 1188336 - if (enlarged) { - *enlarged *= item->ctm(); - - Geom::OptIntRect ret(enlarged->roundOutwards()); - return ret; - } else { - return Geom::OptIntRect(); - } -} - Geom::OptRect Filter::filter_effect_area(Geom::OptRect const &bbox) { Geom::Point minp, maxp; diff --git a/src/display/nr-filter.h b/src/display/nr-filter.h index d53005c5d..5df38ffe9 100644 --- a/src/display/nr-filter.h +++ b/src/display/nr-filter.h @@ -151,12 +151,6 @@ public: */ void area_enlarge(Geom::IntRect &area, Inkscape::DrawingItem const *item) const; /** - * Given an item bounding box (in user coords), this function enlarges it - * to contain the filter effects region and transforms it to screen - * coordinates - */ - Geom::OptIntRect compute_drawbox(Inkscape::DrawingItem const *item, Geom::OptRect const &item_bbox); - /** * Returns the filter effects area in user coordinate system. * The given bounding box should be a bounding box as specified in * SVG standard and in user coordinate system. diff --git a/src/doxygen-main.cpp b/src/doxygen-main.cpp index a1d3f3604..e581b8708 100644 --- a/src/doxygen-main.cpp +++ b/src/doxygen-main.cpp @@ -245,7 +245,6 @@ namespace XML {} * - SPLinearGradient * - SPRadialGradient * - SPPattern [\ref sp-pattern.cpp, \ref sp-pattern.h] - * - SPSkeleton [\ref sp-skeleton.cpp, \ref sp-skeleton.h] * - SPStop [\ref sp-stop.h] * - SPString [\ref sp-string.cpp, \ref sp-string.h] * - SPStyleElem [\ref sp-style-elem.cpp, \ref sp-style-elem.h] diff --git a/src/extension/internal/cairo-ps-out.cpp b/src/extension/internal/cairo-ps-out.cpp index e06c9f30d..5f535dc64 100644 --- a/src/extension/internal/cairo-ps-out.cpp +++ b/src/extension/internal/cairo-ps-out.cpp @@ -340,7 +340,7 @@ CairoPsOutput::init (void) "<_option value=\"page\">" N_("Use document's page size") "</_option>" "<_option value=\"drawing\">" N_("Use exported object's size") "</_option>" "</param>" - "<param name=\"bleed\" gui-text=\"" N_("Bleed/margin (mm)") "\" type=\"float\" min=\"-10000\" max=\"10000\">0</param>\n" + "<param name=\"bleed\" gui-text=\"" N_("Bleed/margin (mm):") "\" type=\"float\" min=\"-10000\" max=\"10000\">0</param>\n" "<param name=\"exportId\" gui-text=\"" N_("Limit export to the object with ID:") "\" type=\"string\"></param>\n" "<output>\n" "<extension>.ps</extension>\n" diff --git a/src/extension/internal/cairo-render-context.cpp b/src/extension/internal/cairo-render-context.cpp index a950fa177..4f9273cbb 100644 --- a/src/extension/internal/cairo-render-context.cpp +++ b/src/extension/internal/cairo-render-context.cpp @@ -1436,7 +1436,7 @@ CairoRenderContext::renderPathVector(Geom::PathVector const & pathv, SPStyle con return true; } -bool CairoRenderContext::renderImage(GdkPixbuf *pb, +bool CairoRenderContext::renderImage(Inkscape::Pixbuf *pb, Geom::Affine const &image_transform, SPStyle const * /*style*/) { g_assert( _is_valid ); @@ -1447,13 +1447,13 @@ bool CairoRenderContext::renderImage(GdkPixbuf *pb, _prepareRenderGraphic(); - int w = gdk_pixbuf_get_width (pb); - int h = gdk_pixbuf_get_height (pb); + int w = pb->width(); + int h = pb->height(); // TODO: reenable merge_opacity if useful float opacity = _state->opacity; - cairo_surface_t *image_surface = ink_cairo_surface_get_for_pixbuf(pb); + cairo_surface_t *image_surface = pb->getSurfaceRaw(); if (cairo_surface_status(image_surface)) { TRACE(("Image surface creation failed:\n%s\n", cairo_status_to_string(cairo_surface_status(image_surface)))); return false; diff --git a/src/extension/internal/cairo-render-context.h b/src/extension/internal/cairo-render-context.h index 91e1cdf7d..8d3e63775 100644 --- a/src/extension/internal/cairo-render-context.h +++ b/src/extension/internal/cairo-render-context.h @@ -6,7 +6,7 @@ */ /* * Authors: - * Miklos Erdelyi <erdelyim@gmail.com> + * Miklos Erdelyi <erdelyim@gmail.com> * * Copyright (C) 2006 Miklos Erdelyi * @@ -32,6 +32,8 @@ class SPClipPath; class SPMask; namespace Inkscape { +class Pixbuf; + namespace Extension { namespace Internal { @@ -144,7 +146,7 @@ public: /* Rendering methods */ bool renderPathVector(Geom::PathVector const &pathv, SPStyle const *style, Geom::OptRect const &pbox); - bool renderImage(GdkPixbuf *pb, + bool renderImage(Inkscape::Pixbuf *pb, Geom::Affine const &image_transform, SPStyle const *style); bool renderGlyphtext(PangoFont *font, Geom::Affine const &font_matrix, std::vector<CairoGlyphInfo> const &glyphtext, SPStyle const *style); diff --git a/src/extension/internal/cairo-renderer.cpp b/src/extension/internal/cairo-renderer.cpp index 3463925b6..cace251cf 100644 --- a/src/extension/internal/cairo-renderer.cpp +++ b/src/extension/internal/cairo-renderer.cpp @@ -27,6 +27,7 @@ #include <signal.h> #include <errno.h> +#include <boost/scoped_ptr.hpp> #include "libnrtype/Layout-TNG.h" #include <2geom/transforms.h> @@ -347,8 +348,8 @@ static void sp_image_render(SPItem *item, CairoRenderContext *ctx) if (!image->pixbuf) return; if ((image->width.computed <= 0.0) || (image->height.computed <= 0.0)) return; - w = gdk_pixbuf_get_width (image->pixbuf); - h = gdk_pixbuf_get_height (image->pixbuf); + w = image->pixbuf->width(); + h = image->pixbuf->height(); double x = image->x.computed; double y = image->y.computed; @@ -497,22 +498,15 @@ static void sp_asbitmap_render(SPItem *item, CairoRenderContext *ctx) GSList *items = NULL; items = g_slist_append(items, item); - GdkPixbuf *pb = sp_generate_internal_bitmap(document, NULL, - bbox->min()[Geom::X], bbox->min()[Geom::Y], bbox->max()[Geom::X], bbox->max()[Geom::Y], - width, height, res, res, (guint32) 0xffffff00, items ); + boost::scoped_ptr<Inkscape::Pixbuf> pb( + sp_generate_internal_bitmap(document, NULL, + bbox->min()[Geom::X], bbox->min()[Geom::Y], bbox->max()[Geom::X], bbox->max()[Geom::Y], + width, height, res, res, (guint32) 0xffffff00, items )); if (pb) { - TEST(gdk_pixbuf_save( pb, "bitmap.png", "png", NULL, NULL )); - - /* TODO: find a way to avoid a duplicate conversion between - * Cairo and GdkPixbuf pixel formats here. - * Internally, generate_internal_bitmap creates a Cairo surface, - * but then converts it to pixbuf format. In turn, renderImage() - * below converts back to Cairo format. - */ - ctx->renderImage(pb, t, item->style); - g_object_unref(pb); - pb = 0; + //TEST(gdk_pixbuf_save( pb, "bitmap.png", "png", NULL, NULL )); + + ctx->renderImage(pb.get(), t, item->style); } g_slist_free (items); } @@ -586,9 +580,9 @@ void CairoRenderer::renderItem(CairoRenderContext *ctx, SPItem *item) setStateForItem(ctx, item); CairoRenderState *state = ctx->getCurrentState(); - state->need_layer = ( state->mask || state->clip_path || state->opacity != 1.0 ); + state->need_layer = ( state->mask || state->opacity != 1.0 ); - // Draw item on a temporary surface so a mask, clip path, or opacity can be applied to it. + // Draw item on a temporary surface so a mask or opacity can be applied to it. if (state->need_layer) { state->merge_opacity = FALSE; ctx->pushLayer(); diff --git a/src/extension/internal/emf-print.cpp b/src/extension/internal/emf-print.cpp index 826a52ade..770257978 100644 --- a/src/extension/internal/emf-print.cpp +++ b/src/extension/internal/emf-print.cpp @@ -53,6 +53,7 @@ #include "sp-gradient.h" #include "sp-radial-gradient.h" #include "sp-linear-gradient.h" +#include "display/cairo-utils.h" #include "splivarot.h" // pieces for union on shapes #include "2geom/svg-path-parser.h" // to get from SVG text to Geom::Path @@ -333,7 +334,7 @@ int PrintEmf::create_brush(SPStyle const *style, PU_COLORREF fcolor) U_LOGBRUSH lb; uint32_t brush, fmode; MFDrawMode fill_mode; - GdkPixbuf *pixbuf; + Inkscape::Pixbuf *pixbuf; uint32_t brushStyle; int hatchType; U_COLORREF hatchColor; @@ -462,7 +463,7 @@ int PrintEmf::create_brush(SPStyle const *style, PU_COLORREF fcolor) int numCt; U_BITMAPINFOHEADER Bmih; PU_BITMAPINFO Bmi; - rgba_px = (char *) gdk_pixbuf_get_pixels(pixbuf); // Do NOT free this!!! + rgba_px = (char *) pixbuf->pixels(); // Do NOT free this!!! colortype = U_BCBM_COLOR32; (void) RGBA_to_DIB(&px, &cbPx, &ct, &numCt, rgba_px, width, height, width * 4, colortype, 0, 1); // Not sure why the next swap is needed because the preceding does it, and the code is identical @@ -528,7 +529,7 @@ int PrintEmf::create_pen(SPStyle const *style, const Geom::Affine &transform) int linejoin = 0; uint32_t pen; uint32_t brushStyle; - GdkPixbuf *pixbuf; + Inkscape::Pixbuf *pixbuf; int hatchType; U_COLORREF hatchColor; U_COLORREF bkColor; @@ -565,7 +566,7 @@ int PrintEmf::create_pen(SPStyle const *style, const Geom::Affine &transform) brush_classify(pat, 0, &pixbuf, &hatchType, &hatchColor, &bkColor); if (pixbuf) { brushStyle = U_BS_DIBPATTERN; - rgba_px = (char *) gdk_pixbuf_get_pixels(pixbuf); // Do NOT free this!!! + rgba_px = (char *) pixbuf->pixels(); // Do NOT free this!!! colortype = U_BCBM_COLOR32; (void) RGBA_to_DIB(&px, &cbPx, &ct, &numCt, rgba_px, width, height, width * 4, colortype, 0, 1); // Not sure why the next swap is needed because the preceding does it, and the code is identical diff --git a/src/extension/internal/gdkpixbuf-input.cpp b/src/extension/internal/gdkpixbuf-input.cpp index 117c2fe39..87cf8a9cc 100644 --- a/src/extension/internal/gdkpixbuf-input.cpp +++ b/src/extension/internal/gdkpixbuf-input.cpp @@ -1,6 +1,7 @@ #ifdef HAVE_CONFIG_H # include <config.h> #endif +#include <boost/scoped_ptr.hpp> #include <glib/gprintf.h> #include <glibmm/i18n.h> #include "document-private.h" @@ -14,15 +15,11 @@ #include "document-undo.h" #include "util/units.h" #include "image-resolution.h" +#include "display/cairo-utils.h" #include <set> namespace Inkscape { -namespace IO { -// this is defined in sp-image.cpp -GdkPixbuf* pixbuf_new_from_file(char const *filename, time_t &modTime, gchar*& pixPath); -} - namespace Extension { namespace Internal { @@ -47,9 +44,7 @@ GdkpixbufInput::open(Inkscape::Extension::Input *mod, char const *uri) } SPDocument *doc = NULL; - gchar *pixpath = NULL; - time_t dummy; - GdkPixbuf *pb = Inkscape::IO::pixbuf_new_from_file(uri, dummy, pixpath); + boost::scoped_ptr<Inkscape::Pixbuf> pb(Inkscape::Pixbuf::create_from_file(uri)); // TODO: the pixbuf is created again from the base64-encoded attribute in SPImage. // Find a way to create the pixbuf only once. @@ -59,8 +54,8 @@ GdkpixbufInput::open(Inkscape::Extension::Input *mod, char const *uri) bool saved = DocumentUndo::getUndoSensitive(doc); DocumentUndo::setUndoSensitive(doc, false); // no need to undo in this temporary document - double width = gdk_pixbuf_get_width(pb); - double height = gdk_pixbuf_get_height(pb); + double width = pb->width(); + double height = pb->height(); double defaultxdpi = prefs->getDouble("/dialogs/import/defaultxdpi/value", Inkscape::Util::Quantity::convert(1, "in", "px")); bool forcexdpi = prefs->getBool("/dialogs/import/forcexdpi"); ImageResolution *ir = 0; @@ -91,7 +86,7 @@ GdkpixbufInput::open(Inkscape::Extension::Input *mod, char const *uri) sp_repr_set_svg_double(image_node, "height", height); if (embed) { - sp_embed_image(image_node, pb); + sp_embed_image(image_node, pb.get()); } else { // convert filename to uri gchar* _uri = g_filename_to_uri(uri, NULL, NULL); @@ -103,9 +98,6 @@ GdkpixbufInput::open(Inkscape::Extension::Input *mod, char const *uri) } } - g_object_set_data(G_OBJECT(pb), "cairo_surface", NULL); - g_object_unref(pb); - // Add it to the current layer doc->getRoot()->appendChildRepr(image_node); Inkscape::GC::release(image_node); diff --git a/src/extension/internal/metafile-print.cpp b/src/extension/internal/metafile-print.cpp index 9d080bd96..1e7735410 100644 --- a/src/extension/internal/metafile-print.cpp +++ b/src/extension/internal/metafile-print.cpp @@ -266,7 +266,7 @@ void PrintMetafile::hatch_classify(char *name, int *hatchType, U_COLORREF *hatch // otherwise hatchType is set to -1 and hatchColor is not defined. // -void PrintMetafile::brush_classify(SPObject *parent, int depth, GdkPixbuf **epixbuf, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor) +void PrintMetafile::brush_classify(SPObject *parent, int depth, Inkscape::Pixbuf **epixbuf, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor) { if (depth == 0) { *epixbuf = NULL; diff --git a/src/extension/internal/metafile-print.h b/src/extension/internal/metafile-print.h index e64ba92f3..cba4d564d 100644 --- a/src/extension/internal/metafile-print.h +++ b/src/extension/internal/metafile-print.h @@ -30,6 +30,8 @@ struct SPGradient; struct SPObject; namespace Inkscape { +class Pixbuf; + namespace Extension { namespace Internal { @@ -93,7 +95,7 @@ protected: U_COLORREF weight_colors(U_COLORREF c1, U_COLORREF c2, double t); void hatch_classify(char *name, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor); - void brush_classify(SPObject *parent, int depth, GdkPixbuf **epixbuf, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor); + void brush_classify(SPObject *parent, int depth, Inkscape::Pixbuf **epixbuf, int *hatchType, U_COLORREF *hatchColor, U_COLORREF *bkColor); static void swapRBinRGBA(char *px, int pixels); int hold_gradient(void *gr, int mode); diff --git a/src/extension/internal/wmf-print.cpp b/src/extension/internal/wmf-print.cpp index e5816073e..99262b109 100644 --- a/src/extension/internal/wmf-print.cpp +++ b/src/extension/internal/wmf-print.cpp @@ -56,6 +56,7 @@ #include "sp-gradient.h" #include "sp-radial-gradient.h" #include "sp-linear-gradient.h" +#include "display/cairo-utils.h" #include "splivarot.h" // pieces for union on shapes #include "2geom/svg-path-parser.h" // to get from SVG text to Geom::Path @@ -336,7 +337,7 @@ int PrintWmf::create_brush(SPStyle const *style, PU_COLORREF fcolor) U_WLOGBRUSH lb; uint32_t brush, fmode; MFDrawMode fill_mode; - GdkPixbuf *pixbuf; + Inkscape::Pixbuf *pixbuf; uint32_t brushStyle; int hatchType; U_COLORREF hatchColor; @@ -464,7 +465,7 @@ int PrintWmf::create_brush(SPStyle const *style, PU_COLORREF fcolor) int numCt; U_BITMAPINFOHEADER Bmih; PU_BITMAPINFO Bmi; - rgba_px = (char *) gdk_pixbuf_get_pixels(pixbuf); // Do NOT free this!!! + rgba_px = (char *) pixbuf->pixels(); // Do NOT free this!!! colortype = U_BCBM_COLOR32; (void) RGBA_to_DIB(&px, &cbPx, &ct, &numCt, rgba_px, width, height, width * 4, colortype, 0, 1); // Not sure why the next swap is needed because the preceding does it, and the code is identical @@ -1112,10 +1113,10 @@ unsigned int PrintWmf::image( g_error("Fatal programming error in PrintWmf::image at EMRHEADER"); } - x1 = atof(style->object->getAttribute("x")); - y1 = atof(style->object->getAttribute("y")); - dw = atof(style->object->getAttribute("width")); - dh = atof(style->object->getAttribute("height")); + x1 = g_ascii_strtod(style->object->getAttribute("x"), NULL); + y1 = g_ascii_strtod(style->object->getAttribute("y"), NULL); + dw = g_ascii_strtod(style->object->getAttribute("width"), NULL); + dh = g_ascii_strtod(style->object->getAttribute("height"), NULL); Geom::Point pLL(x1, y1); Geom::Point pLL2 = pLL * tf; //location of LL corner in Inkscape coordinates diff --git a/src/filter-chemistry.cpp b/src/filter-chemistry.cpp index be030e12f..0f9138560 100644 --- a/src/filter-chemistry.cpp +++ b/src/filter-chemistry.cpp @@ -208,6 +208,15 @@ new_filter_gaussian_blur (SPDocument *document, gdouble radius, double expansion set_filter_area(repr, radius, expansion, expansionX, expansionY, width, height); + /* Inkscape now supports both sRGB and linear color-interpolation-filters. + * But, for the moment, keep sRGB as default value for new filters. + * historically set to sRGB and doesn't require conversion between + * filter cairo surfaces and other types of cairo surfaces. lp:1127103 */ + SPCSSAttr *css = sp_repr_css_attr_new(); + sp_repr_css_set_property(css, "color-interpolation-filters", "sRGB"); + sp_repr_css_change(repr, css, "style"); + sp_repr_css_attr_unref(css); + //create feGaussianBlur node Inkscape::XML::Node *b_repr; b_repr = xml_doc->createElement("svg:feGaussianBlur"); @@ -260,6 +269,15 @@ new_filter_blend_gaussian_blur (SPDocument *document, const char *blendmode, gdo repr = xml_doc->createElement("svg:filter"); repr->setAttribute("inkscape:collect", "always"); + /* Inkscape now supports both sRGB and linear color-interpolation-filters. + * But, for the moment, keep sRGB as default value for new filters. + * historically set to sRGB and doesn't require conversion between + * filter cairo surfaces and other types of cairo surfaces. lp:1127103 */ + SPCSSAttr *css = sp_repr_css_attr_new(); + sp_repr_css_set_property(css, "color-interpolation-filters", "sRGB"); + sp_repr_css_change(repr, css, "style"); + sp_repr_css_attr_unref(css); + // Append the new filter node to defs defs->appendChild(repr); Inkscape::GC::release(repr); diff --git a/src/filters/image.cpp b/src/filters/image.cpp index a454061c9..9a1b85911 100644 --- a/src/filters/image.cpp +++ b/src/filters/image.cpp @@ -17,6 +17,8 @@ #ifdef HAVE_CONFIG_H # include "config.h" #endif + +#include <sigc++/bind.h> #include "display/nr-filter-image.h" #include "uri.h" #include "uri-references.h" diff --git a/src/helper/pixbuf-ops.cpp b/src/helper/pixbuf-ops.cpp index a51a62f42..8e611d197 100644 --- a/src/helper/pixbuf-ops.cpp +++ b/src/helper/pixbuf-ops.cpp @@ -16,6 +16,7 @@ #endif #include <png.h> +#include <boost/scoped_ptr.hpp> #include <2geom/transforms.h> #include "interface.h" @@ -67,16 +68,14 @@ bool sp_export_jpg_file(SPDocument *doc, gchar const *filename, unsigned width, unsigned height, double xdpi, double ydpi, unsigned long bgcolor, double quality,GSList *items) { - GdkPixbuf* pixbuf = 0; - pixbuf = sp_generate_internal_bitmap(doc, filename, x0, y0, x1, y1, - width, height, xdpi, ydpi, - bgcolor, items ); + boost::scoped_ptr<Inkscape::Pixbuf> pixbuf( + sp_generate_internal_bitmap(doc, filename, x0, y0, x1, y1, + width, height, xdpi, ydpi, bgcolor, items)); gchar c[32]; g_snprintf(c, 32, "%f", quality); - gboolean saved = gdk_pixbuf_save (pixbuf, filename, "jpeg", NULL, "quality", c, NULL); + gboolean saved = gdk_pixbuf_save(pixbuf->getPixbufRaw(), filename, "jpeg", NULL, "quality", c, NULL); g_free(c); - g_object_unref (pixbuf); return saved; } @@ -94,7 +93,7 @@ bool sp_export_jpg_file(SPDocument *doc, gchar const *filename, @param ydpi @return the created GdkPixbuf structure or NULL if no memory is allocable */ -GdkPixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename*/, +Inkscape::Pixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename*/, double x0, double y0, double x1, double y1, unsigned width, unsigned height, double xdpi, double ydpi, unsigned long /*bgcolor*/, @@ -103,7 +102,7 @@ GdkPixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename* { if (width == 0 || height == 0) return NULL; - GdkPixbuf* pixbuf = NULL; + Inkscape::Pixbuf *inkpb = NULL; /* Create new drawing for offscreen rendering*/ Inkscape::Drawing drawing; drawing.setExact(true); @@ -146,7 +145,7 @@ GdkPixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename* // render items drawing.render(ct, final_bbox, Inkscape::DrawingItem::RENDER_BYPASS_CACHE); - pixbuf = ink_pixbuf_create_from_cairo_surface(surface); + inkpb = new Inkscape::Pixbuf(surface); } else { @@ -158,7 +157,7 @@ GdkPixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const */*filename* // gdk_pixbuf_save (pixbuf, "C:\\temp\\internal.jpg", "jpeg", NULL, "quality","100", NULL); - return pixbuf; + return inkpb; } /* diff --git a/src/helper/pixbuf-ops.h b/src/helper/pixbuf-ops.h index 44851d388..61a879f9b 100644 --- a/src/helper/pixbuf-ops.h +++ b/src/helper/pixbuf-ops.h @@ -15,11 +15,12 @@ #include <glib.h> class SPDocument; +namespace Inkscape { class Pixbuf; } bool sp_export_jpg_file (SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1, unsigned int width, unsigned int height, double xdpi, double ydpi, unsigned long bgcolor, double quality, GSList *items_only = NULL); -GdkPixbuf* sp_generate_internal_bitmap(SPDocument *doc, gchar const *filename, +Inkscape::Pixbuf *sp_generate_internal_bitmap(SPDocument *doc, gchar const *filename, double x0, double y0, double x1, double y1, unsigned width, unsigned height, double xdpi, double ydpi, unsigned long bgcolor, GSList *items_only = NULL); diff --git a/src/interface.cpp b/src/interface.cpp index 63d507f3e..ea5eaf16a 100644 --- a/src/interface.cpp +++ b/src/interface.cpp @@ -2009,6 +2009,15 @@ void ContextMenu::MakeImageMenu (void) mi->set_sensitive(FALSE); } + /* Trace Pixel Art */ + mi = manage(new Gtk::MenuItem(_("Trace Pixel Art"),1)); + mi->signal_activate().connect(sigc::mem_fun(*this, &ContextMenu::ImageTracePixelArt)); + mi->show(); + insert(*mi,positionOfLastDialog++); + if (_desktop->selection->isEmpty()) { + mi->set_sensitive(FALSE); + } + /* Embed image */ if (Inkscape::Verb::getbyid( "org.ekips.filter.embedselectedimages" )) { mi = manage(new Gtk::MenuItem(C_("Context menu", "Embed Image"))); @@ -2126,6 +2135,12 @@ void ContextMenu::ImageTraceBitmap(void) _desktop->_dlg_mgr->showDialog("Trace"); } +void ContextMenu::ImageTracePixelArt(void) +{ + inkscape_dialogs_unhide(); + _desktop->_dlg_mgr->showDialog("PixelArt"); +} + void ContextMenu::ImageEmbed(void) { if (_desktop->selection->isEmpty()) { diff --git a/src/interface.h b/src/interface.h index 13fbaf9ac..215a3bfc9 100644 --- a/src/interface.h +++ b/src/interface.h @@ -239,6 +239,11 @@ class ContextMenu : public Gtk::Menu void ImageTraceBitmap(void); /** + * callback, is executed on clicking the "Trace Pixel Art" menu entry + */ + void ImageTracePixelArt(void); + + /** * callback, is executed on clicking the "Extract Image" menu entry */ void ImageExtract(void); diff --git a/src/libdepixelize/CMakeLists.txt b/src/libdepixelize/CMakeLists.txt new file mode 100644 index 000000000..64a72f9d9 --- /dev/null +++ b/src/libdepixelize/CMakeLists.txt @@ -0,0 +1,11 @@ + +set(libdepixelize_SRC + kopftracer2011.cpp + + # ------- + # Headers + kopftracer2011.h + splines.h +) + +add_inkscape_lib(depixelize_LIB "${libdepixelize_SRC}") diff --git a/src/libdepixelize/Makefile_insert b/src/libdepixelize/Makefile_insert new file mode 100644 index 000000000..75b19bf5c --- /dev/null +++ b/src/libdepixelize/Makefile_insert @@ -0,0 +1,11 @@ +## Makefile.am fragment sourced by src/Makefile.am. + +libdepixelize/all: libdepixelize/libdepixelize.a + +libdepixelize/clean: + rm -f libdepixelize/libdepixelize.a $(libdepixelize_libdepixelize_a_OBJECTS) + +libdepixelize_libdepixelize_a_SOURCES = \ + libdepixelize/kopftracer2011.cpp \ + libdepixelize/kopftracer2011.h \ + libdepixelize/splines.h diff --git a/src/libdepixelize/kopftracer2011.cpp b/src/libdepixelize/kopftracer2011.cpp new file mode 100644 index 000000000..26ad8863b --- /dev/null +++ b/src/libdepixelize/kopftracer2011.cpp @@ -0,0 +1,470 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +// Build fix under Inkscape build tree +#if GLIBMM_DISABLE_DEPRECATED && HAVE_GLIBMM_THREADS_H +#include <glibmm/threads.h> +#endif + +#include <utility> +#include <algorithm> +#include "kopftracer2011.h" +#include "priv/colorspace.h" +#include "priv/homogeneoussplines.h" +#include "priv/branchless.h" +#include "priv/splines.h" +#include "priv/iterator.h" + +namespace Tracer { +namespace Heuristics { + +int curves(const PixelGraph &graph, PixelGraph::const_iterator a, + PixelGraph::const_iterator b); +bool islands(PixelGraph::const_iterator a, PixelGraph::const_iterator b); + +struct SparsePixels +{ + enum Diagonal { + /** + * From (first) the top left corner to (second) the bottom right. + */ + MAIN_DIAGONAL = 0, + /** + * From (first) the top right to (second) the bottom left. + */ + SECONDARY_DIAGONAL = 1 + }; + + typedef std::pair<PixelGraph::const_iterator, PixelGraph::const_iterator> + Edge; + typedef std::pair<Edge, int> EdgeWeight; + + void operator()(const PixelGraph &graph, unsigned radius); + + static bool similar_colors(PixelGraph::const_iterator n, + const guint8 (&a)[4], const guint8 (&b)[4]); + + /* + * Precondition: Must be filled according to Diagonal enum. + */ + EdgeWeight diagonals[2]; +}; + +} // namespace Heuristics + +Splines Kopf2011::to_voronoi(const std::string &filename, + const Options &options) +{ + return to_voronoi(Gdk::Pixbuf::create_from_file(filename), options); +} + +Splines Kopf2011::to_voronoi(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options) +{ + return Splines(_voronoi<Precision>(buf, options)); +} + +Splines Kopf2011::to_splines(const std::string &filename, + const Options &options) +{ + return to_splines(Gdk::Pixbuf::create_from_file(filename), options); +} + +Splines Kopf2011::to_splines(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options) +{ + HomogeneousSplines<Precision> splines(_voronoi<Precision>(buf, options)); + return Splines(splines, options.optimize, options.nthreads); +} + +template<class T> +SimplifiedVoronoi<T> Kopf2011::_voronoi(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options) +{ + PixelGraph graph(buf); + + /*if ( !graph.width() || !graph.height() ) + return;*/ + +#ifndef NDEBUG + graph.checkConsistency(); +#endif + + // This step could be part of the initialization of PixelGraph + // and decrease the necessary number of passes + graph.connectAllNeighbors(); + +#ifndef NDEBUG + graph.checkConsistency(); +#endif + + // This step can't be part of PixelGraph initilization without adding some + // cache misses due to random access patterns that might be injected + _disconnect_neighbors_with_dissimilar_colors(graph); + +#ifndef NDEBUG + graph.checkConsistency(); +#endif + + // This and below steps must be executed in separate. + // Otherwise, there will be colateral effects due to misassumption about the + // data being read. + _remove_crossing_edges_safe(graph); + +#ifndef NDEBUG + graph.checkConsistency(); +#endif + + _remove_crossing_edges_unsafe(graph, options); + +#ifndef NDEBUG + graph.checkConsistency(); +#endif + + return SimplifiedVoronoi<T>(graph); +} + +// TODO: move this function (plus connectAllNeighbors) to PixelGraph constructor +inline void +Kopf2011::_disconnect_neighbors_with_dissimilar_colors(PixelGraph &graph) +{ + using colorspace::similar_colors; + for ( PixelGraph::iterator it = graph.begin(), end = graph.end() ; it != end + ; ++it ) { + if ( it->adj.top ) + it->adj.top = similar_colors(it->rgba, (it - graph.width())->rgba); + if ( it->adj.topright ) { + it->adj.topright + = similar_colors(it->rgba, (it - graph.width() + 1)->rgba); + } + if ( it->adj.right ) + it->adj.right = similar_colors(it->rgba, (it + 1)->rgba); + if ( it->adj.bottomright ) { + it->adj.bottomright + = similar_colors(it->rgba, (it + graph.width() + 1)->rgba); + } + if ( it->adj.bottom ) { + it->adj.bottom + = similar_colors(it->rgba, (it + graph.width())->rgba); + } + if ( it->adj.bottomleft ) { + it->adj.bottomleft + = similar_colors(it->rgba, (it + graph.width() - 1)->rgba); + } + if ( it->adj.left ) + it->adj.left = similar_colors(it->rgba, (it - 1)->rgba); + if ( it->adj.topleft ) { + it->adj.topleft = similar_colors(it->rgba, + (it - graph.width() - 1)->rgba); + } + } +} + +/** + * This method removes crossing edges if the 2x2 block is fully connected. + * + * In this case the two diagonal connections can be safely removed without + * affecting the final result. + * + * \TODO: It should remember/cache who are the unsafe crossing edges? + */ +inline void Kopf2011::_remove_crossing_edges_safe(PixelGraph &graph) +{ + if ( graph.width() < 2 || graph.height() < 2 ) + return; + + PixelGraph::iterator it = graph.begin(); + for ( int i = 0 ; i != graph.height() - 1 ; ++i, ++it ) { + for ( int j = 0 ; j != graph.width() - 1 ; ++j, ++it ) { + // this <-> right + if ( !it->adj.right ) + continue; + + // this <-> down + if ( !it->adj.bottom ) + continue; + + PixelGraph::iterator down_right = it + graph.width() + 1; + + // down_right <-> right + if ( !down_right->adj.top ) + continue; + + // down_right <-> down + if ( !down_right->adj.left ) + continue; + + // main diagonal + // this <-> down_right + it->adj.bottomright = 0; + down_right->adj.topleft = 0; + + // secondary diagonal + // right <-> down + (it + 1)->adj.bottomleft = 0; + (it + graph.width())->adj.topright = 0; + } + } +} + +/** + * This method removes crossing edges using the heuristics. + */ +inline +void Kopf2011::_remove_crossing_edges_unsafe(PixelGraph &graph, + const Options &options) +{ + if ( graph.width() < 2 || graph.height() < 2 ) + return; + + // Iterate over the graph, 2x2 blocks at time + PixelGraph::iterator it = graph.begin(); + for (int i = 0 ; i != graph.height() - 1 ; ++i, ++it ) { + for ( int j = 0 ; j != graph.width() - 1 ; ++j, ++it ) { + using std::pair; + using std::make_pair; + + typedef pair<PixelGraph::iterator, PixelGraph::iterator> Edge; + typedef pair<Edge, int> EdgeWeight; + + EdgeWeight diagonals[2] = { + make_pair(make_pair(it, graph.nodeBottomRight(it)), 0), + make_pair(make_pair(graph.nodeRight(it), graph.nodeBottom(it)), + 0) + }; + + // Check if there are crossing edges + if ( !diagonals[0].first.first->adj.bottomright + || !diagonals[1].first.first->adj.bottomleft ) { + continue; + } + + // Compute weights + for ( int i = 0 ; i != 2 ; ++i ) { + // Curves and islands heuristics + PixelGraph::const_iterator a = diagonals[i].first.first; + PixelGraph::const_iterator b = diagonals[i].first.second; + + diagonals[i].second += Heuristics::curves(graph, a, b) + * options.curvesMultiplier; + + diagonals[i].second += Heuristics::islands(a, b) + * options.islandsWeight; + } + + { + // Sparse pixels heuristic + Heuristics::SparsePixels sparse_pixels; + + for ( int i = 0 ; i != 2 ; ++i ) + sparse_pixels.diagonals[i] = diagonals[i]; + + sparse_pixels(graph, options.sparsePixelsRadius); + + for ( int i = 0 ; i != 2 ; ++i ) { + diagonals[i].second += sparse_pixels.diagonals[i].second + * options.sparsePixelsMultiplier; + } + } + + // Remove edges with lower weight + if ( diagonals[0].second > diagonals[1].second ) { + diagonals[1].first.first->adj.bottomleft = 0; + diagonals[1].first.second->adj.topright = 0; + } else if ( diagonals[0].second < diagonals[1].second ) { + diagonals[0].first.first->adj.bottomright = 0; + diagonals[0].first.second->adj.topleft = 0; + } else { + diagonals[0].first.first->adj.bottomright = 0; + diagonals[0].first.second->adj.topleft = 0; + diagonals[1].first.first->adj.bottomleft = 0; + diagonals[1].first.second->adj.topright = 0; + } + } + } +} + +inline int Heuristics::curves(const PixelGraph &graph, + PixelGraph::const_iterator a, + PixelGraph::const_iterator b) +{ + int count = 1; + ToPtr<PixelGraph::Node> to_ptr; + ToIter<PixelGraph::Node> to_iter(graph.begin()); + + // b -> a + // and then a -> b + for ( int i = 0 ; i != 2 ; ++i ) { + PixelGraph::const_iterator it = i ? a : b; + PixelGraph::const_iterator prev = i ? b : a; + int local_count = 0; + + // Used to avoid inifinite loops in circular-like edges + const PixelGraph::const_iterator initial = it; + + while ( it->adjsize() == 2 ) { + ++local_count; + + // Iterate to next + { + // There are only two values that won't be zero'ed + // and one of them has the same value of prev + guintptr aux = guintptr(to_ptr(it)); + aux = (it->adj.top + * guintptr(to_ptr(graph.nodeTop(it)))) + + (it->adj.topright + * guintptr(to_ptr(graph.nodeTopRight(it)))) + + (it->adj.right + * guintptr(to_ptr(graph.nodeRight(it)))) + + (it->adj.bottomright + * guintptr(to_ptr(graph.nodeBottomRight(it)))) + + (it->adj.bottom + * guintptr(to_ptr(graph.nodeBottom(it)))) + + (it->adj.bottomleft + * guintptr(to_ptr(graph.nodeBottomLeft(it)))) + + (it->adj.left + * guintptr(to_ptr(graph.nodeLeft(it)))) + + (it->adj.topleft + * guintptr(to_ptr(graph.nodeTopLeft(it)))) + - guintptr(to_ptr(prev)); + prev = it; + it = to_iter(reinterpret_cast<PixelGraph::Node const*>(aux)); + } + + // Break infinite loops + if ( it == initial ) + return local_count; + } + count += local_count; + } + + return count; +} + +inline void Heuristics::SparsePixels::operator ()(const PixelGraph &graph, + unsigned radius) +{ + if ( !graph.width() || !graph.height() ) + return; + + // Clear weights + for ( int i = 0 ; i != 2 ; ++i ) + diagonals[i].second = 0; + + if ( !radius ) + return; + + // Fix radius/bounds + { + unsigned x = graph.toX(diagonals[MAIN_DIAGONAL].first.first); + unsigned y = graph.toY(diagonals[MAIN_DIAGONAL].first.first); + unsigned minor = std::min(x, y); + unsigned displace = radius - 1; + + if ( displace > minor ) { + displace = minor; + radius = displace + 1; + } + + displace = radius; + + if ( x + displace >= graph.width() ) { + displace = unsigned(graph.width()) - x - 1; + radius = displace; + } + + if ( y + displace >= graph.height() ) { + displace = unsigned(graph.height()) - y - 1; + radius = displace; + } + } + + if ( !radius ) + return; + + // Iterate over nodes and count them + { + PixelGraph::const_iterator it = diagonals[MAIN_DIAGONAL].first.first; + for ( unsigned i = radius - 1 ; i ; --i ) + it = graph.nodeTopLeft(it); + + bool invert = false; + for ( unsigned i = 0 ; i != 2 * radius ; ++i ) { + for ( unsigned j = 0 ; j != 2 * radius ; ++j ) { + for ( int k = 0 ; k != 2 ; ++k ) { + diagonals[k].second + += similar_colors(it, diagonals[k].first.first->rgba, + diagonals[k].first.second->rgba); + } + it = (invert ? graph.nodeLeft(it) : graph.nodeRight(it)); + } + it = (invert ? graph.nodeRight(it) : graph.nodeLeft(it)); + + + invert = !invert; + it = graph.nodeBottom(it); + } + } + + int minor = std::min(diagonals[0].second, diagonals[1].second); + for ( int i = 0 ; i != 2 ; ++i ) + diagonals[i].second -= minor; + + std::swap(diagonals[0].second, diagonals[1].second); +} + +inline bool +Heuristics::SparsePixels::similar_colors(PixelGraph::const_iterator n, + const guint8 (&a)[4], + const guint8 (&b)[4]) +{ + using colorspace::similar_colors; + return similar_colors(n->rgba, a) || similar_colors(n->rgba, b); +} + +inline bool Heuristics::islands(PixelGraph::const_iterator a, + PixelGraph::const_iterator b) +{ + if ( a->adjsize() == 1 || b->adjsize() == 1 ) + return true; + + return false; +} + +} // namespace Tracer + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/kopftracer2011.h b/src/libdepixelize/kopftracer2011.h new file mode 100644 index 000000000..73f3b7274 --- /dev/null +++ b/src/libdepixelize/kopftracer2011.h @@ -0,0 +1,123 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_KOPFTRACER2011_H +#define LIBDEPIXELIZE_TRACER_KOPFTRACER2011_H + +#include <string> + +// Contains exception definitions +#include <glibmm/fileutils.h> +#include <gdkmm/pixbuf.h> +#include "splines.h" + +namespace Tracer { + +class PixelGraph; +template<typename T> class SimplifiedVoronoi; +template<typename T> class HomogeneousSplines; + +class Kopf2011 +{ +public: + struct Options + { + enum Defaults { + CURVES_MULTIPLIER = 1, + ISLANDS_WEIGHT = 5, + SPARSE_PIXELS_MULTIPLIER = 1, + SPARSE_PIXELS_RADIUS = 4 + }; + + Options() : + curvesMultiplier(CURVES_MULTIPLIER), + islandsWeight(ISLANDS_WEIGHT), + sparsePixelsMultiplier(SPARSE_PIXELS_MULTIPLIER), + sparsePixelsRadius(SPARSE_PIXELS_RADIUS), + optimize(true), + nthreads(1) + {} + + // Heuristics + double curvesMultiplier; + int islandsWeight; + double sparsePixelsMultiplier; + unsigned sparsePixelsRadius; + + // Other options + bool optimize; + int nthreads; + }; + + /** + * # Exceptions + * + * Glib::FileError + * Gdk::PixbufError + */ + static Splines to_voronoi(const std::string &filename, + const Options &options = Options()); + + static Splines to_voronoi(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options = Options()); + + /** + * # Exceptions + * + * Glib::FileError + * Gdk::PixbufError + */ + static Splines to_splines(const std::string &filename, + const Options &options = Options()); + + static Splines to_splines(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options = Options()); + +private: + typedef double Precision; + + template<class T> + static SimplifiedVoronoi<T> _voronoi(const Glib::RefPtr<Gdk::Pixbuf const> &buf, + const Options &options); + + static void _disconnect_neighbors_with_dissimilar_colors(PixelGraph &graph); + static void _remove_crossing_edges_safe(PixelGraph &graph); + static void _remove_crossing_edges_unsafe(PixelGraph &graph, + const Options &options); +}; + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_KOPFTRACER2011_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/makefile.in b/src/libdepixelize/makefile.in new file mode 100644 index 000000000..51d020db1 --- /dev/null +++ b/src/libdepixelize/makefile.in @@ -0,0 +1,17 @@ +# Convenience stub makefile to call the real Makefile. + +@SET_MAKE@ + +OBJEXT = @OBJEXT@ + +# Explicit so that it's the default rule. +all: + cd .. && $(MAKE) libdepixelize/all + +clean %.a %.$(OBJEXT): + cd .. && $(MAKE) libdepixelize/$@ + +.PHONY: all clean + +.SUFFIXES: +.SUFFIXES: .a .$(OBJEXT) diff --git a/src/libdepixelize/priv/branchless.h b/src/libdepixelize/priv/branchless.h new file mode 100644 index 000000000..487a9688d --- /dev/null +++ b/src/libdepixelize/priv/branchless.h @@ -0,0 +1,58 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_BRANCHLESS_H +#define LIBDEPIXELIZE_TRACER_BRANCHLESS_H + +namespace Tracer { + +/** + * Branch misprediction proof operations + */ +namespace branchless { + +/* + * All modern processors optimize the branch to a conditional move + */ +template<class T> +T first_if(T first, T second, bool cond) +{ + return cond ? first : second; +} + +} // namespace branchless +} // namespace Tracer { + +#endif // LIBDEPIXELIZE_TRACER_BRANCHLESS_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/colorspace.h b/src/libdepixelize/priv/colorspace.h new file mode 100644 index 000000000..4982630ad --- /dev/null +++ b/src/libdepixelize/priv/colorspace.h @@ -0,0 +1,111 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_YUV_H +#define LIBDEPIXELIZE_TRACER_YUV_H + +#include <glib.h> + +namespace Tracer { +namespace colorspace { + +/** + * The same algorithm used in hqx filter + */ +inline void rgb2yuv(guint8 r, guint8 g, guint8 b, + guint8 &y, guint8 &u, guint8 &v) +{ + y = 0.299 * r + 0.587 * g + 0.114 * b; + u = guint16(-0.169 * r - 0.331 * g + 0.5 * b) + 128; + v = guint16(0.5 * r - 0.419 * g - 0.081 * b) + 128; +} + +inline void rgb2yuv(const guint8 rgb[], guint8 yuv[]) +{ + rgb2yuv(rgb[0], rgb[1], rgb[2], yuv[0], yuv[1], yuv[2]); +} + +inline bool same_color(const guint8 (&a)[4], const guint8 (&b)[4]) +{ + return (a[0] == b[0] + && a[1] == b[1] + && a[2] == b[2] + && a[3] == b[3]); +} + +inline bool dissimilar_colors(const guint8 a[], const guint8 b[]) +{ + // C uses row-major order, so + // A[2][3] = { {1, 2, 3}, {4, 5, 6} } = {1, 2, 3, 4, 5, 6} + guint8 yuv[2][3]; + rgb2yuv(a, yuv[0]); + rgb2yuv(b, yuv[1]); + + // Magic numbers taken from hqx algorithm + // Only used to describe the level of tolerance + return abs(yuv[0][0] - yuv[1][0]) > 0x30 + || abs(yuv[0][1] - yuv[1][1]) > 7 + || abs(yuv[0][2] - yuv[1][2]) > 6; +} + +inline bool similar_colors(const guint8 a[], const guint8 b[]) +{ + return !dissimilar_colors(a, b); +} + +inline bool shading_edge(const guint8 a[], const guint8 b[]) +{ + // C uses row-major order, so + // A[2][3] = { {1, 2, 3}, {4, 5, 6} } = {1, 2, 3, 4, 5, 6} + guint8 yuv[2][3]; + rgb2yuv(a, yuv[0]); + rgb2yuv(b, yuv[1]); + + // Magic numbers taken from Kopf-Lischinski algorithm + // Only used to describe the level of tolerance + return abs(yuv[0][0] - yuv[1][0]) <= 100 + && abs(yuv[0][1] - yuv[1][1]) <= 100 + && abs(yuv[0][2] - yuv[1][2]) <= 100; +} + +inline bool contour_edge(const guint8 a[], const guint8 b[]) +{ + return !shading_edge(a, b); +} + +} // namespace colorspace +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_YUV_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/homogeneoussplines.h b/src/libdepixelize/priv/homogeneoussplines.h new file mode 100644 index 000000000..57c77a163 --- /dev/null +++ b/src/libdepixelize/priv/homogeneoussplines.h @@ -0,0 +1,465 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_HOMOGENEOUSSPLINES_H +#define LIBDEPIXELIZE_TRACER_HOMOGENEOUSSPLINES_H + +#include "simplifiedvoronoi.h" +#include "point.h" +#include <algorithm> +#include <utility> + +namespace Tracer { + +template<typename T> +class HomogeneousSplines +{ +public: + struct Polygon + { + Polygon() {} + Polygon(const guint8 (&rgba)[4]) + { + for ( int i = 0 ; i != 4 ; ++i ) + this->rgba[i] = rgba[i]; + } + + std::vector< Point<T> > vertices; + + /** + * It may be benefited from C++11 move references. + */ + std::vector< std::vector< Point<T> > > holes; + + guint8 rgba[4]; + }; + + typedef typename std::vector<Polygon>::iterator iterator; + typedef typename std::vector<Polygon>::const_iterator const_iterator; + typedef typename std::vector<Polygon>::size_type size_type; + + HomogeneousSplines(const SimplifiedVoronoi<T> &voronoi); + + // Iterators + iterator begin() + { + return _polygons.begin(); + } + + const_iterator begin() const + { + return _polygons.begin(); + } + + iterator end() + { + return _polygons.end(); + } + + const_iterator end() const + { + return _polygons.end(); + } + + size_type size() const + { + return _polygons.size(); + } + + int width() const + { + return _width; + } + + int height() const + { + return _height; + } + +private: + typedef typename SimplifiedVoronoi<T>::Cell Cell; + typedef std::vector< Point<T> > Points; + + typedef typename SimplifiedVoronoi<T>::iterator voronoi_iter; + typedef typename SimplifiedVoronoi<T>::const_iterator voronoi_citer; + + typedef typename Points::iterator points_iter; + typedef typename Points::const_iterator points_citer; + typedef typename Points::reverse_iterator points_riter; + typedef typename Points::const_reverse_iterator points_criter; + + typedef std::pair<points_iter, points_iter> points_range; + typedef std::pair<points_citer, points_citer> points_crange; + + struct CommonEdge + { + bool ok; //< share an edge + Points *dst; + const Points *src; + + // the interval is closed on both ends + // different from [begin, end) STL style + points_iter dst_begin, dst_end; + points_citer src_begin, src_end; + }; + + struct SelfCommonEdge + { + bool ok; //< share an edge + + // Greater range. The one that should be erased from the vector. + points_riter grt_begin, grt_end; + + // Smaller range. The one that should be used to create a new vector. + points_riter sml_begin, sml_end; + }; + + /** + * Return ok == true if they share an edge (more than one point). + */ + CommonEdge _common_edge(Points &dst, const Points &src); + + /** + * Return ok == true if they share an edge (more than one point). + * + * - [dst_begin, dst_end) will contain the hole polygon + * - [src_begin, src_end) will contain the range to be erased + * + * It's required to do the search in backward order. + */ + SelfCommonEdge _common_edge(Points &points, points_riter it); + + /*! + * Add polygon represented by \p common_edge.src to \p common_edge.dst. + */ + void _polygon_union(CommonEdge common_edge); + + /** + * Weird recursive function created to solve the complex problem to fill + * polygons holes without the need to store temporaries on the heap nor + * changing requirements to some data type that don't invalidate iterators + * that point before the current element (maybe I'll write some poetry about + * the problem someday). + */ + void _fill_holes(std::vector<Points> &holes, points_iter region_begin, + points_iter region_end); + + std::vector<Polygon> _polygons; + int _width; + int _height; +}; + +template<class T> +HomogeneousSplines<T>::HomogeneousSplines(const SimplifiedVoronoi<T> &voronoi) : + _width(voronoi.width()), + _height(voronoi.height()) +{ + //if (!voronoi.size()) + // return; + using colorspace::same_color; + + // Identify visible edges (group polygons with the same color) + for ( voronoi_citer cell_it = voronoi.begin(), cell_end = voronoi.end() + ; cell_it != cell_end ; ++cell_it ) { + bool found = false; + for ( iterator polygon_it = _polygons.begin(), + polygon_end = _polygons.end() + ; polygon_it != polygon_end ; ++polygon_it ) { + if ( same_color(polygon_it->rgba, cell_it->rgba) ) { + CommonEdge common_edge = _common_edge(polygon_it->vertices, + cell_it->vertices); + if ( common_edge.ok ) { + _polygon_union(common_edge); + found = true; + + for ( iterator polygon2_it = polygon_it + 1 + ; polygon2_it != polygon_end ; ++polygon2_it ) { + if ( same_color(polygon_it->rgba, polygon2_it->rgba) ) { + CommonEdge common_edge2 + = _common_edge(polygon_it->vertices, + polygon2_it->vertices); + if ( common_edge2.ok ) { + _polygon_union(common_edge2); + _polygons.erase(polygon2_it); + break; + } + } + } + + break; + } + } + } + if ( !found ) { + Polygon polygon(cell_it->rgba); + polygon.vertices = cell_it->vertices; + _polygons.insert(_polygons.end(), polygon); + } + } + + // Find polygons with holes and fix them + // This iteration runs such complex time-consuming algorithm, but each + // polygon has an independent result. They wouldn't even need to share/sync + // results and the only waste would be a join at the end of the for. + for ( typename std::vector<Polygon>::iterator it = _polygons.begin(), + end = _polygons.end() ; it != end ; ++it ) { + SelfCommonEdge ce = _common_edge(it->vertices, it->vertices.rbegin()); + while ( ce.ok ) { + _fill_holes(it->holes, ce.sml_end.base(), ce.sml_begin.base()); + it->vertices.erase(ce.grt_end.base() + 1, ce.grt_begin.base()); + ce = _common_edge(it->vertices, ce.grt_end); + } + } +} + +// it can infinite loop if points of both entities are equal, +// but this shouldn't happen if user has only access to Kopf2011 interface +template<class T> +typename HomogeneousSplines<T>::CommonEdge +HomogeneousSplines<T>::_common_edge(Points &dst, const Points &src) +{ + // It's an edge, then the points are closer together. After we find the + // first point, there is no need for check against all points of the src + // a second time + + const points_iter dst_begin = dst.begin(); + const points_iter dst_end = dst.end(); + + const points_citer src_begin = src.begin(); + const points_citer src_end = src.end(); + + for ( points_iter it = dst_begin ; it != dst_end ; ++it ) { + points_citer src_it = std::find(src_begin, src_end, *it); + + if ( src_it == src_end ) + continue; + + points_iter dst_common_edge_begin = it; + points_citer src_common_edge_end = src_it; + + // iterate until find the beginning of the common edge range + while ( *dst_common_edge_begin == *src_common_edge_end ) { + if ( dst_common_edge_begin == dst_begin ) + dst_common_edge_begin = dst_end - 1; + else + --dst_common_edge_begin; + + ++src_common_edge_end; + if ( src_common_edge_end == src_end ) + src_common_edge_end = src_begin; + } + + // fix {dst_begin, src_end} range + ++dst_common_edge_begin; + if ( dst_common_edge_begin == dst_end ) + dst_common_edge_begin = dst_begin; + + if ( src_common_edge_end == src_begin ) + src_common_edge_end = src_end - 1; + else + --src_common_edge_end; + + points_iter dst_common_edge_end = it; + points_citer src_common_edge_begin = src_it; + + // find the end of the common edge range + while ( *dst_common_edge_end == *src_common_edge_begin ) { + ++dst_common_edge_end; + if ( dst_common_edge_end == dst_end ) + dst_common_edge_end = dst_begin; + + if ( src_common_edge_begin == src_begin ) + src_common_edge_begin = src_end - 1; + else + --src_common_edge_begin; + } + + // fix {dst_end, src_begin} range + if ( dst_common_edge_end == dst_begin ) + dst_common_edge_end = dst_end - 1; + else + --dst_common_edge_end; + + ++src_common_edge_begin; + if ( src_common_edge_begin == src_end ) + src_common_edge_begin = src_begin; + + CommonEdge ret; + + // if only one point in common + if ( dst_common_edge_begin == dst_common_edge_end ) + continue; + + ret.ok = true; + + ret.dst = &dst; + ret.dst_begin = dst_common_edge_begin; + ret.dst_end = dst_common_edge_end; + + ret.src = &src; + ret.src_begin = src_common_edge_begin; + ret.src_end = src_common_edge_end; + + return ret; + } + + CommonEdge ret; + ret.ok = false; + return ret; +} + +template<class T> +typename HomogeneousSplines<T>::SelfCommonEdge +HomogeneousSplines<T>::_common_edge(Points &points, points_riter it) +{ + SelfCommonEdge ret; + + ret.grt_end = points.rend(); + + for ( ; it != ret.grt_end ; ++it ) { + ret.sml_end = std::find(it + 1, ret.grt_end, *it); + + if ( ret.sml_end == ret.grt_end ) + continue; + + ret.grt_begin = it; + ret.grt_end = ret.sml_end + 1; + + ret.sml_begin = it; + + while ( *ret.sml_begin == *ret.sml_end ) { + ++ret.sml_begin; + --ret.sml_end; + } + + --ret.sml_begin; + ++ret.sml_end; + ++ret.sml_end; + + ret.ok = true; + return ret; + } + + ret.ok = false; + return ret; +} + +template<class T> +void HomogeneousSplines<T>::_polygon_union(CommonEdge common_edge) +{ + Points &dst = *common_edge.dst; + const Points &src = *common_edge.src; + + // the rotated cell must be inserted before (dst.begin() + index) + typename Points::difference_type index; + + // first, we remove the common edge in dst + if ( common_edge.dst_begin < common_edge.dst_end ) { + // common edge is in the middle of dst + + index = dst.erase(common_edge.dst_begin, + common_edge.dst_end + 1) - dst.begin(); + } else { + // common edge cross the end of dst + + dst.erase(common_edge.dst_begin, dst.end()); + dst.erase(dst.begin(), common_edge.dst_end); + index = dst.end() - dst.begin(); + } + + // second, we copy src points to polygon + if ( common_edge.src_begin < common_edge.src_end ) { + // common edge is in the middle of src + + const typename Points::difference_type nfirstinserted + = src.end() - common_edge.src_end; + const typename Points::difference_type nsecondinserted + = 1 + (common_edge.src_begin - src.begin()); + + dst.reserve(dst.size() + nfirstinserted + nsecondinserted); + + dst.insert(dst.begin() + index, common_edge.src_end, src.end()); + + dst.insert(dst.begin() + index + nfirstinserted, + src.begin(), common_edge.src_begin + 1); + } else { + // common edge cross the end of src + + dst.reserve(dst.size() + 1 + + (common_edge.src_begin - common_edge.src_end)); + + dst.insert(dst.begin() + index, + common_edge.src_end, common_edge.src_begin + 1); + } +} + +// The following piece of code is so evil that you could end up invoking an +// ancient beast if you proceed to read it, but I'll be able to explain it in +// the form of some video (text is not so representative as an image). +template<class T> +void HomogeneousSplines<T>::_fill_holes(std::vector<Points> &holes, + points_iter region_begin, + points_iter region_end) +{ + // the exact location might not always be back and iterators will be + // invalidated after some insertions, then the index is required + const typename std::vector<Points>::size_type hole_index = holes.size(); + holes.resize(hole_index + 1); + + for ( points_iter it = region_begin + 1 ; it != region_end ; ++it ) { + points_iter res = std::find(it + 1, region_end, *it); + if ( res == region_end ) + continue; + + holes[hole_index].insert(holes[hole_index].end(), region_begin, + it); + region_begin = res; + + do { + ++it; + --res; + } while ( *it == *res ); + _fill_holes(holes, it - 1, res + 2); + + it = region_begin; + } + + holes[hole_index].insert(holes[hole_index].end(), region_begin, + region_end - 1); +} + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_HOMOGENEOUSSPLINES_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/iterator.h b/src/libdepixelize/priv/iterator.h new file mode 100644 index 000000000..7caa9bfa9 --- /dev/null +++ b/src/libdepixelize/priv/iterator.h @@ -0,0 +1,123 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_ITERATOR_H +#define LIBDEPIXELIZE_TRACER_ITERATOR_H + +#include <vector> +#include <iterator> + +namespace Tracer { + +template<typename T> +const T *to_ptr(typename std::vector<T>::const_iterator it) +{ + return &*it; +} + +template<typename T> +T *to_ptr(typename std::vector<T>::iterator it) +{ + return &*it; +} + +template<typename T> +typename std::vector<T>::const_iterator to_iterator(T const *ptr, + typename std::vector<T> + ::const_iterator begin) +{ + typedef typename std::vector<T>::const_iterator It; + typedef typename std::iterator_traits<It>::difference_type difference_type; + difference_type idx = ptr - to_ptr<T>(begin); + return begin + idx; +} + +template<typename T> +typename std::vector<T>::iterator to_iterator(T *ptr, + typename std::vector<T>::iterator + begin) +{ + typedef typename std::vector<T>::iterator It; + typedef typename std::iterator_traits<It>::difference_type difference_type; + difference_type idx = ptr - to_ptr<T>(begin); + return begin + idx; +} + +template<typename T> +class ToIter +{ +public: + typedef typename std::vector<T>::const_iterator const_iterator; + typedef typename std::vector<T>::iterator iterator; + + ToIter(const_iterator begin) : + begin(begin) + {} + + const_iterator operator()(T const *ptr) const + { + return to_iterator<T>(ptr, begin); + } + + iterator operator()(T *ptr) const + { + return to_iterator<T>(ptr, begin); + } + +private: + typename std::vector<T>::const_iterator begin; +}; + +template<typename T> +class ToPtr +{ +public: + typedef typename std::vector<T>::const_iterator const_iterator; + typedef typename std::vector<T>::iterator iterator; + + const T *operator()(const_iterator it) const + { + return to_ptr<T>(it); + } + + T *operator()(iterator it) const + { + return to_ptr<T>(it); + } +}; + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_ITERATOR_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/pixelgraph.h b/src/libdepixelize/priv/pixelgraph.h new file mode 100644 index 000000000..32523d8ee --- /dev/null +++ b/src/libdepixelize/priv/pixelgraph.h @@ -0,0 +1,490 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_PIXELGRAPH_H +#define LIBDEPIXELIZE_TRACER_PIXELGRAPH_H + +#include <gdkmm/pixbuf.h> +#include <vector> +#include <cassert> + +namespace Tracer { + +class PixelGraph +{ +public: + class Node + { + public: + /* + * Hamming weight of \p adj + */ + unsigned adjsize() const + { + unsigned all[8] = { + adj.top, + adj.topright, + adj.right, + adj.bottomright, + adj.bottom, + adj.bottomleft, + adj.left, + adj.topleft + }; + return all[0] + all[1] + all[2] + all[3] + + all[4] + all[5] + all[6] + all[7]; + } + + guint8 rgba[4]; + // Nodes pointing from this + struct Adj + { + unsigned top: 1; + unsigned topright: 1; + unsigned right: 1; + unsigned bottomright: 1; + unsigned bottom: 1; + unsigned bottomleft: 1; + unsigned left: 1; + unsigned topleft: 1; + } adj; + }; + + typedef std::vector<Node>::iterator iterator; + typedef std::vector<Node>::const_iterator const_iterator; + typedef std::vector<Node>::reverse_iterator reverse_iterator; + typedef std::vector<Node>::const_reverse_iterator const_reverse_iterator; + + class ColumnView + { + public: + ColumnView(std::vector<Node> &nodes, int width, int column) : + _nodes(nodes), _width(width), _column(column) + {} + + Node &operator[](int line); + + private: + std::vector<Node> &_nodes; + const int _width; + const int _column; + }; + + PixelGraph(Glib::RefPtr<Gdk::Pixbuf const> pixbuf); + + void checkConsistency(); + + /** + * It'll let you access the nodes using the syntax: + * + * graph[x][y] + * + * Where x is the column and y is the line. + */ + ColumnView operator[](int column); + + // Iterators + iterator begin() + { + return _nodes.begin(); + } + + const_iterator begin() const + { + return _nodes.begin(); + } + + iterator end() + { + return _nodes.end(); + } + + const_iterator end() const + { + return _nodes.end(); + } + + reverse_iterator rbegin() + { + return _nodes.rbegin(); + } + + const_reverse_iterator rbegin() const + { + return _nodes.rbegin(); + } + + reverse_iterator rend() + { + return _nodes.rend(); + } + + const_reverse_iterator rend() const + { + return _nodes.rend(); + } + + size_t size() const + { + return _nodes.size(); + } + + int width() const + { + return _width; + } + + int height() const + { + return _height; + } + + // Algorithms + void connectAllNeighbors(); + + int toX(const_iterator n) const + { + return (&*n - &_nodes[0]) % _width; + } + + int toY(const_iterator n) const + { + return (&*n - &_nodes[0]) / _width; + } + + iterator nodeTop(iterator n) + { + return n - _width; + } + + iterator nodeBottom(iterator n) + { + return n + _width; + } + + iterator nodeLeft(iterator n) + { + return n - 1; + } + + iterator nodeRight(iterator n) + { + return n + 1; + } + + iterator nodeTopLeft(iterator n) + { + return n - _width - 1; + } + + iterator nodeTopRight(iterator n) + { + return n - _width + 1; + } + + iterator nodeBottomLeft(iterator n) + { + return n + _width - 1; + } + + iterator nodeBottomRight(iterator n) + { + return n + _width + 1; + } + + const_iterator nodeTop(const_iterator n) const + { + return n - _width; + } + + const_iterator nodeBottom(const_iterator n) const + { + return n + _width; + } + + const_iterator nodeLeft(const_iterator n) const + { + return n - 1; + } + + const_iterator nodeRight(const_iterator n) const + { + return n + 1; + } + + const_iterator nodeTopLeft(const_iterator n) const + { + return n - _width - 1; + } + + const_iterator nodeTopRight(const_iterator n) const + { + return n - _width + 1; + } + + const_iterator nodeBottomLeft(const_iterator n) const + { + return n + _width - 1; + } + + const_iterator nodeBottomRight(const_iterator n) const + { + return n + _width + 1; + } + +private: + PixelGraph(const PixelGraph&); + + int _width; + int _height; + + // The data representation follows the image data pattern from gdk-pixbuf. + // + // Quoting: + // "Image data in a pixbuf is stored in memory in uncompressed, packed + // format. Rows in the image are stored top to bottom, and in each row + // pixels are stored from left to right. There may be padding at the end of + // a row." + // + // Differently, _nodes don't put padding among rows. + std::vector<Node> _nodes; +}; + +inline PixelGraph::PixelGraph(Glib::RefPtr<Gdk::Pixbuf const> pixbuf) : + _width(pixbuf->get_width()), + _height(pixbuf->get_height()), + _nodes(size_t(_width) * _height) +{ + if ( !_width || !_height ) + return; + + // Initialize the graph using the pixels' color data + guint8 *pixels = pixbuf->get_pixels(); + Node *dest = &_nodes[0]; + const int n_channels = pixbuf->get_n_channels(); + const int rowpadding = pixbuf->get_rowstride() - _width * n_channels; + + if ( n_channels == 4 ) { + for ( int i = 0 ; i != _height ; ++i ) { + for ( int j = 0 ; j != _width ; ++j ) { + for ( int k = 0 ; k != 4 ; ++k ) + dest->rgba[k] = pixels[k]; + { + dest->adj.top = 0; + dest->adj.topright = 0; + dest->adj.right = 0; + dest->adj.bottomright = 0; + dest->adj.bottom = 0; + dest->adj.bottomleft = 0; + dest->adj.left = 0; + dest->adj.topleft = 0; + } + pixels += n_channels; + ++dest; + } + pixels += rowpadding; + } + } else { + assert(n_channels == 3); + for ( int i = 0 ; i != _height ; ++i ) { + for ( int j = 0 ; j != _width ; ++j ) { + for ( int k = 0 ; k != 3 ; ++k ) + dest->rgba[k] = pixels[k]; + dest->rgba[3] = '\xFF'; + { + dest->adj.top = 0; + dest->adj.topright = 0; + dest->adj.right = 0; + dest->adj.bottomright = 0; + dest->adj.bottom = 0; + dest->adj.bottomleft = 0; + dest->adj.left = 0; + dest->adj.topleft = 0; + } + pixels += n_channels; + ++dest; + } + pixels += rowpadding; + } + } +} + +inline void PixelGraph::checkConsistency() +{ + PixelGraph::Node *it = &_nodes.front(); + for ( int i = 0 ; i != _height ; ++i ) { + for ( int j = 0 ; j != _width ; ++j, ++it ) { + if ( it->adj.top ) + assert((it - _width)->adj.bottom); + if ( it->adj.topright ) + assert((it - _width + 1)->adj.bottomleft); + if ( it->adj.right ) + assert((it + 1)->adj.left); + if ( it->adj.bottomright ) + assert((it + _width + 1)->adj.topleft); + if ( it->adj.bottom ) + assert((it + _width)->adj.top); + if ( it->adj.bottomleft ) + assert((it + _width - 1)->adj.topright); + if ( it->adj.left ) + assert((it - 1)->adj.right); + if ( it->adj.topleft ) + assert((it - _width - 1)->adj.bottomright); + } + } +} + +inline PixelGraph::ColumnView PixelGraph::operator[](int column) +{ + return ColumnView(_nodes, _width, column); +} + +inline void PixelGraph::connectAllNeighbors() +{ + // ...the "center" nodes first... + if ( _width > 2 && _height > 2 ) { + iterator it = nodeBottomRight(begin()); // [1][1] + for ( int i = 1 ; i != _height - 1 ; ++i ) { + for ( int j = 1 ; j != _width - 1 ; ++j ) { + it->adj.top = 1; + it->adj.topright = 1; + it->adj.right = 1; + it->adj.bottomright = 1; + it->adj.bottom = 1; + it->adj.bottomleft = 1; + it->adj.left = 1; + it->adj.topleft = 1; + + it = nodeRight(it); + } + // After the previous loop, 'it' is poiting to the last node from + // the row. + // Go south, then first node in the row (increment 'it' by 1) + // Go to the second node in the line (increment 'it' by 1) + it += 2; + } + } + + // ...then the "top" nodes... + if ( _width > 2 ) { + Node *it = &_nodes[1]; + for ( int i = 1 ; i != _width - 1 ; ++i ) { + it->adj.right = 1; + it->adj.bottomright = 1; + it->adj.bottom = 1; + it->adj.bottomleft = 1; + it->adj.left = 1; + + ++it; + } + } + + // ...then the "bottom" nodes... + if ( _width > 2 && _height > 1 ) { + Node *it = &((*this)[1][_height - 1]); + for ( int i = 1 ; i != _width - 1 ; ++i ) { + it->adj.left = 1; + it->adj.topleft = 1; + it->adj.top = 1; + it->adj.topright = 1; + it->adj.right = 1; + + ++it; + } + } + + // ...then the "left" nodes... + if ( _height > 2 ) { + iterator it = nodeBottom(begin()); // [0][1] + for ( int i = 1 ; i != _height - 1 ; ++i ) { + it->adj.top = 1; + it->adj.topright = 1; + it->adj.right = 1; + it->adj.bottomright = 1; + it->adj.bottom = 1; + + it = nodeBottom(it); + } + } + + // ...then the "right" nodes... + if ( _height > 2 && _width > 1 ) { + iterator it = nodeBottom(begin() + _width - 1);// [_width - 1][1] + for ( int i = 1 ; i != _height - 1 ; ++i ) { + it->adj.bottom = 1; + it->adj.bottomleft = 1; + it->adj.left = 1; + it->adj.topleft = 1; + it->adj.top = 1; + + it = nodeBottom(it); + } + } + + // ...and the 4 corner nodes + { + Node *const top_left = &(*this)[0][0]; + top_left->adj.right = 1; + top_left->adj.bottomright = 1; + top_left->adj.bottom = 1; + } + if ( _width > 1 ) { + Node *const top_right = &(*this)[_width - 1][0]; + top_right->adj.bottom = 1; + top_right->adj.bottomleft = 1; + top_right->adj.left = 1; + } + if ( _height > 1 ) { + Node *const down_left = &(*this)[0][_height - 1]; + down_left->adj.top = 1; + down_left->adj.topright = 1; + down_left->adj.right = 1; + } + if ( _width > 1 && _height > 1 ) { + Node *const down_right = &(*this)[_width - 1][_height - 1]; + down_right->adj.left = 1; + down_right->adj.topleft = 1; + down_right->adj.top = 1; + } +} + +inline PixelGraph::Node &PixelGraph::ColumnView::operator[](int line) +{ + return _nodes[line * _width + _column]; +} + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_PIXELGRAPH_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/point.h b/src/libdepixelize/priv/point.h new file mode 100644 index 000000000..6bea752ed --- /dev/null +++ b/src/libdepixelize/priv/point.h @@ -0,0 +1,75 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_POINT_H +#define LIBDEPIXELIZE_TRACER_POINT_H + +namespace Tracer { + +template<class T> +struct Point +{ + Point() {} + Point(T x, T y) : x(x), y(y) {} + Point(T x, T y, bool smooth) : smooth(smooth), x(x), y(y) {} + + Point operator+(const Point &rhs) const + { + return Point(x + rhs.x, y + rhs.y); + } + + Point operator/(T foo) const + { + return Point(x / foo, y / foo); + } + + bool smooth; + + T x, y; +}; + +template<class T> +inline bool operator==(const Point<T> &lhs, const Point<T> &rhs) +{ + return +#ifndef LIBDEPIXELIZE_IS_VERY_WELL_TESTED + lhs.smooth == rhs.smooth && +#endif // LIBDEPIXELIZE_IS_VERY_WELL_TESTED + lhs.x == rhs.x && lhs.y == rhs.y; +} + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_POINT_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/simplifiedvoronoi.h b/src/libdepixelize/priv/simplifiedvoronoi.h new file mode 100644 index 000000000..a33695ff7 --- /dev/null +++ b/src/libdepixelize/priv/simplifiedvoronoi.h @@ -0,0 +1,1324 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_SIMPLIFIEDVORONOI_H +#define LIBDEPIXELIZE_TRACER_SIMPLIFIEDVORONOI_H + +#include "pixelgraph.h" +#include "colorspace.h" +#include "point.h" +#include "branchless.h" + +namespace Tracer { + +template<typename T> +class SimplifiedVoronoi +{ +public: + /** + * The "smooth" attribute of each vertex is only accurate if edge is + * visible. This decision was made because invisible edges will disappear + * during polygon-union, the next phase of Kopf-Lischinski. + */ + struct Cell + { + // There may not exist more than 8 vertices per cell and a + // "small vector optimization" could improve the performance + // by avoiding memory fragmentation. Serious testing is needed. + + // The vertices are filled in clockwise order + std::vector< Point<T> > vertices; + guint8 rgba[4]; + }; + + typedef typename std::vector<Cell>::iterator iterator; + typedef typename std::vector<Cell>::const_iterator const_iterator; + typedef typename std::vector<Cell>::reverse_iterator reverse_iterator; + + typedef typename std::vector<Cell>::const_reverse_iterator + const_reverse_iterator; + + /* + It will work correctly if no crossing-edges are present. + */ + SimplifiedVoronoi(const PixelGraph &graph); + + // Iterators + iterator begin() + { + return _cells.begin(); + } + + const_iterator begin() const + { + return _cells.begin(); + } + + iterator end() + { + return _cells.end(); + } + + const_iterator end() const + { + return _cells.end(); + } + + reverse_iterator rbegin() + { + return _cells.rbegin(); + } + + const_reverse_iterator rbegin() const + { + return _cells.rbegin(); + } + + reverse_iterator rend() + { + return _cells.rend(); + } + + const_reverse_iterator rend() const + { + return _cells.rend(); + } + + size_t size() const + { + return _cells.size(); + } + + int width() const + { + return _width; + } + + int height() const + { + return _height; + } + +private: + typedef void (*PointTransform)(Point<T> &p, T dx, T dy); + typedef bool (*NodeTransform)(PixelGraph::const_iterator); + + static Point<T> _midpoint(const Point<T> &p1, const Point<T> p2) + { + return Point<T>((p1.x + p2.x) / 2, (p1.y + p2.y) / 2); + } + + /** + * Output is translated by -.5 in each axis. This function fixes this error. + */ + static Point<T> _adjust(Point<T> p) + { + return Point<T>(p.x + .5, p.y + .5); + } + + /** + * Output is translated by -.5 in each axis. This function fixes this error. + */ + static Point<T> _adjust(Point<T> p, bool smooth) + { + return Point<T>(p.x + .5, p.y + .5, smooth); + } + + void _complexTopLeft(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y); + void _complexTopRight(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y); + void _complexBottomRight(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y); + void _complexBottomLeft(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y); + + static void _complexTopLeftTransform(Point<T> &p, T dx, T dy); + static void _complexTopRightTransform(Point<T> &p, T dx, T dy); + static void _complexBottomRightTransform(Point<T> &p, T dx, T dy); + static void _complexBottomLeftTransform(Point<T> &p, T dx, T dy); + + static bool _complexTopLeftTransformTop(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformTopRight(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformRight(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformBottomRight(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformBottom(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformBottomLeft(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformLeft(PixelGraph::const_iterator graph_it); + static bool _complexTopLeftTransformTopLeft(PixelGraph::const_iterator graph_it); + + static bool _complexTopRightTransformTop(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformTopRight(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformRight(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformBottomRight(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformBottom(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformBottomLeft(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformLeft(PixelGraph::const_iterator graph_it); + static bool _complexTopRightTransformTopLeft(PixelGraph::const_iterator graph_it); + + static bool _complexBottomRightTransformTop(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformTopRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformBottomRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformBottom(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformBottomLeft(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformLeft(PixelGraph::const_iterator graph_it); + static bool _complexBottomRightTransformTopLeft(PixelGraph::const_iterator graph_it); + + static bool _complexBottomLeftTransformTop(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformTopRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformBottomRight(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformBottom(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformBottomLeft(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformLeft(PixelGraph::const_iterator graph_it); + static bool _complexBottomLeftTransformTopLeft(PixelGraph::const_iterator graph_it); + + /* + * The memory layout assumed goes like this (with a_it being the current + * iterated element): + * + * (a_it) | (b_it) + * -------+------- + * (c_it) | (d_it) + * + * If you want to use it with another directions (topleft, topright, ...) + * **DO NOT** invert x or y axis, because the insertion order will go mad. + * + * The idea behind this abstraction is to rotate the iterators, then the + * insertion order will be preserved. + * + * The initial value of all nodes that will be inserted is {x, y}. All + * changes to this node **MUST** occur through \p transform or _adjust. + * + * Some maintainers may like this function because they will handle a + * code base 4 times smaller and bugs will be MUCH MUCH difficult to hide. + * + * Some maintainers may go mad because the level extra level of + * abstracation. + * + * "All problems in computer science can be solved by another level of + * indirection, except for the problem of too many layers of indirection." + * -- David J. Wheeler + */ + void _genericComplexBottomRight(PixelGraph::const_iterator a_it, + PixelGraph::const_iterator b_it, + PixelGraph::const_iterator c_it, + PixelGraph::const_iterator d_it, + Cell *const cells_it, int x, int y, + PointTransform transform, + NodeTransform top, + NodeTransform topright, + NodeTransform right, + NodeTransform bottomright, + NodeTransform bottom, + NodeTransform bottomleft, + NodeTransform left, + NodeTransform topleft); + + int _width; + int _height; + std::vector<Cell> _cells; +}; + +template<class T> +SimplifiedVoronoi<T>::SimplifiedVoronoi(const PixelGraph &graph) : + _width(graph.width()), + _height(graph.height()), + _cells(graph.size()) +{ + if (!graph.size()) + return; + + // ...the "center" cells first... + if ( _width > 2 && _height > 2 ) { + PixelGraph::const_iterator graph_it = graph.begin() + _width + 1; + Cell *cells_it = &_cells.front() + _width + 1; + + for ( int i = 1 ; i != _height - 1 ; ++i ) { + for ( int j = 1 ; j != _width - 1 ; ++j, ++graph_it, ++cells_it ) { + for ( int k = 0 ; k != 4 ; ++k ) + cells_it->rgba[k] = graph_it->rgba[k]; + // Top-left + _complexTopLeft(graph, graph_it, cells_it, j, i); + + // Top-right + _complexTopRight(graph, graph_it, cells_it, j, i); + + // Bottom-right + _complexBottomRight(graph, graph_it, cells_it, j, i); + + // Bottom-left + _complexBottomLeft(graph, graph_it, cells_it, j, i); + } + // After the previous loop, 'it' is poiting to the last cell from + // the row. + // Go south, then first node in the row (increment 'it' by 1) + // Go to the second node in the line (increment 'it' by 1) + graph_it += 2; + cells_it += 2; + } + } + + // ...then the "top" cells... + if ( _width > 2 ) { + PixelGraph::const_iterator graph_it = graph.begin() + 1; + Cell *cells_it = &_cells.front() + 1; + + for ( int i = 1 ; i != _width - 1 ; ++i, ++graph_it, ++cells_it ) { + for ( int j = 0 ; j != 4 ; ++j ) + cells_it->rgba[j] = graph_it->rgba[j]; + + // Top-left + cells_it->vertices.push_back(Point<T>(i, 0, false)); + + // Top-right + cells_it->vertices.push_back(Point<T>(i + 1, 0, false)); + + // Bottom-right + _complexBottomRight(graph, graph_it, cells_it, i, 0); + + // Bottom-left + _complexBottomLeft(graph, graph_it, cells_it, i, 0); + } + } + + // ...then the "bottom" cells... + if ( _width > 2 && _height > 1 ) { + // Node *it = &((*this)[1][_height - 1]); + PixelGraph::const_iterator graph_it + = graph.begin() + (_height - 1) * _width + 1; + Cell *cells_it = &_cells.front() + (_height - 1) * _width + 1; + + for ( int i = 1 ; i != _width - 1 ; ++i, ++graph_it, ++cells_it ) { + for ( int j = 0 ; j != 4 ; ++j ) + cells_it->rgba[j] = graph_it->rgba[j]; + + // Top-left + _complexTopLeft(graph, graph_it, cells_it, i, _height - 1); + + // Top-right + _complexTopRight(graph, graph_it, cells_it, i, _height - 1); + + // Bottom-right + cells_it->vertices.push_back(Point<T>(i + 1, _height, false)); + + // Bottom-left + cells_it->vertices.push_back(Point<T>(i, _height, false)); + } + } + + // ...then the "left" cells... + if ( _height > 2 ) { + PixelGraph::const_iterator graph_it = graph.begin() + _width; + Cell *cells_it = &_cells.front() + _width; + + for ( int i = 1 ; i != _height - 1 ; ++i) { + for ( int j = 0 ; j != 4 ; ++j ) + cells_it->rgba[j] = graph_it->rgba[j]; + + // Top-left + cells_it->vertices.push_back(Point<T>(0, i, false)); + + // Top-right + _complexTopRight(graph, graph_it, cells_it, 0, i); + + // Bottom-right + _complexBottomRight(graph, graph_it, cells_it, 0, i); + + // Bottom-left + cells_it->vertices.push_back(Point<T>(0, i + 1, false)); + + graph_it += _width; + cells_it += _width; + } + } + + // ...then the "right" cells... + if ( _height > 2 && _width > 1 ) { + PixelGraph::const_iterator graph_it = graph.begin() + 2 * _width - 1; + Cell *cells_it = &_cells.front() + 2 * _width - 1; + + for ( int i = 1 ; i != _height - 1 ; ++i ) { + for ( int j = 0 ; j != 4 ; ++j ) + cells_it->rgba[j] = graph_it->rgba[j]; + + // Top-left + _complexTopLeft(graph, graph_it, cells_it, _width - 1, i); + + // Top-right + cells_it->vertices.push_back(Point<T>(_width, i, false)); + + // Bottom-right + cells_it->vertices.push_back(Point<T>(_width, i + 1, false)); + + // Bottom-left + _complexBottomLeft(graph, graph_it, cells_it, _width - 1, i); + + graph_it += _width; + cells_it += _width; + } + } + + // ...and the 4 corner nodes + // top-left + { + PixelGraph::const_iterator graph_it = graph.begin(); + Cell *cells_it = &_cells.front(); + + for ( int i = 0 ; i != 4 ; ++i ) + cells_it->rgba[i] = graph_it->rgba[i]; + + // Top-left + cells_it->vertices.push_back(Point<T>(0, 0, false)); + + // Top-right + cells_it->vertices.push_back(Point<T>(1, 0, false)); + + // Bottom-right + if ( _width > 1 && _height > 1 ) + _complexBottomRight(graph, graph_it, cells_it, 0, 0); + else + cells_it->vertices.push_back(Point<T>(1, 1, false)); + + // Bottom-left + cells_it->vertices.push_back(Point<T>(0, 1, false)); + } + + // top-right + if ( _width > 1 ) { + PixelGraph::const_iterator graph_it = graph.begin() + _width - 1; + Cell *cells_it = &_cells.front() + _width - 1; + + for ( int i = 0 ; i != 4 ; ++i ) + cells_it->rgba[i] = graph_it->rgba[i]; + + // Top-left + cells_it->vertices.push_back(Point<T>(_width - 1, 0, false)); + + // Top-right + cells_it->vertices.push_back(Point<T>(_width, 0, false)); + + // Bottom-right + cells_it->vertices.push_back(Point<T>(_width, 1, false)); + + // Bottom-left + if ( _height > 1 ) + _complexBottomLeft(graph, graph_it, cells_it, _width - 1, 0); + else + cells_it->vertices.push_back(Point<T>(_width - 1, 1, false)); + } + + // bottom-left + if ( _height > 1 ) { + PixelGraph::const_iterator graph_it + = graph.begin() + (_height - 1) * _width; + Cell *cells_it = &_cells.front() + (_height - 1) * _width; + + for ( int i = 0 ; i != 4 ; ++i ) + cells_it->rgba[i] = graph_it->rgba[i]; + + // Top-left + cells_it->vertices.push_back(Point<T>(0, _height - 1, false)); + + // Top-right + if ( _width > 1) + _complexTopRight(graph, graph_it, cells_it, 0, _height - 1); + else + cells_it->vertices.push_back(Point<T>(1, _height - 1, false)); + + // Bottom-right + cells_it->vertices.push_back(Point<T>(1, _height, false)); + + // Bottom-left + cells_it->vertices.push_back(Point<T>(0, _height, false)); + } + + // bottom-right + if ( _width > 1 && _height > 1 ) { + PixelGraph::const_iterator graph_it = --graph.end(); + Cell *cells_it = &_cells.back(); + + for ( int i = 0 ; i != 4 ; ++i ) + cells_it->rgba[i] = graph_it->rgba[i]; + + // Top-left + _complexTopLeft(graph, graph_it, cells_it, _width - 1, _height - 1); + + // Top-right + cells_it->vertices.push_back(Point<T>(_width, _height - 1, false)); + + // Bottom-right + cells_it->vertices.push_back(Point<T>(_width, _height, false)); + + // Bottom-left + cells_it->vertices.push_back(Point<T>(_width - 1, _height, false)); + } +} + +template<class T> void +SimplifiedVoronoi<T>::_complexTopLeft(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y) +{ + _genericComplexBottomRight(graph_it, + graph.nodeLeft(graph_it), + graph.nodeTop(graph_it), + graph.nodeTopLeft(graph_it), + cells_it, x, y, + &SimplifiedVoronoi::_complexTopLeftTransform, + &SimplifiedVoronoi::_complexTopLeftTransformTop, + &SimplifiedVoronoi::_complexTopLeftTransformTopRight, + &SimplifiedVoronoi::_complexTopLeftTransformRight, + &SimplifiedVoronoi::_complexTopLeftTransformBottomRight, + &SimplifiedVoronoi::_complexTopLeftTransformBottom, + &SimplifiedVoronoi::_complexTopLeftTransformBottomLeft, + &SimplifiedVoronoi::_complexTopLeftTransformLeft, + &SimplifiedVoronoi::_complexTopLeftTransformTopLeft); +} + +template<class T> void +SimplifiedVoronoi<T>::_complexTopRight(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y) +{ + _genericComplexBottomRight(graph_it, + graph.nodeTop(graph_it), + graph.nodeRight(graph_it), + graph.nodeTopRight(graph_it), + cells_it, x, y, + &SimplifiedVoronoi::_complexTopRightTransform, + &SimplifiedVoronoi::_complexTopRightTransformTop, + &SimplifiedVoronoi::_complexTopRightTransformTopRight, + &SimplifiedVoronoi::_complexTopRightTransformRight, + &SimplifiedVoronoi::_complexTopRightTransformBottomRight, + &SimplifiedVoronoi::_complexTopRightTransformBottom, + &SimplifiedVoronoi::_complexTopRightTransformBottomLeft, + &SimplifiedVoronoi::_complexTopRightTransformLeft, + &SimplifiedVoronoi::_complexTopRightTransformTopLeft); +} + +template<class T> void +SimplifiedVoronoi<T>::_complexBottomRight(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y) +{ + _genericComplexBottomRight(graph_it, + graph.nodeRight(graph_it), + graph.nodeBottom(graph_it), + graph.nodeBottomRight(graph_it), + cells_it, x, y, + &SimplifiedVoronoi::_complexBottomRightTransform, + &SimplifiedVoronoi::_complexBottomRightTransformTop, + &SimplifiedVoronoi::_complexBottomRightTransformTopRight, + &SimplifiedVoronoi::_complexBottomRightTransformRight, + &SimplifiedVoronoi::_complexBottomRightTransformBottomRight, + &SimplifiedVoronoi::_complexBottomRightTransformBottom, + &SimplifiedVoronoi::_complexBottomRightTransformBottomLeft, + &SimplifiedVoronoi::_complexBottomRightTransformLeft, + &SimplifiedVoronoi::_complexBottomRightTransformTopLeft); +} + +template<class T> void +SimplifiedVoronoi<T>::_complexBottomLeft(const PixelGraph &graph, + PixelGraph::const_iterator graph_it, + Cell *const cells_it, int x, int y) +{ + _genericComplexBottomRight(graph_it, + graph.nodeBottom(graph_it), + graph.nodeLeft(graph_it), + graph.nodeBottomLeft(graph_it), + cells_it, x, y, + &SimplifiedVoronoi::_complexBottomLeftTransform, + &SimplifiedVoronoi::_complexBottomLeftTransformTop, + &SimplifiedVoronoi::_complexBottomLeftTransformTopRight, + &SimplifiedVoronoi::_complexBottomLeftTransformRight, + &SimplifiedVoronoi::_complexBottomLeftTransformBottomRight, + &SimplifiedVoronoi::_complexBottomLeftTransformBottom, + &SimplifiedVoronoi::_complexBottomLeftTransformBottomLeft, + &SimplifiedVoronoi::_complexBottomLeftTransformLeft, + &SimplifiedVoronoi::_complexBottomLeftTransformTopLeft); +} + +template<class T> void +SimplifiedVoronoi<T>::_complexTopLeftTransform(Point<T> &p, T dx, T dy) +{ + p.x -= dx; + p.y -= dy; +} + +template<class T> void +SimplifiedVoronoi<T>::_complexTopRightTransform(Point<T> &p, T dx, T dy) +{ + p.x += dy; + p.y -= dx; +} + +template<class T> void +SimplifiedVoronoi<T>::_complexBottomRightTransform(Point<T> &p, T dx, T dy) +{ + p.x += dx; + p.y += dy; +} + +template<class T> void +SimplifiedVoronoi<T>::_complexBottomLeftTransform(Point<T> &p, T dx, T dy) +{ + p.x -= dy; + p.y += dx; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformTop(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottom; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformTopRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.left; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformBottomRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformBottom(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.top; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformBottomLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.right; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopLeftTransformTopLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformTop(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.left; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformTopRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.top; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformBottomRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformBottom(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.right; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformBottomLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottom; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexTopRightTransformTopLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformTop(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.top; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformTopRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.right; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformBottomRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformBottom(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottom; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformBottomLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.left; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomRightTransformTopLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformTop(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.right; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformTopRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomright; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottom; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformBottomRight(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.bottomleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformBottom(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.left; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformBottomLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topleft; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.top; +} + +template<class T> +bool SimplifiedVoronoi<T>::_complexBottomLeftTransformTopLeft(PixelGraph::const_iterator graph_it) +{ + return graph_it->adj.topright; +} + +template<class T> +void +SimplifiedVoronoi<T> +::_genericComplexBottomRight(PixelGraph::const_iterator a_it, + PixelGraph::const_iterator b_it, + PixelGraph::const_iterator c_it, + PixelGraph::const_iterator d_it, + Cell *const cells_it, int x, int y, + PointTransform transform, + NodeTransform top, + NodeTransform topright, + NodeTransform right, + NodeTransform bottomright, + NodeTransform bottom, + NodeTransform bottomleft, + NodeTransform left, + NodeTransform topleft) +{ + using colorspace::contour_edge; + using colorspace::same_color; + + const Point<T> initial(x, y); + + if ( bottomright(a_it) ) { + // this and bottom-right are connected + + bool smooth[2] = { + same_color(a_it->rgba, d_it->rgba) + right(a_it), + same_color(a_it->rgba, d_it->rgba) + bottom(a_it) + }; + + Point<T> borderMid = initial; + { + transform(borderMid, 1, 1); + borderMid = _midpoint(initial, borderMid); + } + + Point<T> vertices[2] = {initial, initial}; + { + transform(vertices[0], 1, 0); + vertices[0] = _adjust(_midpoint(borderMid, vertices[0]), smooth[0]); + + transform(vertices[1], 0, 1); + vertices[1] = _adjust(_midpoint(borderMid, vertices[1]), smooth[1]); + } + + if ( !smooth[0] ) { + cells_it->vertices.push_back(vertices[0]); + { + Point<T> another = vertices[0]; + transform(another, + - ( 0.1875 + - ( topright(a_it) - topleft(b_it) ) * 0.1875 ), + // y + - ( 0.5625 + - ( topright(a_it) + topleft(b_it) ) * 0.1875 )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertices[0]; + transform(another, + - ( 0.0625 + - ( topright(a_it) - topleft(b_it) ) * 0.0625 ), + // y + - ( 0.1875 + - ( topright(a_it) + topleft(b_it) ) * 0.0625) ); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertices[0]; + transform(another, + 0.1875 + - ( bottomright(b_it) + topright(d_it) ) * 0.0625, + // y + 0.0625 + + ( bottomright(b_it) - topright(d_it) ) * 0.0625); + cells_it->vertices.push_back(another); + } + { + transform(vertices[0], + 0.0625 + + ( topright(a_it) - topright(d_it) - topleft(b_it) + - bottomright(b_it) ) * 0.03125, + // y + - ( 0.0625 + + ( topright(d_it) - topright(a_it) + - topleft(b_it) - bottomright(b_it) ) + * 0.03125 )); + } + } + + cells_it->vertices.push_back(vertices[0]); + + if ( !smooth[1] ) { + { + Point<T> another = vertices[1]; + transform(another, + - ( 0.0625 + + ( bottomleft(d_it) - bottomleft(a_it) + - topleft(c_it) - bottomright(c_it) ) + * 0.03125 ), + // y + 0.0625 + + ( bottomleft(a_it) - bottomleft(d_it) + - topleft(c_it) - bottomright(c_it) ) * 0.03125); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertices[1]; + transform(another, + 0.0625 + + ( bottomright(c_it) - bottomleft(d_it) ) * 0.0625, + // y + 0.1875 + - ( bottomright(c_it) + bottomleft(d_it) ) * 0.0625); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertices[1]; + transform(another, + - ( 0.1875 + - ( bottomleft(a_it) + topleft(c_it) ) + * 0.0625 ), + // y + - ( 0.0625 + - ( bottomleft(a_it) - topleft(c_it) ) + * 0.0625 )); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertices[1]; + transform(another, + - ( 0.5625 + - ( bottomleft(a_it) + topleft(c_it) ) + * 0.1875 ), + // y + - ( 0.1875 + - ( bottomleft(a_it) - topleft(c_it) ) + * 0.1875 )); + cells_it->vertices.push_back(another); + } + } + + cells_it->vertices.push_back(vertices[1]); + } else if ( bottomleft(b_it) ) { + // right and bottom are connected + + Point<T> vertex = initial; + transform(vertex, 1, 1); + vertex = _adjust(_midpoint(_midpoint(initial, vertex), initial), true); + cells_it->vertices.push_back(vertex); + } else { + // Connections don't affect the shape of this squared-like + // pixel + + Point<T> vertex = initial; + transform(vertex, 1, 1); + vertex = _adjust(_midpoint(initial, vertex)); + + // compute smoothness + if ( right(a_it) ) { + // this and right are connected + + if ( !right(c_it) && !( bottom(a_it) && bottom(b_it) ) ) { + // bottom and bottom-right are disconnected + + bool foreign_is_contour = contour_edge(c_it->rgba, d_it->rgba); + bool twin_is_contour = contour_edge(b_it->rgba, d_it->rgba); + bool another_is_contour = contour_edge(a_it->rgba, c_it->rgba); + + if ( another_is_contour + twin_is_contour + + foreign_is_contour == 2 ) { + vertex.smooth = !foreign_is_contour; + + if ( !vertex.smooth ) { + if ( another_is_contour ) { + { + Point<T> another = vertex; + T amount = 0.125 + - ( ( bottomright(c_it) + topleft(c_it) ) + * 0.03125 ); + transform(another, - amount, amount); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * bottomright(c_it); + transform(another, amount, 0.25 - amount); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * topleft(c_it); + transform(another, - ( 0.25 - amount ), + - amount); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.1875 * topleft(c_it); + transform(another, - ( 0.75 - amount ), + - amount); + cells_it->vertices.push_back(another); + } + } else if ( twin_is_contour ) { + T amount = 0.125 + - ( ( bottomleft(d_it) + topright(d_it) ) + * 0.03125 ); + transform(vertex, amount, amount); + } + } + } else { + // {this, right} is the pair with the angle + // closest to 180 degrees + vertex.smooth = true; + } + } else { + // there might be 2-color, then vertex.smooth = true + + // or it might be 1-color and doesn't matter, + // because the current node will disappear + vertex.smooth + = !( bottom(a_it) ^ bottom(b_it) ); + + if ( vertex.smooth ) { + vertex.smooth + = same_color(a_it->rgba, b_it->rgba) + + same_color(a_it->rgba, c_it->rgba) + + same_color(d_it->rgba, b_it->rgba) + + same_color(d_it->rgba, c_it->rgba) == 2; + } + } + } else if ( bottom(a_it) ) { + // this and bottom are connected + + if ( !bottom(b_it) && !( right(a_it) && right(c_it) ) ) { + // right and bottom-right are disconnected + + bool foreign_is_contour = contour_edge(b_it->rgba, d_it->rgba); + bool twin_is_contour = contour_edge(c_it->rgba, d_it->rgba); + bool another_is_contour = contour_edge(a_it->rgba, b_it->rgba); + + if ( another_is_contour + twin_is_contour + + foreign_is_contour == 2 ) { + vertex.smooth = !foreign_is_contour; + + if ( !vertex.smooth ) { + if ( another_is_contour ) { + cells_it->vertices.push_back(vertex); + { + Point<T> another = vertex; + T amount = 0.1875 * topleft(b_it); + transform(another, - amount, + - ( 0.75 - amount )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * topleft(b_it); + transform(another, - amount, + - ( 0.25 - amount )); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * bottomright(b_it); + transform(another, 0.25 - amount, amount); + cells_it->vertices.push_back(another); + } + { + T amount = 0.125 + - (bottomright(b_it) + topleft(b_it)) + * 0.03125; + transform(vertex, amount, - amount); + } + } else if ( twin_is_contour ) { + T amount = 0.125 + - ( ( topright(d_it) + bottomleft(d_it) ) + * 0.03125 ); + transform(vertex, amount, amount); + } + } + } else { + // {this, bottom} is the pair with the angle + // closest to 180 degrees + vertex.smooth = true; + } + } else { + // there might be 2-color, then vertex.smooth = true + + // or it might be 1-color and doesn't matter, + // because the current node will disappear + vertex.smooth = !( right(a_it) ^ right(c_it) ); + + if ( vertex.smooth ) { + vertex.smooth + = same_color(a_it->rgba, c_it->rgba) + + same_color(a_it->rgba, b_it->rgba) + + same_color(d_it->rgba, b_it->rgba) + + same_color(d_it->rgba, c_it->rgba) == 2; + } + } + } else if ( bottom(b_it) ) { + // right and bottom-right are connected + + bool special = false; + + bool foreign_is_contour = contour_edge(c_it->rgba, d_it->rgba); + + // the neighbor similar in 90° feature + bool similar_neighbor_is_contour + = contour_edge(a_it->rgba, c_it->rgba); + + if ( contour_edge(a_it->rgba, b_it->rgba) + + similar_neighbor_is_contour + + foreign_is_contour == 2 ) { + vertex.smooth = !foreign_is_contour; + + if ( !vertex.smooth ) { + if ( similar_neighbor_is_contour ) { + { + Point<T> another = vertex; + T amount = 0.125 + - ( topleft(c_it) + bottomright(c_it) ) + * 0.03125; + transform(another, - amount, amount); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * bottomright(c_it); + transform(another, amount, 0.25 - amount); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * topleft(c_it); + transform(another, - ( 0.25 - amount ), - amount); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.1875 * topleft(c_it); + transform(another, - ( 0.75 - amount ), - amount); + cells_it->vertices.push_back(another); + } + } else { + special = true; + } + } + } else { + // {right, bottom-right} is the pair with the + // angle closest to 180 degrees + vertex.smooth = false; + + special = true; + } + + if ( special ) { + cells_it->vertices.push_back(vertex); + { + Point<T> another = vertex; + T amount = 0.1875; + transform(another, + - ( topleft(b_it) - topright(a_it) ) * amount, + // y + - ( 0.75 + - ( topleft(b_it) + topright(a_it) ) + * amount )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625; + transform(another, + - ( topleft(b_it) - topright(a_it) ) * amount, + // y + - ( 0.25 + - ( topleft(b_it) + topright(a_it) ) + * amount )); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625; + transform(another, - amount + * ( bottomleft(d_it) - bottomright(c_it) ), + // y + 0.25 - amount + * ( bottomleft(d_it) + bottomright(c_it) )); + cells_it->vertices.push_back(another); + } + { + transform(vertex, + - ( topleft(b_it) + bottomleft(d_it) + - topright(a_it) - bottomright(c_it) ) + * 0.03125, + // y + ( topleft(b_it) - bottomleft(d_it) + + topright(a_it) - bottomright(c_it) ) + * 0.03125); + } + } + } else if ( right(c_it) ) { + // bottom and bottom-right are connected + + bool special = false; + + bool foreign_is_contour = contour_edge(b_it->rgba, d_it->rgba); + + // the neighbor similar in 90° feature + bool similar_neighbor_is_contour + = contour_edge(a_it->rgba, b_it->rgba); + + if ( contour_edge(a_it->rgba, c_it->rgba) + + similar_neighbor_is_contour + + foreign_is_contour == 2 ) { + vertex.smooth = !foreign_is_contour; + + if ( !vertex.smooth ) { + if ( similar_neighbor_is_contour ) { + cells_it->vertices.push_back(vertex); + { + Point<T> another = vertex; + T amount = 0.1875 * topleft(b_it); + transform(another, - amount, - ( 0.75 - amount )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * topleft(b_it); + transform(another, - amount, - ( 0.25 - amount )); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625 * bottomright(b_it); + transform(another, 0.25 - amount, amount); + cells_it->vertices.push_back(another); + } + { + T amount = 0.125 + - 0.03125 * (topleft(b_it) + bottomright(b_it)); + transform(vertex, amount, - amount); + } + } else { + special = true; + } + } + } else { + // {bottom, bottom-right} is the pair with the + // angle closest to 180 degrees + vertex.smooth = false; + + special = true; + } + + if ( special ) { + { + Point<T> another = vertex; + T amount = 0.03125; + transform(another, + amount + * ( topleft(c_it) - topright(d_it) + + bottomleft(a_it) - bottomright(b_it) ), + // y + - amount + * ( topleft(c_it) + topright(d_it) + - bottomleft(a_it) - bottomright(b_it) )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625; + transform(another, + 0.25 - amount + * ( topright(d_it) + bottomright(b_it) ), + // y + - amount + * ( topright(d_it) - bottomright(b_it) )); + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.0625; + transform(another, + - ( 0.25 - amount + * ( topleft(c_it) + bottomleft(a_it) ) ), + // y + - amount + * ( topleft(c_it) - bottomleft(a_it) )); + another.smooth = true; + cells_it->vertices.push_back(another); + } + { + Point<T> another = vertex; + T amount = 0.1875; + transform(another, + - ( 0.75 - amount + * ( topleft(c_it) + bottomleft(a_it) ) ), + // y + - amount + * ( topleft(c_it) - bottomleft(a_it) )); + cells_it->vertices.push_back(another); + } + } + } else { + // there is a 4-color pattern, where the current node + // won't be smooth + vertex.smooth = false; + } + + cells_it->vertices.push_back(vertex); + } +} + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_SIMPLIFIEDVORONOI_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/priv/splines.h b/src/libdepixelize/priv/splines.h new file mode 100644 index 000000000..c7ef2b492 --- /dev/null +++ b/src/libdepixelize/priv/splines.h @@ -0,0 +1,155 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_SPLINES_PRIV_H +#define LIBDEPIXELIZE_TRACER_SPLINES_PRIV_H + +#include "../splines.h" +#include "homogeneoussplines.h" + +namespace Tracer { + +template<class T> +Geom::Point to_geom_point(Point<T> p) +{ + return Geom::Point(p.x, p.y); +} + +template<class T> +Geom::Path worker_helper(const std::vector< Point<T> > &source, bool optimize) +{ + typedef Geom::LineSegment Line; + typedef Geom::QuadraticBezier Quad; + typedef typename std::vector< Point<T> >::const_iterator iterator; + + iterator it = source.begin(); + Geom::Path ret(to_geom_point((source.back() + *it) / 2)); + + for ( iterator end = --source.end() ; it != end ; ++it ) { + Point<T> next = *(it + 1); + Point<T> middle = (*it + next) / 2; + + if ( !it->smooth ) { + // TODO: remove redundant colinear points + ret.appendNew<Line>(Geom::Point(it->x, it->y)); + ret.appendNew<Line>(Geom::Point(middle.x, middle.y)); + } else { + ret.appendNew<Quad>(Geom::Point(it->x, it->y), + Geom::Point(middle.x, middle.y)); + } + } + + { + Point<T> next = source.front(); + Point<T> middle = (*it + next) / 2; + + if ( !it->smooth ) { + ret.appendNew<Line>(Geom::Point(it->x, it->y)); + ret.appendNew<Line>(Geom::Point(middle.x, middle.y)); + } else { + ret.appendNew<Quad>(Geom::Point(it->x, it->y), + Geom::Point(middle.x, middle.y)); + } + } + + return ret; +} + +/** + * It should be used by worker threads. Convert only one object. + */ +template<class T> +void worker(const typename HomogeneousSplines<T>::Polygon &source, + Splines::Path &dest, bool optimize) +{ + dest.pathVector.reserve(source.holes.size() + 1); + + for ( int i = 0 ; i != 4 ; ++i ) + dest.rgba[i] = source.rgba[i]; + + dest.pathVector.push_back(worker_helper(source.vertices, optimize)); + + for ( typename std::vector< std::vector< Point<T> > >::const_iterator + it = source.holes.begin(), end = source.holes.end() + ; it != end ; ++it ) { + dest.pathVector.push_back(worker_helper(*it, optimize)); + } +} + +template<typename T> +Splines::Splines(const SimplifiedVoronoi<T> &diagram) +{ + _paths.reserve(diagram.size()); + + for ( typename SimplifiedVoronoi<T>::const_iterator it = diagram.begin() + , end = diagram.end() ; it != end ; ++it ) { + Path path; + + path.pathVector + .push_back(Geom::Path(to_geom_point(it->vertices.front()))); + + for ( typename std::vector< Point<T> >::const_iterator + it2 = it->vertices.begin(), end2 = it->vertices.end() + ; it2 != end2 ; ++it2 ) { + path.pathVector.back() + .appendNew<Geom::LineSegment>(Geom::Point(it2->x, it2->y)); + } + + for ( int i = 0 ; i != 4 ; ++i ) + path.rgba[i] = it->rgba[i]; + + _paths.push_back(path); + } +} + +template<class T> +Splines::Splines(const HomogeneousSplines<T> &homogeneousSplines, + bool optimize, int nthreads) : + _paths(homogeneousSplines.size()), + _width(homogeneousSplines.width()), + _height(homogeneousSplines.height()) +{ + // TODO: It should be threaded + iterator paths_it = begin(); + for ( typename HomogeneousSplines<T>::const_iterator + it = homogeneousSplines.begin(), end = homogeneousSplines.end() + ; it != end ; ++it, ++paths_it ) { + worker<T>(*it, *paths_it, optimize); + } +} + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_SPLINES_PRIV_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libdepixelize/splines.h b/src/libdepixelize/splines.h new file mode 100644 index 000000000..c4b455aae --- /dev/null +++ b/src/libdepixelize/splines.h @@ -0,0 +1,120 @@ +/* This file is part of the libdepixelize project + Copyright (C) 2013 Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + + GNU Lesser General Public License Usage + This library is free software; you can redistribute it and/or modify it + under the terms of the GNU Lesser General Public License as published by the + Free Software Foundation; either version 2.1 of the License, or (at your + option) any later version. + You should have received a copy of the GNU Lesser General Public License + along with this library. If not, see <http://www.gnu.org/licenses/>. + + GNU General Public License Usage + Alternatively, this library may be used under the terms of the GNU General + Public License as published by the Free Software Foundation, either version + 2 of the License, or (at your option) any later version. + You should have received a copy of the GNU General Public License along with + this library. If not, see <http://www.gnu.org/licenses/>. + + This library is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU + Lesser General Public License for more details. +*/ + +#ifndef LIBDEPIXELIZE_TRACER_SPLINES_H +#define LIBDEPIXELIZE_TRACER_SPLINES_H + +#include <2geom/pathvector.h> +#include <glib.h> + +namespace Tracer { + +template<typename T> +class SimplifiedVoronoi; + +template<typename T> +class HomogeneousSplines; + +class Splines +{ +public: + struct Path + { + /** + * It may be benefited from C++11 move references. + */ + Geom::PathVector pathVector; + + guint8 rgba[4]; + }; + + typedef std::vector<Path>::iterator iterator; + typedef std::vector<Path>::const_iterator const_iterator; + + Splines() /* = default */ {} + + template<typename T> + Splines(const SimplifiedVoronoi<T> &simplifiedVoronoi); + + /** + * There are two levels of optimization. The first level only removes + * redundant points of colinear points. The second level uses the + * Kopf-Lischinski optimization. The first level is always enabled. + * The second level is enabled using \p optimize. + */ + template<typename T> + Splines(const HomogeneousSplines<T> &homogeneousSplines, bool optimize, + int nthreads); + + // Iterators + iterator begin() + { + return _paths.begin(); + } + + const_iterator begin() const + { + return _paths.begin(); + } + + iterator end() + { + return _paths.end(); + } + + const_iterator end() const + { + return _paths.end(); + } + + int width() const + { + return _width; + } + + int height() const + { + return _height; + } + +private: + std::vector<Path> _paths; + int _width; + int _height; +}; + +} // namespace Tracer + +#endif // LIBDEPIXELIZE_TRACER_SPLINES_H + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : diff --git a/src/libnrtype/Layout-TNG-Compute.cpp b/src/libnrtype/Layout-TNG-Compute.cpp index 1b2704a7e..7ea089c93 100644 --- a/src/libnrtype/Layout-TNG-Compute.cpp +++ b/src/libnrtype/Layout-TNG-Compute.cpp @@ -706,7 +706,7 @@ static void dumpUnbrokenSpans(ParagraphInfo *para){ if (newcluster){ // find where the text ends for this log_cluster end_byte = it_span->start.iter_span->text_bytes; // Upper limit - for(unsigned next_glyph_index = glyph_index+1; next_glyph_index < it_span->end_glyph_index; next_glyph_index++){ + for(int next_glyph_index = glyph_index+1; next_glyph_index < unbroken_span.glyph_string->num_glyphs; next_glyph_index++){ if(unbroken_span.glyph_string->glyphs[next_glyph_index].attr.is_cluster_start){ end_byte = unbroken_span.glyph_string->log_clusters[next_glyph_index]; break; diff --git a/src/livarot/PathStroke.cpp b/src/livarot/PathStroke.cpp index cdd5cae6d..50c335176 100644 --- a/src/livarot/PathStroke.cpp +++ b/src/livarot/PathStroke.cpp @@ -456,19 +456,20 @@ Path::DoLeftJoin (Shape * dest, double width, JoinType join, Geom::Point pos, } else {*/ leftStNo = dest->AddPoint (pos + width * pnor); leftEnNo = dest->AddPoint (pos + width * nnor); - int midNo = dest->AddPoint (pos); - int nEdge=dest->AddEdge (leftEnNo, midNo); - if ( dest->hasBackData() ) { - dest->ebData[nEdge].pathID=pathID; - dest->ebData[nEdge].pieceID=pieceID; - dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; - } - nEdge=dest->AddEdge (midNo, leftStNo); +// int midNo = dest->AddPoint (pos); +// int nEdge=dest->AddEdge (leftEnNo, midNo); + int nEdge=dest->AddEdge (leftEnNo, leftStNo); if ( dest->hasBackData() ) { dest->ebData[nEdge].pathID=pathID; dest->ebData[nEdge].pieceID=pieceID; dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; } +// nEdge=dest->AddEdge (midNo, leftStNo); +// if ( dest->hasBackData() ) { +// dest->ebData[nEdge].pathID=pathID; +// dest->ebData[nEdge].pieceID=pieceID; +// dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; +// } // } } else @@ -678,19 +679,20 @@ Path::DoRightJoin (Shape * dest, double width, JoinType join, Geom::Point pos, } else {*/ rightStNo = dest->AddPoint (pos - width*pnor); rightEnNo = dest->AddPoint (pos - width*nnor); - int midNo = dest->AddPoint (pos); - int nEdge=dest->AddEdge (rightStNo, midNo); +// int midNo = dest->AddPoint (pos); +// int nEdge=dest->AddEdge (rightStNo, midNo); + int nEdge=dest->AddEdge (rightStNo, rightEnNo); if ( dest->hasBackData() ) { dest->ebData[nEdge].pathID=pathID; dest->ebData[nEdge].pieceID=pieceID; dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; } - nEdge=dest->AddEdge (midNo, rightEnNo); - if ( dest->hasBackData() ) { - dest->ebData[nEdge].pathID=pathID; - dest->ebData[nEdge].pieceID=pieceID; - dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; - } +// nEdge=dest->AddEdge (midNo, rightEnNo); +// if ( dest->hasBackData() ) { +// dest->ebData[nEdge].pathID=pathID; +// dest->ebData[nEdge].pieceID=pieceID; +// dest->ebData[nEdge].tSt=dest->ebData[nEdge].tEn=tID; +// } // } } } diff --git a/src/livarot/ShapeSweep.cpp b/src/livarot/ShapeSweep.cpp index ff58b4a71..b04b36bfd 100644 --- a/src/livarot/ShapeSweep.cpp +++ b/src/livarot/ShapeSweep.cpp @@ -2740,8 +2740,7 @@ Shape::CheckAdjacencies (int lastPointNo, int lastChgtPt, Shape * /*shapeHead*/, if (TesteAdjacency (lS, lB, getPoint(n).x, n, false) == false) break; - if (getPoint(lS->swsData[lB].leftRnd).x[0] > getPoint(n).x[0] + HalfRound (1)) // LP Bug 614577 - lS->swsData[lB].leftRnd = n; + lS->swsData[lB].leftRnd = n; } for (int n = rgtN + 1; n < lastPointNo; n++) { @@ -2767,8 +2766,7 @@ Shape::CheckAdjacencies (int lastPointNo, int lastChgtPt, Shape * /*shapeHead*/, if (TesteAdjacency (rS, rB, getPoint(n).x, n, false) == false) break; - if (getPoint(rS->swsData[rB].leftRnd).x[0] > getPoint(n).x[0] + HalfRound (1)) // LP Bug 614577 - rS->swsData[rB].leftRnd = n; + rS->swsData[rB].leftRnd = n; } for (int n = rgtN + 1; n < lastPointNo; n++) { diff --git a/src/menus-skeleton.h b/src/menus-skeleton.h index 5b141902b..2334a08c1 100644 --- a/src/menus-skeleton.h +++ b/src/menus-skeleton.h @@ -222,6 +222,7 @@ static char const menus_skeleton[] = " <verb verb-id=\"ObjectToPath\" />\n" " <verb verb-id=\"StrokeToPath\" />\n" " <verb verb-id=\"SelectionTrace\" />\n" +" <verb verb-id=\"SelectionPixelArt\" />\n" " <separator/>\n" " <verb verb-id=\"SelectionUnion\" />\n" " <verb verb-id=\"SelectionDiff\" />\n" diff --git a/src/selection-chemistry.cpp b/src/selection-chemistry.cpp index 6aacc3f15..91b99e3f4 100644 --- a/src/selection-chemistry.cpp +++ b/src/selection-chemistry.cpp @@ -96,6 +96,7 @@ SPCycleType SP_CYCLING = SP_CYCLE_FOCUS; #include "uri-references.h" #include "display/curve.h" #include "display/canvas-bpath.h" +#include "display/cairo-utils.h" #include "inkscape-private.h" #include "path-chemistry.h" #include "ui/tool/control-point-selection.h" @@ -3480,9 +3481,10 @@ void sp_selection_create_bitmap_copy(SPDesktop *desktop) } // Import the image back - GdkPixbuf *pb = gdk_pixbuf_new_from_file(filepath, NULL); + Inkscape::Pixbuf *pb = Inkscape::Pixbuf::create_from_file(filepath); if (pb) { // Create the repr for the image + // TODO: avoid unnecessary roundtrip between data URI and decoded pixbuf Inkscape::XML::Node * repr = xml_doc->createElement("svg:image"); sp_embed_image(repr, pb); if (res == Inkscape::Util::Quantity::convert(1, "in", "px")) { // for default 90 dpi, snap it to pixel grid diff --git a/src/sp-image.cpp b/src/sp-image.cpp index b0a094950..80daf33c3 100644 --- a/src/sp-image.cpp +++ b/src/sp-image.cpp @@ -17,9 +17,6 @@ # include "config.h" #endif -// This has to be included prior to anything that includes setjmp.h, it croaks otherwise -#include <png.h> - #include <cstring> #include <algorithm> #include <string> @@ -43,8 +40,9 @@ #include "xml/repr.h" #include "snap-candidate.h" #include "preferences.h" - #include "io/sys.h" +#include "sp-factory.h" + #if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) #include "cms-system.h" #include "color-profile.h" @@ -77,8 +75,7 @@ static void sp_image_set_curve(SPImage *image); -static GdkPixbuf *sp_image_repr_read_image( time_t& modTime, gchar*& pixPath, const gchar *href, const gchar *absref, const gchar *base ); -static GdkPixbuf *sp_image_pixbuf_force_rgba (GdkPixbuf * pixbuf); +static Inkscape::Pixbuf *sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base ); static void sp_image_update_arenaitem (SPImage *img, Inkscape::DrawingImage *ai); static void sp_image_update_canvas_image (SPImage *image); static GdkPixbuf * sp_image_repr_read_dataURI (const gchar * uri_data); @@ -117,78 +114,16 @@ extern guint update_in_progress; #define DEBUG_MESSAGE_SCISLAC(key, ...) #endif // DEBUG_LCMS -namespace Inkscape { -namespace IO { - -GdkPixbuf* pixbuf_new_from_file(const char *filename, time_t &modTime, gchar*& pixPath) -{ - GdkPixbuf* buf = NULL; - modTime = 0; - if ( pixPath ) { - g_free(pixPath); - pixPath = NULL; - } - - //test correctness of filename - if (!g_file_test (filename, G_FILE_TEST_EXISTS)){ - return NULL; - } - struct stat stdir; - int val = g_stat(filename, &stdir); - if (stdir.st_mode & S_IFDIR){ - g_warning("Linked image file %s is a directory", filename); - return NULL; - } - - // we need to load the entire pixbuf into memory - gchar *data = NULL; - gsize len = 0; - - if (g_file_get_contents(filename, &data, &len, NULL)) { - if (!val) { - modTime = stdir.st_mtime; - pixPath = g_strdup(filename); - } - - GdkPixbufLoader *loader = gdk_pixbuf_loader_new(); - gdk_pixbuf_loader_write(loader, (guchar *) data, len, NULL); - gdk_pixbuf_loader_close(loader, NULL); - - buf = gdk_pixbuf_loader_get_pixbuf(loader); - if (buf) { - g_object_ref(buf); - buf = sp_image_pixbuf_force_rgba(buf); - pixbuf_set_mime_data(buf, (guchar *) data, len, gdk_pixbuf_loader_get_format(loader)); - } else { - g_free(data); - g_warning("Error loading pixbuf"); - } - - // TODO: we could also read DPI, ICC profile, gamma correction, and other information - // from the file. This can be done by using format-specific libraries e.g. libpng. - } else { - g_warning("Unable to open linked file: %s", filename); - } - - return buf; -} - -} -} - - -#include "sp-factory.h" - namespace { - SPObject* createImage() { - return new SPImage(); - } +SPObject* createImage() { + return new SPImage(); +} - bool imageRegistered = SPFactory::instance().registerObject("svg:image", createImage); +bool imageRegistered = SPFactory::instance().registerObject("svg:image", createImage); } SPImage::SPImage() : SPItem() { - this->aspect_clip = 0; + this->aspect_clip = 0; this->x.unset(); this->y.unset(); @@ -206,15 +141,13 @@ SPImage::SPImage() : SPItem() { this->color_profile = 0; #endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) this->pixbuf = 0; - this->pixPath = 0; - this->lastMod = 0; } SPImage::~SPImage() { } void SPImage::build(SPDocument *document, Inkscape::XML::Node *repr) { - SPItem::build(document, repr); + SPItem::build(document, repr); this->readAttr( "xlink:href" ); this->readAttr( "x" ); @@ -231,7 +164,7 @@ void SPImage::build(SPDocument *document, Inkscape::XML::Node *repr) { void SPImage::release() { if (this->document) { // Unregister ourselves - this->document->removeResource("image", this); + this->document->removeResource("image", this); } if (this->href) { @@ -239,11 +172,8 @@ void SPImage::release() { this->href = NULL; } - if (this->pixbuf) { - g_object_set_data(G_OBJECT(this->pixbuf), "cairo_surface", NULL); - g_object_unref (this->pixbuf); - this->pixbuf = NULL; - } + delete this->pixbuf; + this->pixbuf = NULL; #if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) if (this->color_profile) { @@ -252,11 +182,6 @@ void SPImage::release() { } #endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) - if (this->pixPath) { - g_free(this->pixPath); - this->pixPath = 0; - } - if (this->curve) { this->curve = this->curve->unref(); } @@ -275,7 +200,7 @@ void SPImage::set(unsigned int key, const gchar* value) { case SP_ATTR_X: if (!this->x.readAbsolute(value)) { /* fixme: em, ex, % are probably valid, but require special treatment (Lauris) */ - this->x.unset(); + this->x.unset(); } this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); @@ -284,7 +209,7 @@ void SPImage::set(unsigned int key, const gchar* value) { case SP_ATTR_Y: if (!this->y.readAbsolute(value)) { /* fixme: em, ex, % are probably valid, but require special treatment (Lauris) */ - this->y.unset(); + this->y.unset(); } this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); @@ -293,7 +218,7 @@ void SPImage::set(unsigned int key, const gchar* value) { case SP_ATTR_WIDTH: if (!this->width.readAbsolute(value)) { /* fixme: em, ex, % are probably valid, but require special treatment (Lauris) */ - this->width.unset(); + this->width.unset(); } this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); @@ -302,7 +227,7 @@ void SPImage::set(unsigned int key, const gchar* value) { case SP_ATTR_HEIGHT: if (!this->height.readAbsolute(value)) { /* fixme: em, ex, % are probably valid, but require special treatment (Lauris) */ - this->height.unset(); + this->height.unset(); } this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG); @@ -310,7 +235,7 @@ void SPImage::set(unsigned int key, const gchar* value) { case SP_ATTR_PRESERVEASPECTRATIO: /* Do setup before, so we can use break to escape */ - this->aspect_align = SP_ASPECT_NONE; + this->aspect_align = SP_ASPECT_NONE; this->aspect_clip = SP_ASPECT_MEET; this->requestDisplayUpdate(SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_VIEWPORT_MODIFIED_FLAG); @@ -406,28 +331,13 @@ void SPImage::update(SPCtx *ctx, unsigned int flags) { SPItem::update(ctx, flags); if (flags & SP_IMAGE_HREF_MODIFIED_FLAG) { - if (this->pixbuf) { - g_object_unref (this->pixbuf); - this->pixbuf = NULL; - } - - if ( this->pixPath ) { - g_free(this->pixPath); - this->pixPath = 0; - } - - this->lastMod = 0; - + delete this->pixbuf; + this->pixbuf = NULL; + if (this->href) { - GdkPixbuf *pixbuf; + Inkscape::Pixbuf *pixbuf = NULL; pixbuf = sp_image_repr_read_image ( - this->lastMod, - this->pixPath, - - //XML Tree being used directly while it shouldn't be. this->getRepr()->attribute("xlink:href"), - - //XML Tree being used directly while it shouldn't be. this->getRepr()->attribute("sodipodi:absref"), doc->getBase()); @@ -436,10 +346,13 @@ void SPImage::update(SPCtx *ctx, unsigned int flags) { #if defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) if ( this->color_profile ) { - int imagewidth = gdk_pixbuf_get_width( pixbuf ); - int imageheight = gdk_pixbuf_get_height( pixbuf ); - int rowstride = gdk_pixbuf_get_rowstride( pixbuf ); - guchar* px = gdk_pixbuf_get_pixels( pixbuf ); + // TODO: this will prevent using MIME data when exporting. + // Integrate color correction into loading. + pixbuf->ensurePixelFormat(Inkscape::Pixbuf::PF_GDK); + int imagewidth = pixbuf->width(); + int imageheight = pixbuf->height(); + int rowstride = pixbuf->rowstride();; + guchar* px = pixbuf->pixels(); if ( px ) { DEBUG_MESSAGE( lcmsFive, "in <image>'s sp_image_update. About to call colorprofile_get_handle()" ); @@ -508,23 +421,23 @@ void SPImage::update(SPCtx *ctx, unsigned int flags) { if (this->pixbuf) { /* fixme: We are slightly violating spec here (Lauris) */ if (!this->width._set) { - this->width.computed = gdk_pixbuf_get_width(this->pixbuf); + this->width.computed = this->pixbuf->width(); } - + if (!this->height._set) { - this->height.computed = gdk_pixbuf_get_height(this->pixbuf); + this->height.computed = this->pixbuf->height(); } } - Geom::Point p(this->x.computed, this->y.computed); - Geom::Point wh(this->width.computed, this->height.computed); - this->clipbox = Geom::Rect(p, p + wh); + this->clipbox = Geom::Rect::from_xywh( + this->x.computed, this->y.computed, + this->width.computed, this->height.computed); this->ox = this->x.computed; this->oy = this->y.computed; - int pixwidth = gdk_pixbuf_get_width (this->pixbuf); - int pixheight = gdk_pixbuf_get_height (this->pixbuf); + int pixwidth = this->pixbuf->width(); + int pixheight = this->pixbuf->height(); this->sx = this->width.computed / pixwidth; this->sy = this->height.computed / pixheight; @@ -656,16 +569,15 @@ Geom::OptRect SPImage::bbox(Geom::Affine const &transform, SPItem::BBoxType type void SPImage::print(SPPrintContext *ctx) { if (this->pixbuf && (this->width.computed > 0.0) && (this->height.computed > 0.0) ) { - GdkPixbuf *pb = gdk_pixbuf_copy(this->pixbuf); - // GObject data is not copied, so we have to set the pixel format explicitly - g_object_set_data_full(G_OBJECT(pb), "pixel_format", g_strdup("argb32"), g_free); - ink_pixbuf_ensure_normal(pb); + Inkscape::Pixbuf *pb = new Inkscape::Pixbuf(*this->pixbuf); + pb->ensurePixelFormat(Inkscape::Pixbuf::PF_GDK); - guchar *px = gdk_pixbuf_get_pixels(pb); - int w = gdk_pixbuf_get_width(pb); - int h = gdk_pixbuf_get_height(pb); - int rs = gdk_pixbuf_get_rowstride(pb); - int pixskip = gdk_pixbuf_get_n_channels(pb) * gdk_pixbuf_get_bits_per_sample(pb) / 8; + guchar *px = pb->pixels(); + int w = pb->width(); + int h = pb->height(); + int rs = pb->rowstride(); + //int pixskip = gdk_pixbuf_get_n_channels(pb) * gdk_pixbuf_get_bits_per_sample(pb) / 8; + int pixskip = 4; if (this->aspect_align == SP_ASPECT_NONE) { Geom::Affine t; @@ -697,7 +609,7 @@ void SPImage::print(SPPrintContext *ctx) { t = ti * t; sp_print_image_R8G8B8A8_N(ctx, px + trimx*pixskip + trimy*rs, trimwidth, trimheight, rs, t, this->style); } - g_object_unref(pb); + delete pb; } } @@ -716,8 +628,8 @@ gchar* SPImage::description() { char *ret = ( this->pixbuf == NULL ? g_strdup_printf(_("<b>Image with bad reference</b>: %s"), href_desc) : g_strdup_printf(_("<b>Image</b> %d × %d: %s"), - gdk_pixbuf_get_width(this->pixbuf), - gdk_pixbuf_get_height(this->pixbuf), + this->pixbuf->width(), + this->pixbuf->height(), href_desc) ); g_free(href_desc); return ret; @@ -731,22 +643,9 @@ Inkscape::DrawingItem* SPImage::show(Inkscape::Drawing &drawing, unsigned int ke return ai; } -/* - * utility function to try loading image from href - * - * docbase/relative_src - * absolute_src - * - */ - -GdkPixbuf *sp_image_repr_read_image( time_t& modTime, char*& pixPath, const gchar *href, const gchar *absref, const gchar *base ) +Inkscape::Pixbuf *sp_image_repr_read_image(gchar const *href, gchar const *absref, gchar const *base) { - GdkPixbuf *pixbuf = 0; - modTime = 0; - if ( pixPath ) { - g_free(pixPath); - pixPath = 0; - } + Inkscape::Pixbuf *inkpb = 0; gchar const *filename = href; @@ -754,18 +653,18 @@ GdkPixbuf *sp_image_repr_read_image( time_t& modTime, char*& pixPath, const gcha if (strncmp (filename,"file:",5) == 0) { gchar *fullname = g_filename_from_uri(filename, NULL, NULL); if (fullname) { - pixbuf = Inkscape::IO::pixbuf_new_from_file(fullname, modTime, pixPath); + inkpb = Inkscape::Pixbuf::create_from_file(fullname); g_free(fullname); - if (pixbuf != NULL) { - return pixbuf; + if (inkpb != NULL) { + return inkpb; } } } else if (strncmp (filename,"data:",5) == 0) { /* data URI - embedded image */ filename += 5; - pixbuf = sp_image_repr_read_dataURI (filename); - if (pixbuf != NULL) { - return pixbuf; + inkpb = Inkscape::Pixbuf::create_from_data_uri(filename); + if (inkpb != NULL) { + return inkpb; } } else { @@ -781,19 +680,19 @@ GdkPixbuf *sp_image_repr_read_image( time_t& modTime, char*& pixPath, const gcha // different dir) or unset (when doc is not saved yet), so we check for base+href existence first, // and if it fails, we also try to use bare href regardless of its g_path_is_absolute if (g_file_test (fullname, G_FILE_TEST_EXISTS) && !g_file_test (fullname, G_FILE_TEST_IS_DIR)) { - pixbuf = Inkscape::IO::pixbuf_new_from_file(fullname, modTime, pixPath); + inkpb = Inkscape::Pixbuf::create_from_file(fullname); g_free (fullname); - if (pixbuf != NULL) { - return pixbuf; + if (inkpb != NULL) { + return inkpb; } } } /* try filename as absolute */ if (g_file_test (filename, G_FILE_TEST_EXISTS) && !g_file_test (filename, G_FILE_TEST_IS_DIR)) { - pixbuf = Inkscape::IO::pixbuf_new_from_file(filename, modTime, pixPath); - if (pixbuf != NULL) { - return pixbuf; + inkpb = Inkscape::Pixbuf::create_from_file(filename); + if (inkpb != NULL) { + return inkpb; } } } @@ -809,31 +708,20 @@ GdkPixbuf *sp_image_repr_read_image( time_t& modTime, char*& pixPath, const gcha g_warning ("xlink:href did not resolve to a valid image file, now trying sodipodi:absref=\"%s\"", absref); } - pixbuf = Inkscape::IO::pixbuf_new_from_file(filename, modTime, pixPath); - if (pixbuf != NULL) { - return pixbuf; + inkpb = Inkscape::Pixbuf::create_from_file(filename); + if (inkpb != NULL) { + return inkpb; } } /* Nope: We do not find any valid pixmap file :-( */ - pixbuf = gdk_pixbuf_new_from_xpm_data((const gchar **) brokenimage_xpm); + GdkPixbuf *pixbuf = gdk_pixbuf_new_from_xpm_data((const gchar **) brokenimage_xpm); + inkpb = new Inkscape::Pixbuf(pixbuf); /* It should be included xpm, so if it still does not does load, */ /* our libraries are broken */ - g_assert (pixbuf != NULL); + g_assert (inkpb != NULL); - return pixbuf; -} - -static GdkPixbuf *sp_image_pixbuf_force_rgba( GdkPixbuf * pixbuf ) -{ - GdkPixbuf* result; - if (gdk_pixbuf_get_has_alpha(pixbuf)) { - result = pixbuf; - } else { - result = gdk_pixbuf_add_alpha(pixbuf, FALSE, 0, 0, 0); - g_object_unref(pixbuf); - } - return result; + return inkpb; } /* We assert that realpixbuf is either NULL or identical size to pixbuf */ @@ -841,7 +729,7 @@ static void sp_image_update_arenaitem (SPImage *image, Inkscape::DrawingImage *ai) { ai->setStyle(SP_OBJECT(image)->style); - ai->setARGB32Pixbuf(image->pixbuf); + ai->setPixbuf(image->pixbuf); ai->setOrigin(Geom::Point(image->ox, image->oy)); ai->setScale(image->sx, image->sy); ai->setClipbox(image->clipbox); @@ -928,113 +816,6 @@ Geom::Affine SPImage::set_transform(Geom::Affine const &xform) { return ret; } -static GdkPixbuf *sp_image_repr_read_dataURI( const gchar * uri_data ) -{ - GdkPixbuf * pixbuf = NULL; - - gint data_is_image = 0; - gint data_is_base64 = 0; - - const gchar * data = uri_data; - - while (*data) { - if (strncmp(data,"base64",6) == 0) { - /* base64-encoding */ - data_is_base64 = 1; - data_is_image = 1; // Illustrator produces embedded images without MIME type, so we assume it's image no matter what - data += 6; - } - else if (strncmp(data,"image/png",9) == 0) { - /* PNG image */ - data_is_image = 1; - data += 9; - } - else if (strncmp(data,"image/jpg",9) == 0) { - /* JPEG image */ - data_is_image = 1; - data += 9; - } - else if (strncmp(data,"image/jpeg",10) == 0) { - /* JPEG image */ - data_is_image = 1; - data += 10; - } - else { /* unrecognized option; skip it */ - while (*data) { - if (((*data) == ';') || ((*data) == ',')) { - break; - } - data++; - } - } - if ((*data) == ';') { - data++; - continue; - } - if ((*data) == ',') { - data++; - break; - } - } - - if ((*data) && data_is_image && data_is_base64) { - pixbuf = sp_image_repr_read_b64(data); - } - - return pixbuf; -} - -static GdkPixbuf *sp_image_repr_read_b64(gchar const *uri_data) -{ - GdkPixbuf *pixbuf = NULL; - GdkPixbufLoader *loader = gdk_pixbuf_loader_new(); - - if (!loader) return NULL; - - gsize decoded_len = 0; - guchar *decoded = g_base64_decode(uri_data, &decoded_len); - - if (gdk_pixbuf_loader_write(loader, decoded, decoded_len, NULL)) { - gdk_pixbuf_loader_close(loader, NULL); - pixbuf = gdk_pixbuf_loader_get_pixbuf(loader); - g_object_ref(pixbuf); - pixbuf = sp_image_pixbuf_force_rgba(pixbuf); - pixbuf_set_mime_data(pixbuf, decoded, decoded_len, gdk_pixbuf_loader_get_format(loader)); - } else { - g_free(decoded); - } - g_object_unref(loader); - - return pixbuf; -} - -// takes ownership of passed data -static void pixbuf_set_mime_data(GdkPixbuf *pb, guchar *data, gsize len, GdkPixbufFormat *fmt) -{ - cairo_surface_t *s = ink_cairo_surface_get_for_pixbuf(pb); - - gchar const *mimetype = NULL; - gchar *fmt_name = gdk_pixbuf_format_get_name(fmt); - Glib::ustring name = fmt_name; - g_free(fmt_name); - - if (name == "jpeg") { - mimetype = CAIRO_MIME_TYPE_JPEG; - } else if (name == "jpeg2000") { - mimetype = CAIRO_MIME_TYPE_JP2; - } else if (name == "png") { - mimetype = CAIRO_MIME_TYPE_PNG; - } - - if (mimetype != NULL) { - cairo_surface_set_mime_data(s, mimetype, data, len, g_free, data); - //g_message("Setting Cairo MIME data: %s", mimetype); - } else { - g_free(data); - //g_message("Not setting Cairo MIME data: unknown format %s", name.c_str()); - } -} - static void sp_image_set_curve( SPImage *image ) { //create a curve at the image's boundary for snapping @@ -1070,52 +851,32 @@ SPCurve *sp_image_get_curve( SPImage *image ) return result; } -void sp_embed_image(Inkscape::XML::Node *image_node, GdkPixbuf *pb) +void sp_embed_image(Inkscape::XML::Node *image_node, Inkscape::Pixbuf *pb) { - static gchar const *mimetypes[] = { - CAIRO_MIME_TYPE_JPEG, CAIRO_MIME_TYPE_JP2, CAIRO_MIME_TYPE_PNG, NULL }; - static guint mimetypes_len = g_strv_length(const_cast<gchar**>(mimetypes)); - bool free_data = false; // check whether the pixbuf has MIME data guchar *data = NULL; gsize len = 0; - gchar const *data_mimetype = NULL; - - cairo_surface_t *s = reinterpret_cast<cairo_surface_t*>(g_object_get_data(G_OBJECT(pb), "cairo_surface")); - if (s) { - for (guint i = 0; i < mimetypes_len; ++i) { - unsigned long len_long = 0; - cairo_surface_get_mime_data(s, mimetypes[i], const_cast<unsigned char const **>(&data), &len_long); - len = len_long; // this assumes that the added range of long is not needed. the code below assumes gsize range of values is sufficient. - if (data != NULL) { - data_mimetype = mimetypes[i]; - break; - } - } - } + std::string data_mimetype; - if (data == NULL) { - Inkscape::Preferences *prefs = Inkscape::Preferences::get(); - Glib::ustring quality = Glib::ustring::format(prefs->getInt("/dialogs/import/quality", 100)); + data = const_cast<guchar *>(pb->getMimeData(len, data_mimetype)); + if (data == NULL) { // if there is no supported MIME data, embed as PNG data_mimetype = "image/png"; - ink_pixbuf_ensure_normal(pb); - gdk_pixbuf_save_to_buffer(pb, reinterpret_cast<gchar**>(&data), &len, "png", NULL, - "quality", quality.c_str(), NULL); + gdk_pixbuf_save_to_buffer(pb->getPixbufRaw(), reinterpret_cast<gchar**>(&data), &len, "png", NULL, NULL); free_data = true; } // Save base64 encoded data in image node // this formula taken from Glib docs gsize needed_size = len * 4 / 3 + len * 4 / (3 * 72) + 7; - needed_size += 5 + 8 + strlen(data_mimetype); // 5 bytes for data: + 8 for ;base64, + needed_size += 5 + 8 + data_mimetype.size(); // 5 bytes for data: + 8 for ;base64, gchar *buffer = (gchar *) g_malloc(needed_size); gchar *buf_work = buffer; - buf_work += g_sprintf(buffer, "data:%s;base64,", data_mimetype); + buf_work += g_sprintf(buffer, "data:%s;base64,", data_mimetype.c_str()); gint state = 0; gint save = 0; @@ -1135,18 +896,18 @@ void sp_embed_image(Inkscape::XML::Node *image_node, GdkPixbuf *pb) void sp_image_refresh_if_outdated( SPImage* image ) { - if ( image->href && image->lastMod ) { + if ( image->href && image->pixbuf && image->pixbuf->modificationTime()) { // It *might* change struct stat st; memset(&st, 0, sizeof(st)); int val = 0; - if (g_file_test (image->pixPath, G_FILE_TEST_EXISTS)){ - val = g_stat(image->pixPath, &st); + if (g_file_test (image->pixbuf->originalPath().c_str(), G_FILE_TEST_EXISTS)){ + val = g_stat(image->pixbuf->originalPath().c_str(), &st); } if ( !val ) { // stat call worked. Check time now - if ( st.st_mtime != image->lastMod ) { + if ( st.st_mtime != image->pixbuf->modificationTime() ) { SPCtx *ctx = 0; unsigned int flags = SP_IMAGE_HREF_MODIFIED_FLAG; image->update(ctx, flags); diff --git a/src/sp-image.h b/src/sp-image.h index 9a229e5f5..bfc10e7f2 100644 --- a/src/sp-image.h +++ b/src/sp-image.h @@ -1,9 +1,6 @@ -#ifndef __SP_IMAGE_H__ -#define __SP_IMAGE_H__ - -/* +/** @file * SVG <image> implementation - * + *//* * Authors: * Lauris Kaplinski <lauris@kaplinski.com> * Edward Flick (EAF) @@ -14,22 +11,24 @@ * Released under GNU GPL, read the file 'COPYING' for more information */ -#define SP_IMAGE(obj) (dynamic_cast<SPImage*>((SPObject*)obj)) -#define SP_IS_IMAGE(obj) (dynamic_cast<const SPImage*>((SPObject*)obj) != NULL) - -/* SPImage */ +#ifndef SEEN_INKSCAPE_SP_IMAGE_H +#define SEEN_INKSCAPE_SP_IMAGE_H #include <gdk-pixbuf/gdk-pixbuf.h> #include <glibmm/ustring.h> #include "svg/svg-length.h" -#include "sp-item.h" +#include "sp-shape.h" + +#define SP_IMAGE(obj) (dynamic_cast<SPImage*>((SPObject*)obj)) +#define SP_IS_IMAGE(obj) (dynamic_cast<const SPImage*>((SPObject*)obj) != NULL) #define SP_IMAGE_HREF_MODIFIED_FLAG SP_OBJECT_USER_MODIFIED_FLAG_A +namespace Inkscape { class Pixbuf; } class SPImage : public SPItem { public: - SPImage(); - virtual ~SPImage(); + SPImage(); + virtual ~SPImage(); SVGLength x; SVGLength y; @@ -54,28 +53,26 @@ public: gchar *color_profile; #endif // defined(HAVE_LIBLCMS1) || defined(HAVE_LIBLCMS2) - GdkPixbuf *pixbuf; - gchar *pixPath; - time_t lastMod; + Inkscape::Pixbuf *pixbuf; - virtual void build(SPDocument *document, Inkscape::XML::Node *repr); - virtual void release(); - virtual void set(unsigned int key, gchar const* value); - virtual void update(SPCtx *ctx, guint flags); - virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags); - virtual void modified(unsigned int flags); + virtual void build(SPDocument *document, Inkscape::XML::Node *repr); + virtual void release(); + virtual void set(unsigned int key, gchar const* value); + virtual void update(SPCtx *ctx, guint flags); + virtual Inkscape::XML::Node* write(Inkscape::XML::Document *xml_doc, Inkscape::XML::Node *repr, guint flags); + virtual void modified(unsigned int flags); - virtual Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type); - virtual void print(SPPrintContext *ctx); - virtual gchar* description(); - virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags); + virtual Geom::OptRect bbox(Geom::Affine const &transform, SPItem::BBoxType type); + virtual void print(SPPrintContext *ctx); + virtual gchar* description(); + virtual Inkscape::DrawingItem* show(Inkscape::Drawing &drawing, unsigned int key, unsigned int flags); virtual void snappoints(std::vector<Inkscape::SnapCandidatePoint> &p, Inkscape::SnapPreferences const *snapprefs); virtual Geom::Affine set_transform(Geom::Affine const &transform); }; /* Return duplicate of curve or NULL */ SPCurve *sp_image_get_curve (SPImage *image); -void sp_embed_image(Inkscape::XML::Node *imgnode, GdkPixbuf *pb); +void sp_embed_image(Inkscape::XML::Node *imgnode, Inkscape::Pixbuf *pb); void sp_image_refresh_if_outdated( SPImage* image ); #endif diff --git a/src/sp-item-group.cpp b/src/sp-item-group.cpp index 36a42f704..010cc5449 100644 --- a/src/sp-item-group.cpp +++ b/src/sp-item-group.cpp @@ -720,7 +720,9 @@ sp_group_perform_patheffect(SPGroup *group, SPGroup *topgroup, bool write) // only run LPEs when the shape has a curve defined if (c) { + c->transform(i2anc_affine(subitem, topgroup)); sp_lpe_item_perform_path_effect(SP_LPE_ITEM(topgroup), c); + c->transform(i2anc_affine(subitem, topgroup).inverse()); SP_SHAPE(subitem)->setCurve(c, TRUE); if (write) { diff --git a/src/sp-item.cpp b/src/sp-item.cpp index abff398e6..e6991a1fa 100644 --- a/src/sp-item.cpp +++ b/src/sp-item.cpp @@ -601,11 +601,9 @@ void SPItem::update(SPCtx *ctx, guint flags) { } } } - /* Update bounding box data used by filters */ if (item->style->filter.set && item->display) { Geom::OptRect item_bbox = item->visualBounds(); - SPItemView *itemview = item->display; do { if (itemview->arenaitem) diff --git a/src/sp-object.cpp b/src/sp-object.cpp index b622d14e9..895b36e1c 100644 --- a/src/sp-object.cpp +++ b/src/sp-object.cpp @@ -140,15 +140,15 @@ SPObject::~SPObject() { // CPPIFY: make pure virtual void SPObject::read_content() { - //throw; + //throw; } void SPObject::update(SPCtx* ctx, unsigned int flags) { - //throw; + //throw; } void SPObject::modified(unsigned int flags) { - //throw; + //throw; } namespace { @@ -221,7 +221,7 @@ SPObject *sp_object_unref(SPObject *object, SPObject *owner) object->refCount--; if (object->refCount < 0) { - delete object; + delete object; } return NULL; @@ -575,25 +575,27 @@ SPObject *SPObject::get_child_by_repr(Inkscape::XML::Node *repr) } void SPObject::child_added(Inkscape::XML::Node *child, Inkscape::XML::Node *ref) { - SPObject* object = this; + SPObject* object = this; - try { - const std::string typeString = NodeTraits::get_type_string(*child); + try { + const std::string typeString = NodeTraits::get_type_string(*child); - SPObject* ochild = SPFactory::instance().createObject(typeString); + SPObject* ochild = SPFactory::instance().createObject(typeString); - SPObject *prev = ref ? object->get_child_by_repr(ref) : NULL; - object->attach(ochild, prev); - sp_object_unref(ochild, NULL); + SPObject *prev = ref ? object->get_child_by_repr(ref) : NULL; + object->attach(ochild, prev); + sp_object_unref(ochild, NULL); - ochild->invoke_build(object->document, child, object->cloned); - } catch (const FactoryExceptions::TypeNotRegistered& e) { - g_warning("TypeNotRegistered exception: %s", e.what()); - } + ochild->invoke_build(object->document, child, object->cloned); + } catch (const FactoryExceptions::TypeNotRegistered& e) { + if (std::string(e.what()) != "rdf:RDF") { // temporary special case + g_warning("TypeNotRegistered exception: %s", e.what()); + } + } } void SPObject::release() { - SPObject* object = this; + SPObject* object = this; debug("id=%x, typename=%s", object, g_type_name_from_instance((GTypeInstance*)object)); while (object->children) { @@ -602,7 +604,7 @@ void SPObject::release() { } void SPObject::remove_child(Inkscape::XML::Node* child) { - SPObject* object = this; + SPObject* object = this; debug("id=%x, typename=%s", object, g_type_name_from_instance((GTypeInstance*)object)); SPObject *ochild = object->get_child_by_repr(child); @@ -613,7 +615,7 @@ void SPObject::remove_child(Inkscape::XML::Node* child) { } void SPObject::order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node * old_ref, Inkscape::XML::Node *new_ref) { - SPObject* object = this; + SPObject* object = this; SPObject *ochild = object->get_child_by_repr(child); g_return_if_fail(ochild != NULL); @@ -623,7 +625,7 @@ void SPObject::order_changed(Inkscape::XML::Node *child, Inkscape::XML::Node * o } void SPObject::build(SPDocument *document, Inkscape::XML::Node *repr) { - SPObject* object = this; + SPObject* object = this; /* Nothing specific here */ debug("id=%x, typename=%s", object, g_type_name_from_instance((GTypeInstance*)object)); @@ -639,22 +641,22 @@ void SPObject::build(SPDocument *document, Inkscape::XML::Node *repr) { // } // SPObject *child = SP_OBJECT(g_object_new(type, 0)); -// SPObject* child = SPFactory::instance().createObject(*rchild); -// if (!child) { -// continue; -// } +// SPObject* child = SPFactory::instance().createObject(*rchild); +// if (!child) { +// continue; +// } - try { - const std::string typeString = NodeTraits::get_type_string(*rchild); + try { + const std::string typeString = NodeTraits::get_type_string(*rchild); - SPObject* child = SPFactory::instance().createObject(typeString); + SPObject* child = SPFactory::instance().createObject(typeString); - object->attach(child, object->lastChild()); - sp_object_unref(child, NULL); - child->invoke_build(document, rchild, object->cloned); - } catch (const FactoryExceptions::TypeNotRegistered& e) { - //g_warning("TypeNotRegistered exception: %s", e.what()); - } + object->attach(child, object->lastChild()); + sp_object_unref(child, NULL); + child->invoke_build(document, rchild, object->cloned); + } catch (const FactoryExceptions::TypeNotRegistered& e) { + //g_warning("TypeNotRegistered exception: %s", e.what()); + } } } @@ -723,7 +725,7 @@ void SPObject::invoke_build(SPDocument *document, Inkscape::XML::Node *repr, uns int SPObject::getIntAttribute(char const *key, int def) { sp_repr_get_int(getRepr(),key,&def); - return def; + return def; } unsigned SPObject::getPosition(){ @@ -907,7 +909,7 @@ void SPObject::setKeyValue(unsigned int key, gchar const *value) //g_assert(object != NULL); //g_assert(SP_IS_OBJECT(object)); - this->set(key, value); + this->set(key, value); } void SPObject::readAttr(gchar const *key) @@ -964,7 +966,7 @@ static gchar const *sp_xml_get_space_string(unsigned int space) } Inkscape::XML::Node* SPObject::write(Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) { - SPObject* object = this; + SPObject* object = this; if (!repr && (flags & SP_OBJECT_WRITE_BUILD)) { repr = object->getRepr()->duplicate(doc); @@ -1066,10 +1068,10 @@ Inkscape::XML::Node * SPObject::updateRepr(Inkscape::XML::Document *doc, Inkscap return NULL; } - if (!(flags & SP_OBJECT_WRITE_BUILD) && !repr) { - repr = getRepr(); - } - return this->write(doc, repr, flags); + if (!(flags & SP_OBJECT_WRITE_BUILD) && !repr) { + repr = getRepr(); + } + return this->write(doc, repr, flags); } @@ -1136,7 +1138,7 @@ void SPObject::updateDisplay(SPCtx *ctx, unsigned int flags) try { - this->update(ctx, flags); + this->update(ctx, flags); } catch(...) { diff --git a/src/sp-skeleton.cpp b/src/sp-skeleton.cpp deleted file mode 100644 index 83f2bc20d..000000000 --- a/src/sp-skeleton.cpp +++ /dev/null @@ -1,198 +0,0 @@ -/** \file - * SVG <skeleton> implementation, used as an example for a base starting class - * when implementing new sp-objects. - * - * In vi, three global search-and-replaces will let you rename everything - * in this and the .h file: - * - * :%s/SKELETON/YOURNAME/g - * :%s/Skeleton/Yourname/g - * :%s/skeleton/yourname/g - */ -/* - * Authors: - * Kees Cook <kees@outflux.net> - * Abhishek Sharma - * - * Copyright (C) 2004 Kees Cook - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#ifdef HAVE_CONFIG_H -# include "config.h" -#endif - -#include "attributes.h" -#include "sp-skeleton.h" -#include "xml/repr.h" - -#define DEBUG_SKELETON -#ifdef DEBUG_SKELETON -# define debug(f, a...) { g_print("%s(%d) %s:", \ - __FILE__,__LINE__,__FUNCTION__); \ - g_print(f, ## a); \ - g_print("\n"); \ - } -#else -# define debug(f, a...) /**/ -#endif - -/* Skeleton base class */ -static void sp_skeleton_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr); -static void sp_skeleton_release(SPObject *object); -static void sp_skeleton_set(SPObject *object, unsigned int key, gchar const *value); -static void sp_skeleton_update(SPObject *object, SPCtx *ctx, guint flags); -static Inkscape::XML::Node *sp_skeleton_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags); - -G_DEFINE_TYPE(SPSkeleton, sp_skeleton, SP_TYPE_OBJECT); - -static void -sp_skeleton_class_init(SPSkeletonClass *klass) -{ - SPObjectClass *sp_object_class = (SPObjectClass *)klass; - -<<<<<<< TREE - sp_object_class->build = sp_skeleton_build; -======= - skeleton_parent_class = (SPObjectClass*)g_type_class_peek_parent(klass); - - //sp_object_class->build = sp_skeleton_build; ->>>>>>> MERGE-SOURCE - sp_object_class->release = sp_skeleton_release; - sp_object_class->write = sp_skeleton_write; - sp_object_class->set = sp_skeleton_set; - sp_object_class->update = sp_skeleton_update; -} - -static void -sp_skeleton_init(SPSkeleton *skeleton) -{ - debug("0x%p",skeleton); -} - -/** - * Reads the Inkscape::XML::Node, and initializes SPSkeleton variables. For this to get called, - * our name must be associated with a repr via "sp_object_type_register". Best done through - * sp-object-repr.cpp's repr_name_entries array. - */ -static void -sp_skeleton_build(SPObject *object, SPDocument *document, Inkscape::XML::Node *repr) -{ - debug("0x%p",object); -<<<<<<< TREE - if (((SPObjectClass *) sp_skeleton_parent_class)->build) { - ((SPObjectClass *) sp_skeleton_parent_class)->build(object, document, repr); - } -======= -// if (((SPObjectClass *) skeleton_parent_class)->build) { -// ((SPObjectClass *) skeleton_parent_class)->build(object, document, repr); -// } ->>>>>>> MERGE-SOURCE - - /* - Pay attention to certain settings here - - object->readAttr( "xlink:href" ); - object->readAttr( "attributeName" ); - object->readAttr( "attributeType" ); - object->readAttr( "begin" ); - object->readAttr( "dur" ); - object->readAttr( "end" ); - object->readAttr( "min" ); - object->readAttr( "max" ); - object->readAttr( "restart" ); - object->readAttr( "repeatCount" ); - object->readAttr( "repeatDur" ); - object->readAttr( "fill" ); - */ -} - -/** - * Drops any allocated memory. - */ -static void -sp_skeleton_release(SPObject *object) -{ - debug("0x%p",object); - - /* deal with our children and our selves here */ - - if (((SPObjectClass *) sp_skeleton_parent_class)->release) - ((SPObjectClass *) sp_skeleton_parent_class)->release(object); -} - -/** - * Sets a specific value in the SPSkeleton. - */ -static void -sp_skeleton_set(SPObject *object, unsigned int key, gchar const *value) -{ - debug("0x%p %s(%u): '%s'",object, - sp_attribute_name(key),key,value ? value : "<no value>"); - //SPSkeleton *skeleton = SP_SKELETON(object); - - /* See if any parents need this value. */ - if (((SPObjectClass *) sp_skeleton_parent_class)->set) { - ((SPObjectClass *) sp_skeleton_parent_class)->set(object, key, value); - } -} - -/** - * Receives update notifications. - */ -static void -sp_skeleton_update(SPObject *object, SPCtx *ctx, guint flags) -{ - debug("0x%p",object); - //SPSkeleton *skeleton = SP_SKELETON(object); - - if (flags & (SP_OBJECT_MODIFIED_FLAG | SP_OBJECT_STYLE_MODIFIED_FLAG | - SP_OBJECT_VIEWPORT_MODIFIED_FLAG)) { - - /* do something to trigger redisplay, updates? */ - - } - - if (((SPObjectClass *) sp_skeleton_parent_class)->update) { - ((SPObjectClass *) sp_skeleton_parent_class)->update(object, ctx, flags); - } -} - -/** - * Writes its settings to an incoming repr object, if any. - */ -static Inkscape::XML::Node * -sp_skeleton_write(SPObject *object, Inkscape::XML::Document *doc, Inkscape::XML::Node *repr, guint flags) -{ - debug("0x%p",object); - //SPSkeleton *skeleton = SP_SKELETON(object); - - // Inkscape-only object, not copied during an "plain SVG" dump: - if (flags & SP_OBJECT_WRITE_EXT) { - if (repr) { - // is this sane? - repr->mergeFrom(object->getRepr(), "id"); - } else { - repr = object->getRepr()->duplicate(doc); - } - } - - if (((SPObjectClass *) sp_skeleton_parent_class)->write) { - ((SPObjectClass *) sp_skeleton_parent_class)->write(object, doc, repr, flags); - } - - return repr; -} - - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/sp-skeleton.h b/src/sp-skeleton.h deleted file mode 100644 index d01cbcada..000000000 --- a/src/sp-skeleton.h +++ /dev/null @@ -1,48 +0,0 @@ -#ifndef SP_SKELETON_H_SEEN -#define SP_SKELETON_H_SEEN - -/** \file - * SVG <skeleton> implementation, see sp-skeleton.cpp. - */ -/* - * Authors: - * Kees Cook <kees@outflux.net> - * - * Copyright (C) 2004 Kees Cook - * - * Released under GNU GPL, read the file 'COPYING' for more information - */ - -#include "sp-object.h" - -/* Skeleton base class */ - -#define SP_TYPE_SKELETON (sp_skeleton_get_type()) -#define SP_SKELETON(o) (G_TYPE_CHECK_INSTANCE_CAST((o), SP_TYPE_SKELETON, SPSkeleton)) -#define SP_IS_SKELETON(o) (G_TYPE_CHECK_INSTANCE_TYPE((o), SP_TYPE_SKELETON)) - -class SPSkeleton; -class SPSkeletonClass; - -struct SPSkeleton : public SPObject { -}; - -struct SPSkeletonClass { - SPObjectClass parent_class; -}; - -GType sp_skeleton_get_type(); - - -#endif /* !SP_SKELETON_H_SEEN */ - -/* - Local Variables: - mode:c++ - c-file-style:"stroustrup" - c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) - indent-tabs-mode:nil - fill-column:99 - End: -*/ -// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/sp-string.cpp b/src/sp-string.cpp index a826d182d..be450b248 100644 --- a/src/sp-string.cpp +++ b/src/sp-string.cpp @@ -35,11 +35,11 @@ #include "sp-factory.h" namespace { - SPObject* createString() { - return new SPString(); - } + SPObject* createString() { + return new SPString(); + } - bool stringRegistered = SPFactory::instance().registerObject("string", createString); + bool stringRegistered = SPFactory::instance().registerObject("string", createString); } /*##################################################### @@ -54,24 +54,19 @@ SPString::~SPString() { } void SPString::build(SPDocument *doc, Inkscape::XML::Node *repr) { - SPString* object = this; + SPString* object = this; object->read_content(); SPObject::build(doc, repr); } void SPString::release() { - SPString* object = this; - SPString *string = SP_STRING(object); - - //string->string.~ustring(); - SPObject::release(); } void SPString::read_content() { - SPString* object = this; + SPString* object = this; SPString *string = SP_STRING(object); diff --git a/src/sp-use.cpp b/src/sp-use.cpp index 0887ab50e..44935e61d 100644 --- a/src/sp-use.cpp +++ b/src/sp-use.cpp @@ -44,15 +44,15 @@ static void sp_use_delete_self(SPObject *deleted, SPUse *self); #include "sp-factory.h" namespace { - SPObject* createUse() { - return new SPUse(); - } + SPObject* createUse() { + return new SPUse(); + } - bool useRegistered = SPFactory::instance().registerObject("svg:use", createUse); + bool useRegistered = SPFactory::instance().registerObject("svg:use", createUse); } SPUse::SPUse() : SPItem() { - this->child = NULL; + this->child = NULL; this->x.unset(); this->y.unset(); @@ -102,7 +102,7 @@ void SPUse::build(SPDocument *document, Inkscape::XML::Node *repr) { void SPUse::release() { if (this->child) { - this->detach(this->child); + this->detach(this->child); this->child = NULL; } @@ -227,8 +227,6 @@ void SPUse::print(SPPrintContext* ctx) { } gchar* SPUse::description() { - char *ret; - if (this->child) { if( SP_IS_SYMBOL( this->child ) ) { char *symbol_desc = SP_ITEM(this->child)->title(); @@ -455,9 +453,9 @@ sp_use_href_changed(SPObject */*old_ref*/, SPObject */*ref*/, SPUse *use) SPObject* obj = SPFactory::instance().createObject(NodeTraits::get_type_string(*childrepr)); if (SP_IS_ITEM(obj)) { - use->child = obj; + use->child = obj; - use->attach(use->child, use->lastChild()); + use->attach(use->child, use->lastChild()); sp_object_unref(use->child, use); (use->child)->invoke_build(use->document, childrepr, TRUE); @@ -469,7 +467,7 @@ sp_use_href_changed(SPObject */*old_ref*/, SPObject */*ref*/, SPUse *use) } } } else { - delete obj; + delete obj; } use->_delete_connection = refobj->connectDelete(sigc::bind(sigc::ptr_fun(&sp_use_delete_self), use)); @@ -523,7 +521,7 @@ void SPUse::update(SPCtx *ctx, unsigned flags) { } if (this->y.unit == SVGLength::PERCENT) { - this->y.computed = this->y.value * ictx->viewport.height(); + this->y.computed = this->y.value * ictx->viewport.height(); } if (this->width.unit == SVGLength::PERCENT) { diff --git a/src/style.cpp b/src/style.cpp index db05a748f..e9cf22891 100644 --- a/src/style.cpp +++ b/src/style.cpp @@ -3170,7 +3170,10 @@ sp_style_clear(SPStyle *style) style->color_interpolation.value = style->color_interpolation.computed = SP_CSS_COLOR_INTERPOLATION_SRGB; style->color_interpolation_filters.set = FALSE; style->color_interpolation_filters.inherit = FALSE; - style->color_interpolation_filters.value = style->color_interpolation_filters.computed = SP_CSS_COLOR_INTERPOLATION_LINEARRGB; + style->color_interpolation_filters.value = style->color_interpolation_filters.computed = SP_CSS_COLOR_INTERPOLATION_SRGB; + //this line changed because rendering issues: Bug lp:1127103 + //style->color_interpolation_filters.value = style->color_interpolation_filters.computed = SP_CSS_COLOR_INTERPOLATION_LINEARRGB; + style->fill.clear(); style->fill.setColor(0.0, 0.0, 0.0); diff --git a/src/trace/imagemap-gdk.cpp b/src/trace/imagemap-gdk.cpp index 7c7139002..298414074 100644 --- a/src/trace/imagemap-gdk.cpp +++ b/src/trace/imagemap-gdk.cpp @@ -152,9 +152,9 @@ RgbMap *gdkPixbufToRgbMap(GdkPixbuf *buf) { int alpha = (int)p[3]; int white = 255 - alpha; - int r = (int)p[2]; r = r * alpha / 256 + white; + int r = (int)p[0]; r = r * alpha / 256 + white; int g = (int)p[1]; g = g * alpha / 256 + white; - int b = (int)p[0]; b = b * alpha / 256 + white; + int b = (int)p[2]; b = b * alpha / 256 + white; rgbMap->setPixel(rgbMap, x, y, r, g, b); p += n_channels; diff --git a/src/trace/trace.cpp b/src/trace/trace.cpp index cad8ea9be..e2cda6247 100644 --- a/src/trace/trace.cpp +++ b/src/trace/trace.cpp @@ -31,6 +31,7 @@ #include <2geom/transforms.h> #include "verbs.h" +#include "display/cairo-utils.h" #include "display/drawing.h" #include "display/drawing-shape.h" @@ -336,8 +337,17 @@ Glib::RefPtr<Gdk::Pixbuf> Tracer::getSelectedImage() if (!img->pixbuf) return Glib::RefPtr<Gdk::Pixbuf>(NULL); - Glib::RefPtr<Gdk::Pixbuf> pixbuf = - Glib::wrap(img->pixbuf, true); + GdkPixbuf *raw_pb = img->pixbuf->getPixbufRaw(false); + GdkPixbuf *trace_pb = gdk_pixbuf_copy(raw_pb); + if (img->pixbuf->pixelFormat() == Inkscape::Pixbuf::PF_CAIRO) { + convert_pixels_argb32_to_pixbuf( + gdk_pixbuf_get_pixels(trace_pb), + gdk_pixbuf_get_width(trace_pb), + gdk_pixbuf_get_height(trace_pb), + gdk_pixbuf_get_rowstride(trace_pb)); + } + + Glib::RefPtr<Gdk::Pixbuf> pixbuf = Glib::wrap(trace_pb, false); if (sioxEnabled) { @@ -410,7 +420,16 @@ void Tracer::traceThread() return; } - Glib::RefPtr<Gdk::Pixbuf> pixbuf = Glib::wrap(img->pixbuf, true); + GdkPixbuf *trace_pb = gdk_pixbuf_copy(img->pixbuf->getPixbufRaw(false)); + if (img->pixbuf->pixelFormat() == Inkscape::Pixbuf::PF_CAIRO) { + convert_pixels_argb32_to_pixbuf( + gdk_pixbuf_get_pixels(trace_pb), + gdk_pixbuf_get_width(trace_pb), + gdk_pixbuf_get_height(trace_pb), + gdk_pixbuf_get_rowstride(trace_pb)); + } + + Glib::RefPtr<Gdk::Pixbuf> pixbuf = Glib::wrap(trace_pb, false); pixbuf = sioxProcessImage(img, pixbuf); diff --git a/src/ui/CMakeLists.txt b/src/ui/CMakeLists.txt index c95dd35cc..233e01862 100644 --- a/src/ui/CMakeLists.txt +++ b/src/ui/CMakeLists.txt @@ -71,6 +71,7 @@ set(ui_SRC dialog/text-edit.cpp dialog/tile.cpp dialog/tracedialog.cpp + dialog/pixelartdialog.cpp dialog/transformation.cpp dialog/undo-history.cpp # dialog/whiteboard-connect.cpp diff --git a/src/ui/dialog/Makefile_insert b/src/ui/dialog/Makefile_insert index 09a7ef573..c37767a08 100644 --- a/src/ui/dialog/Makefile_insert +++ b/src/ui/dialog/Makefile_insert @@ -101,6 +101,8 @@ ink_common_sources += \ ui/dialog/tile.h \ ui/dialog/tracedialog.cpp \ ui/dialog/tracedialog.h \ + ui/dialog/pixelartdialog.cpp \ + ui/dialog/pixelartdialog.h \ ui/dialog/transformation.cpp \ ui/dialog/transformation.h \ ui/dialog/undo-history.cpp \ diff --git a/src/ui/dialog/dialog-manager.cpp b/src/ui/dialog/dialog-manager.cpp index 0ce74f54e..17f6ae74d 100644 --- a/src/ui/dialog/dialog-manager.cpp +++ b/src/ui/dialog/dialog-manager.cpp @@ -35,6 +35,7 @@ #include "ui/dialog/symbols.h" #include "ui/dialog/tile.h" #include "ui/dialog/tracedialog.h" +#include "ui/dialog/pixelartdialog.h" #include "ui/dialog/transformation.h" #include "ui/dialog/undo-history.h" #include "ui/dialog/panel-dialog.h" @@ -118,6 +119,7 @@ DialogManager::DialogManager() { registerFactory("Symbols", &create<SymbolsDialog, FloatingBehavior>); registerFactory("TileDialog", &create<TileDialog, FloatingBehavior>); registerFactory("Trace", &create<TraceDialog, FloatingBehavior>); + registerFactory("PixelArt", &create<PixelArtDialog, FloatingBehavior>); registerFactory("Transformation", &create<Transformation, FloatingBehavior>); registerFactory("UndoHistory", &create<UndoHistory, FloatingBehavior>); registerFactory("InputDevices", &create<InputDialog, FloatingBehavior>); @@ -151,6 +153,7 @@ DialogManager::DialogManager() { registerFactory("Symbols", &create<SymbolsDialog, DockBehavior>); registerFactory("TileDialog", &create<TileDialog, DockBehavior>); registerFactory("Trace", &create<TraceDialog, DockBehavior>); + registerFactory("PixelArt", &create<PixelArtDialog, DockBehavior>); registerFactory("Transformation", &create<Transformation, DockBehavior>); registerFactory("UndoHistory", &create<UndoHistory, DockBehavior>); registerFactory("InputDevices", &create<InputDialog, DockBehavior>); diff --git a/src/ui/dialog/inkscape-preferences.cpp b/src/ui/dialog/inkscape-preferences.cpp index b06c1fd1f..e9cf2e753 100644 --- a/src/ui/dialog/inkscape-preferences.cpp +++ b/src/ui/dialog/inkscape-preferences.cpp @@ -884,7 +884,7 @@ void InkscapePreferences::initPageIO() int pathstringFormatValues[numPathstringFormat] = {0, 1, 2}; _svgoutput_pathformat.init("/options/svgoutput/pathstring_format", pathstringFormatLabels, pathstringFormatValues, numPathstringFormat, 2); - _page_svgoutput.add_line( true, _("Path string format"), _svgoutput_pathformat, "", _("Path data should be written: only with absolute coordinates, only with relative coordinates, or optimized for string length (mixed absolute and relative coordinates)"), false); + _page_svgoutput.add_line( true, _("Path string format:"), _svgoutput_pathformat, "", _("Path data should be written: only with absolute coordinates, only with relative coordinates, or optimized for string length (mixed absolute and relative coordinates)"), false); _svgoutput_forcerepeatcommands.init( _("Force repeat commands"), "/options/svgoutput/forcerepeatcommands", false); _page_svgoutput.add_line( true, "", _svgoutput_forcerepeatcommands, "", _("Force repeating of the same path command (for example, 'L 1,2 L 3,4' instead of 'L 1,2 3,4')"), false); diff --git a/src/ui/dialog/pixelartdialog.cpp b/src/ui/dialog/pixelartdialog.cpp new file mode 100644 index 000000000..ef181b357 --- /dev/null +++ b/src/ui/dialog/pixelartdialog.cpp @@ -0,0 +1,492 @@ +/** + * @file + * Pixel art tracing settings dialog - implementation. + */ +/* Authors: + * Bob Jamison <rjamison@titan.com> + * Stéphane Gimenez <dev@gim.name> + * Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + * Other dudes from The Inkscape Organization + * + * Copyright (C) 2004-2013 Authors + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ +#ifdef HAVE_CONFIG_H +# include <config.h> +#endif + +#ifdef HAVE_CONFIG_H +#include "config.h" +#endif + +#include "pixelartdialog.h" +#include <gtkmm/radiobutton.h> +#include <gtkmm/stock.h> + +#include <gtk/gtk.h> //for GTK_RESPONSE* types +#include <glibmm/i18n.h> + +#include "ui/widget/spinbutton.h" +#include "ui/widget/frame.h" + +#include "desktop.h" +#include "desktop-tracker.h" +#include "message-stack.h" +#include "selection.h" +#include "preferences.h" + +#include "sp-image.h" +#include "display/cairo-utils.h" +#include "libdepixelize/kopftracer2011.h" +#include <algorithm> +#include "document.h" +#include "xml/repr.h" +#include "xml/document.h" +#include "svg/svg.h" +#include "svg/svg-color.h" +#include "color.h" +#include "svg/css-ostringstream.h" +#include "document-undo.h" + +#ifdef HAVE_OPENMP +#include <omp.h> +#endif // HAVE_OPENMP + +namespace Inkscape { +namespace UI { +namespace Dialog { + +template<class T> +T move(T &obj) +{ +#ifdef LIBDEPIXELIZE_ENABLE_CPP11 + return std::move(obj); +#else + T ret; + std::swap(obj, ret); + return ret; +#endif // LIBDEPIXELIZE_ENABLE_CPP11 +} + +/** + * A dialog for adjusting pixel art -> vector tracing parameters + */ +class PixelArtDialogImpl : public PixelArtDialog +{ +public: + PixelArtDialogImpl(); + + ~PixelArtDialogImpl(); + +private: + void setDesktop(SPDesktop *desktop); + void setTargetDesktop(SPDesktop *desktop); + + //############ Events + + void responseCallback(int response_id); + + //############ UI Logic + + Tracer::Kopf2011::Options options(); + + void vectorize(); + void processLibdepixelize(SPImage *img); + void setDefaults(); + void updatePreview(); + + bool ignorePreview; + bool pendingPreview; + + //############ UI + + Gtk::HBox buttonsHBox; + + Gtk::Button *mainOkButton; + Gtk::Button *mainCancelButton; + Gtk::Button *mainResetButton; + + Gtk::VBox heuristicsVBox; + UI::Widget::Frame heuristicsFrame; + + Gtk::HBox curvesMultiplierHBox; + Gtk::Label curvesMultiplierLabel; + Inkscape::UI::Widget::SpinButton curvesMultiplierSpinner; + + Gtk::HBox islandsWeightHBox; + Gtk::Label islandsWeightLabel; + Inkscape::UI::Widget::SpinButton islandsWeightSpinner; + + Gtk::HBox sparsePixelsMultiplierHBox; + Gtk::Label sparsePixelsMultiplierLabel; + Inkscape::UI::Widget::SpinButton sparsePixelsMultiplierSpinner; + + Gtk::HBox sparsePixelsRadiusHBox; + Gtk::Label sparsePixelsRadiusLabel; + Inkscape::UI::Widget::SpinButton sparsePixelsRadiusSpinner; + + Gtk::VBox outputVBox; + UI::Widget::Frame outputFrame; + Gtk::RadioButtonGroup outputGroup; + + Gtk::RadioButton voronoiRadioButton; + Gtk::RadioButton noOptimizeRadioButton; + Gtk::RadioButton optimizeRadioButton; + + SPDesktop *desktop; + DesktopTracker deskTrack; + sigc::connection desktopChangeConn; +}; + +void PixelArtDialogImpl::setDesktop(SPDesktop *desktop) +{ + Panel::setDesktop(desktop); + deskTrack.setBase(desktop); +} + +void PixelArtDialogImpl::setTargetDesktop(SPDesktop *desktop) +{ + this->desktop = desktop; +} + +PixelArtDialogImpl::PixelArtDialogImpl() : + PixelArtDialog(), + ignorePreview(false), + pendingPreview(false) +{ + + Gtk::Box *contents = _getContents(); + + // Heuristics + { + curvesMultiplierLabel.set_label(_("_Curves (multiplier)")); + curvesMultiplierLabel.set_use_underline(true); + curvesMultiplierLabel.set_mnemonic_widget(curvesMultiplierSpinner); + curvesMultiplierLabel.set_tooltip_text(_("Favors connections that are part of a long curve")); + curvesMultiplierSpinner.set_increments(0.125, 0); + curvesMultiplierSpinner.set_digits(3); + curvesMultiplierSpinner.set_range(-10, 10); + curvesMultiplierSpinner.get_adjustment()->signal_value_changed() + .connect(sigc::mem_fun(*this, &PixelArtDialogImpl::updatePreview)); + + curvesMultiplierHBox.pack_start(curvesMultiplierLabel, false, false); + curvesMultiplierHBox.pack_end(curvesMultiplierSpinner, false, false); + heuristicsVBox.pack_start(curvesMultiplierHBox, false, false); + + islandsWeightLabel.set_label(_("_Islands (weight)")); + islandsWeightLabel.set_use_underline(true); + islandsWeightLabel.set_mnemonic_widget(islandsWeightSpinner); + islandsWeightLabel.set_tooltip_text(_("Avoid single disconnected pixels")); + + islandsWeightSpinner.set_tooltip_text(_("A constant vote value")); + islandsWeightSpinner.set_increments(1, 0); + islandsWeightSpinner.set_range(-20, 20); + islandsWeightSpinner.get_adjustment()->signal_value_changed() + .connect(sigc::mem_fun(*this, &PixelArtDialogImpl::updatePreview)); + + islandsWeightHBox.pack_start(islandsWeightLabel, false, false); + islandsWeightHBox.pack_end(islandsWeightSpinner, false, false); + heuristicsVBox.pack_start(islandsWeightHBox, false, false); + + sparsePixelsRadiusLabel.set_label(_("Sparse pixels (window _radius)")); + sparsePixelsRadiusLabel.set_use_underline(true); + sparsePixelsRadiusLabel.set_mnemonic_widget(sparsePixelsRadiusSpinner); + + sparsePixelsRadiusSpinner.set_increments(1, 0); + sparsePixelsRadiusSpinner.set_range(2, 8); + sparsePixelsRadiusSpinner.get_adjustment()->signal_value_changed() + .connect(sigc::mem_fun(*this, &PixelArtDialogImpl::updatePreview)); + + sparsePixelsRadiusSpinner.set_tooltip_text(_("The radius of the window analyzed")); + sparsePixelsMultiplierLabel.set_label(_("Sparse pixels (_multiplier)")); + sparsePixelsMultiplierLabel.set_use_underline(true); + sparsePixelsMultiplierLabel.set_mnemonic_widget(sparsePixelsMultiplierSpinner); + + sparsePixelsMultiplierSpinner.set_increments(0.125, 0); + sparsePixelsMultiplierSpinner.set_digits(3); + sparsePixelsMultiplierSpinner.set_range(-10, 10); + sparsePixelsMultiplierSpinner.get_adjustment()->signal_value_changed() + .connect(sigc::mem_fun(*this, &PixelArtDialogImpl::updatePreview)); + + { + char const *str = _("Favors connections that are part of foreground color"); + sparsePixelsRadiusLabel.set_tooltip_text(str); + sparsePixelsMultiplierLabel.set_tooltip_text(str); + } + + { + char const *str = _("The heuristic computed vote will be multiplied by this value"); + curvesMultiplierSpinner.set_tooltip_text(str); + sparsePixelsMultiplierSpinner.set_tooltip_text(str); + } + + sparsePixelsRadiusHBox.pack_start(sparsePixelsRadiusLabel, false, false); + sparsePixelsRadiusHBox.pack_end(sparsePixelsRadiusSpinner, false, false); + heuristicsVBox.pack_start(sparsePixelsRadiusHBox, false, false); + + sparsePixelsMultiplierHBox.pack_start(sparsePixelsMultiplierLabel, false, false); + sparsePixelsMultiplierHBox.pack_end(sparsePixelsMultiplierSpinner, false, false); + heuristicsVBox.pack_start(sparsePixelsMultiplierHBox, false, false); + + heuristicsFrame.set_label(_("Heuristics")); + heuristicsFrame.add(heuristicsVBox); + contents->pack_start(heuristicsFrame, false, false); + } + + // Output + { + voronoiRadioButton.set_label(_("_Voronoi diagram")); + voronoiRadioButton.set_tooltip_text(_("Output composed of straight lines")); + voronoiRadioButton.set_use_underline(true); + outputGroup = voronoiRadioButton.get_group(); + + outputVBox.pack_start(voronoiRadioButton, false, false); + + noOptimizeRadioButton.set_label(_("Convert to _B-spline curves")); + noOptimizeRadioButton.set_tooltip_text(_("Preserve staircasing artifacts")); + noOptimizeRadioButton.set_use_underline(true); + noOptimizeRadioButton.set_group(outputGroup); + + outputVBox.pack_start(noOptimizeRadioButton, false, false); + + optimizeRadioButton.set_label(_("_Smooth curves")); + optimizeRadioButton.set_tooltip_text(_("The Kopf-Lischinski algorithm")); + optimizeRadioButton.set_use_underline(true); + optimizeRadioButton.set_group(outputGroup); + + outputVBox.pack_start(optimizeRadioButton, false, false); + + outputFrame.set_label(_("Output")); + outputFrame.add(outputVBox); + contents->pack_start(outputFrame, true, false); + } + + // Buttons + { + mainResetButton = addResponseButton(_("Reset"), GTK_RESPONSE_HELP, true); + mainResetButton ->set_tooltip_text(_("Reset all settings to defaults")); + + //## The OK button + mainCancelButton = addResponseButton(Gtk::Stock::STOP, GTK_RESPONSE_CANCEL); + if (mainCancelButton) { + mainCancelButton->set_tooltip_text(_("Abort a trace in progress")); + mainCancelButton->set_sensitive(false); + } + mainOkButton = addResponseButton(Gtk::Stock::OK, GTK_RESPONSE_OK); + mainOkButton->set_tooltip_text(_("Execute the trace")); + + contents->pack_start(buttonsHBox); + } + + setDefaults(); + + show_all_children(); + + desktopChangeConn = deskTrack.connectDesktopChanged( sigc::mem_fun(*this, &PixelArtDialogImpl::setTargetDesktop) ); + deskTrack.connect(GTK_WIDGET(gobj())); + + signalResponse().connect(sigc::mem_fun(*this, &PixelArtDialogImpl::responseCallback)); +} + +void PixelArtDialogImpl::responseCallback(int response_id) +{ + if (response_id == GTK_RESPONSE_OK) { + vectorize(); + } else if (response_id == GTK_RESPONSE_CANCEL) { + // TODO + } else if (response_id == GTK_RESPONSE_HELP) { + setDefaults(); + } else { + hide(); + return; + } +} + +Tracer::Kopf2011::Options PixelArtDialogImpl::options() +{ + Tracer::Kopf2011::Options options; + + options.curvesMultiplier = curvesMultiplierSpinner.get_value(); + options.islandsWeight = islandsWeightSpinner.get_value_as_int(); + options.sparsePixelsMultiplier = sparsePixelsMultiplierSpinner.get_value(); + options.sparsePixelsRadius = sparsePixelsRadiusSpinner.get_value_as_int(); + options.optimize = optimizeRadioButton.get_active(); + + options.nthreads = Inkscape::Preferences::get() + ->getIntLimited("/options/threading/numthreads", +#ifdef HAVE_OPENMP + omp_get_num_procs(), +#else + 1, +#endif // HAVE_OPENMP + 1, 256); + + return options; +} + +void PixelArtDialogImpl::vectorize() +{ + Inkscape::MessageStack *msgStack = desktop->messageStack(); + + if ( !desktop->selection ) { + char *msg = _("Select an <b>image</b> to trace"); + msgStack->flash(Inkscape::ERROR_MESSAGE, msg); + return; + } + + bool found = false; + + for ( GSList const *list = desktop->selection->itemList() ; list + ; list = list->next ) { + if ( !SP_IS_IMAGE(list->data) ) + continue; + + found = true; + + processLibdepixelize(SP_IMAGE(list->data)); + } + + if ( !found ) { + char *msg = _("Select an <b>image</b> to trace"); + msgStack->flash(Inkscape::ERROR_MESSAGE, msg); + return; + } + + DocumentUndo::done(desktop->doc(), SP_VERB_SELECTION_PIXEL_ART, + _("Trace pixel art")); + + // Flush pending updates + desktop->doc()->ensureUpToDate(); +} + +void PixelArtDialogImpl::processLibdepixelize(SPImage *img) +{ + Tracer::Splines out; + + Glib::RefPtr<Gdk::Pixbuf> pixbuf + = Glib::wrap(img->pixbuf->getPixbufRaw(), true); + + if ( voronoiRadioButton.get_active() ) { + out = Tracer::Kopf2011::to_voronoi(pixbuf, options()); + } else { + out = Tracer::Kopf2011::to_splines(pixbuf, options()); + } + + Inkscape::XML::Document *xml_doc = desktop->doc()->getReprDoc(); + Inkscape::XML::Node *group = xml_doc->createElement("svg:g"); + + for ( Tracer::Splines::iterator it = out.begin(), end = out.end() + ; it != end ; ++it ) { + Inkscape::XML::Node *repr = xml_doc->createElement("svg:path"); + + { + SPCSSAttr *css = sp_repr_css_attr_new(); + + { + gchar b[64]; + sp_svg_write_color(b, sizeof(b), + SP_RGBA32_U_COMPOSE(unsigned(it->rgba[0]), + unsigned(it->rgba[1]), + unsigned(it->rgba[2]), + unsigned(it->rgba[3]))); + + sp_repr_css_set_property(css, "fill", b); + } + + { + Inkscape::CSSOStringStream osalpha; + osalpha << float(it->rgba[3]) / 255.; + sp_repr_css_set_property(css, "fill-opacity", + osalpha.str().c_str()); + } + + sp_repr_css_set(repr, css, "style"); + sp_repr_css_attr_unref(css); + } + + gchar *str = sp_svg_write_path(move(it->pathVector)); + repr->setAttribute("d", str); + g_free(str); + + group->appendChild(repr); + + Inkscape::GC::release(repr); + } + + { + group->setAttribute("transform", + (std::string("translate(") + + sp_svg_length_write_with_units(img->x) + + ' ' + sp_svg_length_write_with_units(img->y) + + ')').c_str()); + } + + desktop->currentLayer()->appendChildRepr(group); + + Inkscape::GC::release(group); +} + +void PixelArtDialogImpl::setDefaults() +{ + ignorePreview = true; + + curvesMultiplierSpinner.set_value(Tracer::Kopf2011::Options + ::CURVES_MULTIPLIER); + + islandsWeightSpinner.set_value(Tracer::Kopf2011::Options::ISLANDS_WEIGHT); + + sparsePixelsRadiusSpinner.set_value(Tracer::Kopf2011::Options + ::SPARSE_PIXELS_RADIUS); + + sparsePixelsMultiplierSpinner.set_value(Tracer::Kopf2011::Options + ::SPARSE_PIXELS_MULTIPLIER); + + optimizeRadioButton.set_active(); + + ignorePreview = false; + + if ( pendingPreview ) + updatePreview(); +} + +void PixelArtDialogImpl::updatePreview() +{ + if ( ignorePreview ) { + pendingPreview = true; + return; + } + + // TODO: update preview + pendingPreview = false; +} + +/** + * Factory method. Use this to create a new PixelArtDialog + */ +PixelArtDialog &PixelArtDialog::getInstance() +{ + PixelArtDialog *dialog = new PixelArtDialogImpl(); + return *dialog; +} + +PixelArtDialogImpl::~PixelArtDialogImpl() +{ + desktopChangeConn.disconnect(); +} + + +} //namespace Dialog +} //namespace UI +} //namespace Inkscape + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/ui/dialog/pixelartdialog.h b/src/ui/dialog/pixelartdialog.h new file mode 100644 index 000000000..165cb8699 --- /dev/null +++ b/src/ui/dialog/pixelartdialog.h @@ -0,0 +1,58 @@ +/** @file + * @brief Bitmap tracing settings dialog + */ +/* Authors: + * Bob Jamison + * Vinícius dos Santos Oliveira <vini.ipsmaker@gmail.com> + * Other dudes from The Inkscape Organization + * + * Copyright (C) 2004, 2005 Authors + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#ifndef __PIXELARTDIALOG_H__ +#define __PIXELARTDIALOG_H__ + +#include "ui/widget/panel.h" +#include "verbs.h" + +namespace Inkscape { +namespace UI { +namespace Dialog { + + +/** + * A dialog that displays log messages + */ +class PixelArtDialog : public UI::Widget::Panel +{ + +public: + + PixelArtDialog() : + UI::Widget::Panel("", "/dialogs/pixelart", SP_VERB_SELECTION_PIXEL_ART) + {} + + + static PixelArtDialog &getInstance(); + + virtual ~PixelArtDialog() {}; +}; + + +} //namespace Dialog +} //namespace UI +} //namespace Inkscape + +#endif /* __PIXELARTDIALOGDIALOG_H__ */ + +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:fileencoding=utf-8:textwidth=99 : diff --git a/src/verbs.cpp b/src/verbs.cpp index 737d9e150..23a560423 100644 --- a/src/verbs.cpp +++ b/src/verbs.cpp @@ -1173,6 +1173,10 @@ void SelectionVerb::perform(SPAction *action, void *data) inkscape_dialogs_unhide(); dt->_dlg_mgr->showDialog("Trace"); break; + case SP_VERB_SELECTION_PIXEL_ART: + inkscape_dialogs_unhide(); + dt->_dlg_mgr->showDialog("PixelArt"); + break; case SP_VERB_SELECTION_CREATE_BITMAP: sp_selection_create_bitmap_copy(dt); break; @@ -2545,6 +2549,8 @@ Verb *Verb::_base_verbs[] = { // TRANSLATORS: "to trace" means "to convert a bitmap to vector graphics" (to vectorize) new SelectionVerb(SP_VERB_SELECTION_TRACE, "SelectionTrace", N_("_Trace Bitmap..."), N_("Create one or more paths from a bitmap by tracing it"), INKSCAPE_ICON("bitmap-trace")), + new SelectionVerb(SP_VERB_SELECTION_PIXEL_ART, "SelectionPixelArt", N_("Trace Pixel Art..."), + N_("Create paths using Kopf-Lischinski algorithm to vectorize pixel art"), INKSCAPE_ICON("pixelart-trace")), new SelectionVerb(SP_VERB_SELECTION_CREATE_BITMAP, "SelectionCreateBitmap", N_("Make a _Bitmap Copy"), N_("Export selection to a bitmap and insert it into document"), INKSCAPE_ICON("selection-make-bitmap-copy") ), new SelectionVerb(SP_VERB_SELECTION_COMBINE, "SelectionCombine", N_("_Combine"), diff --git a/src/verbs.h b/src/verbs.h index c4b01dfbf..40292745a 100644 --- a/src/verbs.h +++ b/src/verbs.h @@ -134,6 +134,7 @@ enum { SP_VERB_SELECTION_SIMPLIFY, SP_VERB_SELECTION_REVERSE, SP_VERB_SELECTION_TRACE, + SP_VERB_SELECTION_PIXEL_ART, SP_VERB_SELECTION_CREATE_BITMAP, SP_VERB_SELECTION_COMBINE, SP_VERB_SELECTION_BREAK_APART, |
