diff --git a/.docker/Dockerfile b/.docker/Dockerfile
index dac12f9161bbc6b8060082c190dd27a82ab5ccc1..ca59395a90c747fc60a155c3fb5f8f264c60d42a 100644
--- a/.docker/Dockerfile
+++ b/.docker/Dockerfile
@@ -1,19 +1,20 @@
-FROM debian:latest
+FROM debian:10
 RUN apt-get update && \
-	 apt-get install \
-	 curl \
-	 python3 \
-	 python3-pip \
-	 python3-requests \
-	 python3-pandas \
-	 python3-html2text \
-	 tox \
-	 git \
-	 openjdk-11-jdk-headless \
-	 python-autopep8 \
-     python3-pytest \
-     libxml2 \
-	 -y
+    apt-get install \
+    curl \
+    python3 \
+    python3-pip \
+    python3-requests \
+    python3-pandas \
+    python3-html2text \
+    python3-sphinx \
+    tox \
+    git \
+    openjdk-11-jdk-headless \
+    python-autopep8 \
+    python3-pytest \
+    libxml2 \
+    -y
 COPY .docker/wait-for-it.sh /wait-for-it.sh
 ADD https://gitlab.com/api/v4/projects/13656973/repository/branches/dev \
    pylib_version.json
@@ -34,3 +35,5 @@ RUN rm -r /git/.git \
 RUN cd /git && pip3 install .
 WORKDIR /git/integrationtests
 CMD /wait-for-it.sh caosdb-server:10443 -t 500 -- ./test.sh
+# At least recommonmark 0.6 required.
+RUN pip3 install recommonmark sphinx-rtd-theme
diff --git a/.docker/pycaosdb.ini b/.docker/pycaosdb.ini
index 1e5ba293fa3a7bf294c78a88543d3d6433aabefd..652d536916ad0a4acece723a966eb310a045dd1a 100644
--- a/.docker/pycaosdb.ini
+++ b/.docker/pycaosdb.ini
@@ -7,7 +7,7 @@ username=admin
 cacert=/opt/caosdb/cert/caosdb.cert.pem
 debug=0
 
-passwordmethod=plain
+password_method=plain
 password=caosdb
 
 ssl_insecure=True
diff --git a/.gitignore b/.gitignore
index b1d651a7852d96ddb67170e80c1522f24573112b..bea8a04f8e93b7659fdc4d7b8d5246a19b8759ad 100644
--- a/.gitignore
+++ b/.gitignore
@@ -1,9 +1,17 @@
-__pycache__
-.tox
+# -*- mode:conf; -*-
+
+# compiled python and dist stuff
+*.egg
 .eggs
-.coverage
+*.egg-info/
+__pycache__/
+/.cache
 *cache.db
-*.egg-info
+*.pyc
+build/
+.tox
+.coverage
 .docker/cert
-src/caosadvancedtools/version.py
-version.py
+
+# documentation
+_apidoc
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index dfd6a0bf8d5b2985528ef7f69a8608ae6824dd48..9f746e473a799c027e40b84e3f3a6b36e7539c62 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -3,7 +3,9 @@
 #
 # Copyright (C) 2018 Research Group Biomedical Physics,
 # Max-Planck-Institute for Dynamics and Self-Organization Göttingen
-# Copyright (C) 2019 Henrik tom Wörden 
+# Copyright (C) 2019 Henrik tom Wörden
+# Copyright (C) 2020 Indiscale GmbH <info@indiscale.com>
+# Copyright (C) 2020 Daniel Hornung <d.hornung@indiscale.com>
 #
 # This program is free software: you can redistribute it and/or modify
 # it under the terms of the GNU Affero General Public License as
@@ -33,9 +35,10 @@ stages:
   - style
   - unittest
   - integrationtest
+  - deploy
 
 test:
-  tags: [docker]
+  tags: [cached-dind]
   stage: integrationtest
   image: $CI_REGISTRY_IMAGE_BASE
   script:
@@ -73,8 +76,8 @@ build-testenv:
   tags: [cached-dind]
   image: docker:18.09
   stage: setup
-  #only:
-  #- schedules
+  only:
+      - schedules
   script: 
       - df -h
       - docker login -u gitlab-ci-token -p $CI_JOB_TOKEN $CI_REGISTRY
@@ -116,3 +119,22 @@ unittest:
   image: $CI_REGISTRY_IMAGE
   script:
       - tox
+
+# Build the sphinx documentation and make it ready for deployment by Gitlab Pages
+# documentation:
+#   stage: deploy
+
+# Special job for serving a static website. See https://docs.gitlab.com/ee/ci/yaml/README.html#pages
+pages:
+  stage: deploy
+  image: $CI_REGISTRY_IMAGE
+  tags: [docker]
+  only:
+    - dev
+  script:
+    - echo "Deploying"
+    - make doc
+    - cp -r build/doc/html public
+  artifacts:
+    paths:
+      - public
diff --git a/CHANGELOG.md b/CHANGELOG.md
index 0cef3c6b7b997ecdcfdfa90ed3694b928b0fd8a9..337e9265e4e291674a906b06d3ec79fc5e0dac1c 100644
--- a/CHANGELOG.md
+++ b/CHANGELOG.md
@@ -21,6 +21,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 - new assure_name_is function
 - two utility functions when working with files: NameCollector and 
   get_file_via_download
+- Automated documentation builds: `make doc`
+- Crawler documentation
 
 ### Changed ###
 
@@ -41,7 +43,7 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
 ### Removed ###
 
 ### Fixed ###
-
+- An exception in collect_information does no longer lead to a break down.
 * Fixed an issue where `caosadvancedtools.cache.UpdateCache` would
   cause an `sqlite3.IntegrityError` if more than one change was cached
   for the same entity.
diff --git a/Makefile b/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..cbac0ea0a77e5523529ef181d83ffb9738d72faf
--- /dev/null
+++ b/Makefile
@@ -0,0 +1,33 @@
+# ** header v3.0
+# This file is a part of the CaosDB Project.
+#
+# Copyright (C) 2020 IndiScale GmbH <info@indiscale.com>
+# Copyright (C) 2020 Daniel Hornung <d.hornung@indiscale.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program 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 Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
+# ** end header
+
+# This Makefile is a wrapper for several other scripts.
+
+.PHONY: help doc install
+
+help:
+	@echo 'Type `make doc` for documentation, or `make install` for (local) installation.'
+
+doc:
+	$(MAKE) -C src/doc html
+
+install:
+	@echo "Not implemented yet, use pip for installation."
diff --git a/README_SETUP.md b/README_SETUP.md
index 1400ac5e7428db0143b5180228b097dfbd661f78..b9db16a9feba246aeae8e59574047ba0f9380a38 100644
--- a/README_SETUP.md
+++ b/README_SETUP.md
@@ -1,16 +1,35 @@
+# Getting started
 
-# Installation
-pip install . --user
-pip install tox --user
+## Download
+The recommended way is:
+```
+# Clone the repository:
+git clone 'https://gitlab.com/caosdb/caosdb-advanced-user-tools'
+```
+
+## Dependencies
+Dependencies will be installed automatically if you use the below described procedure.
+- `caosdb>=0.4.0`                                      
+- `openpyxl>=3.0.0`
+- `xlrd>=1.2.0`
+
+For testing:
+- `tox` 
+- `scifolder`from https://gitlab.com/henrik_indiscale/scifolder
+
+
+## Installation
+- `pip install . --user`
+- `pip install tox --user`
 
 In order to run the tests you need to install the [scifolder
 package](https://gitlab.com/henrik_indiscale/scifolder) by Henrik tom
 Wörden.
 
-# Run Unit Tests
-tox
+## Run Unit Tests
+`tox`
 
-# Run Integration Tests Locally
+## Run Integration Tests Locally
 
 1. Change directory to `integrationtests/`.
 2. Mount `extroot` to the folder that will be used as
@@ -22,10 +41,15 @@ tox
    an empty insctance.
 4. Run `test.sh`.
 
-# Code Formatting
-autopep8 -i -r ./
+## Code Formatting
+`autopep8 -i -r ./`
+
+## Documentation #
+
+Build documentation in `build/` with `make doc`.
 
-# Dependencies
+### Requirements ##
 
-test:
-- scifolder package from https://gitlab.com/henrik_indiscale/scifolder
+- `sphinx`
+- `sphinx-autoapi`
+- `recommonmark >= 0.6.0`
diff --git a/doc/crawler_fingerprint.svg b/doc/crawler_fingerprint.svg
deleted file mode 100644
index 33b93de9d798602d16a4ea553096981aa0bec01d..0000000000000000000000000000000000000000
--- a/doc/crawler_fingerprint.svg
+++ /dev/null
@@ -1,764 +0,0 @@
-<?xml version="1.0" encoding="UTF-8" standalone="no"?>
-<!-- Created with Inkscape (http://www.inkscape.org/) -->
-
-<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"
-   width="105.10491mm"
-   height="45.415398mm"
-   viewBox="0 0 105.10491 45.415398"
-   version="1.1"
-   id="svg3879"
-   inkscape:version="0.92.4 5da689c313, 2019-01-14"
-   sodipodi:docname="crawler_fingerprint.svg">
-  <defs
-     id="defs3873">
-    <marker
-       inkscape:stockid="Arrow1Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow1Lend"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         id="path4849"
-         d="M 0,0 5,-5 -12.5,0 5,5 Z"
-         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
-         transform="matrix(-0.8,0,0,-0.8,-10,0)"
-         inkscape:connector-curvature="0" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow1Lstart"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow1Lstart"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         id="path4846"
-         d="M 0,0 5,-5 -12.5,0 5,5 Z"
-         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
-         transform="matrix(0.8,0,0,0.8,10,0)"
-         inkscape:connector-curvature="0" />
-    </marker>
-    <marker
-       inkscape:stockid="Arrow1Lend"
-       orient="auto"
-       refY="0"
-       refX="0"
-       id="Arrow1Lend-4"
-       style="overflow:visible"
-       inkscape:isstock="true">
-      <path
-         inkscape:connector-curvature="0"
-         id="path4849-4"
-         d="M 0,0 5,-5 -12.5,0 5,5 Z"
-         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
-         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
-    </marker>
-  </defs>
-  <sodipodi:namedview
-     id="base"
-     pagecolor="#ffffff"
-     bordercolor="#666666"
-     borderopacity="1.0"
-     inkscape:pageopacity="0.0"
-     inkscape:pageshadow="2"
-     inkscape:zoom="2.8"
-     inkscape:cx="195.05404"
-     inkscape:cy="96.367221"
-     inkscape:document-units="mm"
-     inkscape:current-layer="layer1"
-     showgrid="false"
-     fit-margin-top="0"
-     fit-margin-left="0"
-     fit-margin-right="0"
-     fit-margin-bottom="0"
-     inkscape:window-width="1920"
-     inkscape:window-height="1043"
-     inkscape:window-x="1920"
-     inkscape:window-y="0"
-     inkscape:window-maximized="1" />
-  <metadata
-     id="metadata3876">
-    <rdf:RDF>
-      <cc:Work
-         rdf:about="">
-        <dc:format>image/svg+xml</dc:format>
-        <dc:type
-           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
-        <dc:title></dc:title>
-      </cc:Work>
-    </rdf:RDF>
-  </metadata>
-  <g
-     inkscape:label="Layer 1"
-     inkscape:groupmode="layer"
-     id="layer1"
-     transform="translate(-21.294643,-85.336085)">
-    <g
-       id="g7189">
-      <g
-         transform="matrix(0.7714085,0,0,0.7714085,14.520159,18.43565)"
-         id="g6192">
-        <path
-           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           d="m 38.954532,99.020097 c 0,0 2.605879,-5.011304 11.158503,-4.944488"
-           id="path4039"
-           inkscape:connector-curvature="0" />
-        <path
-           style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
-           d="m 51.299044,94.610148 c 3.674956,-0.46772 3.95893,-0.467721 3.95893,-0.467721"
-           id="path5160"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cc" />
-      </g>
-      <g
-         transform="translate(2.1433373,-4.8863056)"
-         id="g6942">
-        <g
-           id="g4037"
-           transform="matrix(0.35330138,0,0,0.35330138,30.03504,71.154734)">
-          <g
-             id="g4004">
-            <rect
-               style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-               id="rect3911"
-               width="67.752228"
-               height="45.82962"
-               x="76.020462"
-               y="59.645218"
-               ry="2.2678571" />
-            <g
-               id="g3985"
-               transform="translate(-2.9293155,-37.136161)">
-              <path
-                 inkscape:connector-curvature="0"
-                 id="rect3911-3"
-                 d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
-                 style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-              <text
-                 id="text3915"
-                 y="103.85416"
-                 x="80.92469"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="103.85416"
-                   x="80.92469"
-                   id="tspan3913"
-                   sodipodi:role="line">Experiment</tspan></text>
-            </g>
-          </g>
-          <g
-             transform="translate(0.52916667,0.52916667)"
-             id="g4017">
-            <text
-               xml:space="preserve"
-               style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-               x="77.579605"
-               y="53.205353"
-               id="text3919"><tspan
-                 sodipodi:role="line"
-                 x="77.579605"
-                 y="62.569122"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                 id="tspan3921" /><tspan
-                 sodipodi:role="line"
-                 x="77.579605"
-                 y="75.798286"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                 id="tspan3925" /><tspan
-                 sodipodi:role="line"
-                 x="77.579605"
-                 y="89.027458"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                 id="tspan3927" /><tspan
-                 sodipodi:role="line"
-                 x="77.579605"
-                 y="102.25662"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                 id="tspan3929">- UltraSound-Data</tspan></text>
-            <text
-               xml:space="preserve"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-               x="77.579605"
-               y="93.469177"
-               id="text3933"><tspan
-                 sodipodi:role="line"
-                 id="tspan3931"
-                 x="77.579605"
-                 y="93.469177"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Images</tspan></text>
-            <text
-               xml:space="preserve"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-               x="77.579605"
-               y="76.545387"
-               id="text3937"><tspan
-                 sodipodi:role="line"
-                 id="tspan3935"
-                 x="77.579605"
-                 y="76.545387"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Labnotes</tspan></text>
-            <text
-               xml:space="preserve"
-               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-               x="77.579605"
-               y="84.898758"
-               id="text3941"><tspan
-                 sodipodi:role="line"
-                 id="tspan3939"
-                 x="77.579605"
-                 y="84.898758"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- MRI-Data</tspan></text>
-          </g>
-        </g>
-        <image
-           width="8.227787"
-           height="12.52251"
-           preserveAspectRatio="none"
-           xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAALYAAAEVCAYAAABNDx/wAABPIXpUWHRSYXcgcHJvZmlsZSB0eXBl IGV4aWYAAHjarZ1Xku04lmX/OYoaAglFYDhQNOsZ9PB7LdyXKiqryrqtIzOee/i7TgEcsfdRuPb/ /l/f9R//8R/PW+5wpfzW0kq5+Se11ELnm3r//vl9fe50/jz/jPLn755//fn15D/fBr5GvsbfX5T9 5/Odn+d//MKb/vx8/OvPr3f+vgn1z4X+/MXfLhi9c+Cb9ech/1woht/Pnz//fbXw+6aXf3qdP/9+ MzR/lMfvr/763+llMVbmejFcYccn3ufP8LtT5Clii52vlT/5PviTwPc5Jv6MMf/n9bvO09R/v4B/ /+4v63fPPz+P/1iO67eyfz5Q/rJOf35+NuTfrN9ZpX9+oif8/c7hn5+o9xTvf/7nn9fvW/X79u/t eioXy1X+vNTfXuV8xwdZ0nOhypOV++XfzPfv+V/jf/Xu92TXFq86rnvwH+0JrPj3pGc9/fmefb7O Z/KIKezw8jWEGeL5WY1vaGGeTUn+7/nCe7E/i90JcbJzkR+Hvz/Lc+7bvB83q9x5PXwyPFzMXfyX /11//cH/6//+5ULfp5g/z11/64RY8FxB+eIx3Dn/5FNsyPP9WdN81ve5fl/uv/7jxkZ2MJ9lrrxg v8fvEiM//5CtePY53vnio+n+6cvzrj8XYIm4d+ZhnsgO3OWJ+SnP/YbwPg/rWNmfzpOHmMJgB558 5bB4ypBiLGxODd6b33mf89mQw+/HmBc2IscSX7YGBWKzUsqpoG8VEepXjjnlnEt+c80t9xJLKrmU 8hbtVH/jm978lvd969veXmNNNddS31prq72FFjFj+Wqlva221nrnpj11rtX5fOcHI4w40sijjHfU 0UafiM9MM88y31lnm32FFRcm4Fplvauutvp+NqK008677HfX3Xb/kLUvfunLX/ner37t63/fteeP 2v7Lrv115/77XXv+7Fo4G+Xn3n/sGj9+379d4tGcZPeMHQvpYcdfdwCBDu7ZXZ+Ugjvnnt0txAsr FXjK7Oasxx1jB9N+Qv6ev+/dP3buv9y3i9X9v9238O927nLr/n/s3OXW/dPO/ed9+ze7tvoxt/Fs kFrImmIhI+rHh3qo/B9N/S+/tqc1djE3Xu7LKEueY/fFWn7zuVYPvNZ41w7sQGb9MUAFG8cn22CP 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 7XLGeZtZGuiV1R9Idjg5NI9LAH/0czJQA7SA0YOIGEjkhAwLvaptweMU8P1qrU3b6IXMZj3Oyu/t mLAECbNeD/gb4d0BE/Gk2R+7XuIjpqvPkR5U5Rx+hdf+22nb19+++a+/OlQwOWgCe1z63ayhD54J 6WHXaElthtKvbTxvA86kaPcfqvb3ryX9iLwJeQMKTt0NfBhUCktkIRdQ2WmdH1R0Jfu1PYskx2HV cfGIBI9g3slZSzM/1iJ5unQ8R4Y/5+h5pwYgj88ZbTXS1fOZmGhm7ValjdDJm1br//YZ//oVXW/X /wHA2NdPPhNOwQAAAGV6VFh0UmF3IHByb2ZpbGUgdHlwZSBpcHRjAAB42j1KMQ6AMBDa7xU+oQWq 7XOa6uDm4P8juUFIDjiI+3lXbAntwS5o6CwyfwB1FfCwnQQLKwdOa/e1z3a5vZzAyRaUhWw5yBcV H/i5F3PTe5fRAAABhGlDQ1BJQ0MgcHJvZmlsZQAAeJx9kT1Iw0AcxV9bxVIqDu0gxSFDdbLgF+Ko VShChVArtOpgcukXNGlIUlwcBdeCgx+LVQcXZ10dXAVB8APExdVJ0UVK/F9SaBHjwXE/3t173L0D /M0qU82eMUDVLCOTSgq5/KrQ94ogIghhHDGJmfqcKKbhOb7u4ePrXYJneZ/7c/QrBZMBPoF4lumG RbxBPL1p6Zz3iaOsLCnE58SjBl2Q+JHrsstvnEsO+3lm1Mhm5omjxEKpi+UuZmVDJZ4ijiuqRvn+ nMsK5y3OarXO2vfkLwwXtJVlrtMcQgqLWIIIATLqqKAKCwlaNVJMZGg/6eGPOX6RXDK5KmDkWEAN KiTHD/4Hv7s1i5MTblI4CfS+2PbHMNC3C7Qatv19bNutEyDwDFxpHX+tCcx8kt7oaPEjYGAbuLju aPIecLkDDD7pkiE5UoCmv1gE3s/om/JA5BYIrbm9tfdx+gBkqav0DXBwCIyUKHvd493B7t7+PdPu 7wd/hHKsc64yTQAAD0RpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i 77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+Cjx4OnhtcG1ldGEgeG1sbnM6eD0i YWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IlhNUCBDb3JlIDQuNC4wLUV4aXYyIj4KIDxyZGY6UkRG IHhtbG5zOnJkZj0iaHR0cDovL3d3dy53My5vcmcvMTk5OS8wMi8yMi1yZGYtc3ludGF4LW5zIyI+ CiAgPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIKICAgIHhtbG5zOmlwdGNFeHQ9Imh0dHA6 Ly9pcHRjLm9yZy9zdGQvSXB0YzR4bXBFeHQvMjAwOC0wMi0yOS8iCiAgICB4bWxuczp4bXBNTT0i aHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIKICAgIHhtbG5zOnN0RXZ0PSJodHRwOi8v bnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VFdmVudCMiCiAgICB4bWxuczpwbHVz PSJodHRwOi8vbnMudXNlcGx1cy5vcmcvbGRmL3htcC8xLjAvIgogICAgeG1sbnM6R0lNUD0iaHR0 cDovL3d3dy5naW1wLm9yZy94bXAvIgogICAgeG1sbnM6ZGM9Imh0dHA6Ly9wdXJsLm9yZy9kYy9l bGVtZW50cy8xLjEvIgogICAgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAv IgogICB4bXBNTTpEb2N1bWVudElEPSJnaW1wOmRvY2lkOmdpbXA6MjcxOTBlNDctOGI0YS00YzNl LThhNzAtMTRjNmE3Yjg1NzM5IgogICB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOmYxMmNlY2Iw LTJiOGItNDAxZi1hNTVlLTllYmU1NmRlNzQxYiIKICAgeG1wTU06T3JpZ2luYWxEb2N1bWVudElE PSJ4bXAuZGlkOmE5ZjQzNzg3LWJkNmEtNDhmOC05YTk5LTVkMGM3NzU2YjRlNCIKICAgR0lNUDpB UEk9IjIuMCIKICAgR0lNUDpQbGF0Zm9ybT0iTGludXgiCiAgIEdJTVA6VGltZVN0YW1wPSIxNTY2 MjEyMDgzMjM2MzE0IgogICBHSU1QOlZlcnNpb249IjIuMTAuMTIiCiAgIGRjOkZvcm1hdD0iaW1h Z2UvcG5nIgogICB4bXA6Q3JlYXRvclRvb2w9IkdJTVAgMi4xMCI+CiAgIDxpcHRjRXh0OkxvY2F0 aW9uQ3JlYXRlZD4KICAgIDxyZGY6QmFnLz4KICAgPC9pcHRjRXh0OkxvY2F0aW9uQ3JlYXRlZD4K ICAgPGlwdGNFeHQ6TG9jYXRpb25TaG93bj4KICAgIDxyZGY6QmFnLz4KICAgPC9pcHRjRXh0Okxv Y2F0aW9uU2hvd24+CiAgIDxpcHRjRXh0OkFydHdvcmtPck9iamVjdD4KICAgIDxyZGY6QmFnLz4K ICAgPC9pcHRjRXh0OkFydHdvcmtPck9iamVjdD4KICAgPGlwdGNFeHQ6UmVnaXN0cnlJZD4KICAg IDxyZGY6QmFnLz4KICAgPC9pcHRjRXh0OlJlZ2lzdHJ5SWQ+CiAgIDx4bXBNTTpIaXN0b3J5Pgog ICAgPHJkZjpTZXE+CiAgICAgPHJkZjpsaQogICAgICBzdEV2dDphY3Rpb249InNhdmVkIgogICAg ICBzdEV2dDpjaGFuZ2VkPSIvIgogICAgICBzdEV2dDppbnN0YW5jZUlEPSJ4bXAuaWlkOjQ0MDkx YWEwLWI1YmQtNGQxZC04M2JjLTYxZTA2OGVmYmVmZCIKICAgICAgc3RFdnQ6c29mdHdhcmVBZ2Vu dD0iR2ltcCAyLjEwIChMaW51eCkiCiAgICAgIHN0RXZ0OndoZW49IiswMjowMCIvPgogICAgPC9y ZGY6U2VxPgogICA8L3htcE1NOkhpc3Rvcnk+CiAgIDxwbHVzOkltYWdlU3VwcGxpZXI+CiAgICA8 cmRmOlNlcS8+CiAgIDwvcGx1czpJbWFnZVN1cHBsaWVyPgogICA8cGx1czpJbWFnZUNyZWF0b3I+ CiAgICA8cmRmOlNlcS8+CiAgIDwvcGx1czpJbWFnZUNyZWF0b3I+CiAgIDxwbHVzOkNvcHlyaWdo dE93bmVyPgogICAgPHJkZjpTZXEvPgogICA8L3BsdXM6Q29weXJpZ2h0T3duZXI+CiAgIDxwbHVz OkxpY2Vuc29yPgogICAgPHJkZjpTZXEvPgogICA8L3BsdXM6TGljZW5zb3I+CiAgPC9yZGY6RGVz Y3JpcHRpb24+CiA8L3JkZjpSREY+CjwveDp4bXBtZXRhPgogICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg CiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgCiAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAKICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgIAogICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg ICAgICAgICAgICAgICAgCiAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAg 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 AAAASUVORK5CYII= "
-           id="image107"
-           x="71.575844"
-           y="92.836548" />
-      </g>
-      <g
-         transform="translate(2.0788687,-1.7953939)"
-         id="g6914">
-        <g
-           id="g6465"
-           transform="translate(-7.4650298,9.6383928)">
-          <g
-             transform="matrix(0.35330138,0,0,0.35330138,69.558021,69.015952)"
-             id="g4037-0">
-            <g
-               id="g4004-7">
-              <rect
-                 ry="2.2678571"
-                 y="59.645218"
-                 x="76.020462"
-                 height="45.82962"
-                 width="67.752228"
-                 id="rect3911-8"
-                 style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-              <g
-                 transform="translate(-2.9293155,-37.136161)"
-                 id="g3985-6">
-                <path
-                   style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-                   d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
-                   id="rect3911-3-8"
-                   inkscape:connector-curvature="0" />
-                <text
-                   xml:space="preserve"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                   x="80.92469"
-                   y="103.85416"
-                   id="text3915-8"><tspan
-                     sodipodi:role="line"
-                     id="tspan3913-4"
-                     x="80.92469"
-                     y="103.85416"
-                     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
-              </g>
-            </g>
-            <g
-               id="g4017-3"
-               transform="translate(0.52916667,0.52916667)">
-              <text
-                 id="text3919-1"
-                 y="53.205353"
-                 x="77.579605"
-                 style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   id="tspan3921-4"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="62.569122"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3925-9"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="75.798286"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3927-2"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="89.027458"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3929-0"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="102.25662"
-                   x="77.579605"
-                   sodipodi:role="line">- UltraSound-Data</tspan></text>
-              <text
-                 id="text3933-6"
-                 y="93.469177"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="93.469177"
-                   x="77.579605"
-                   id="tspan3931-8"
-                   sodipodi:role="line">- Images</tspan></text>
-              <text
-                 id="text3937-9"
-                 y="76.545387"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="76.545387"
-                   x="77.579605"
-                   id="tspan3935-2"
-                   sodipodi:role="line">- Labnotes</tspan></text>
-              <text
-                 id="text3941-6"
-                 y="84.898758"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="84.898758"
-                   x="77.579605"
-                   id="tspan3939-6"
-                   sodipodi:role="line">- MRI-Data</tspan></text>
-            </g>
-          </g>
-          <g
-             transform="matrix(0.35330138,0,0,0.35330138,71.08423,73.601556)"
-             id="g4037-4">
-            <g
-               id="g4004-9">
-              <rect
-                 ry="2.2678571"
-                 y="59.645218"
-                 x="76.020462"
-                 height="45.82962"
-                 width="67.752228"
-                 id="rect3911-5"
-                 style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-              <g
-                 transform="translate(-2.9293155,-37.136161)"
-                 id="g3985-0">
-                <path
-                   style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-                   d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
-                   id="rect3911-3-4"
-                   inkscape:connector-curvature="0" />
-                <text
-                   xml:space="preserve"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                   x="80.92469"
-                   y="103.85416"
-                   id="text3915-87"><tspan
-                     sodipodi:role="line"
-                     id="tspan3913-1"
-                     x="80.92469"
-                     y="103.85416"
-                     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
-              </g>
-            </g>
-            <g
-               id="g4017-7"
-               transform="translate(0.52916667,0.52916667)">
-              <text
-                 id="text3919-2"
-                 y="53.205353"
-                 x="77.579605"
-                 style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   id="tspan3921-7"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="62.569122"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3925-2"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="75.798286"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3927-26"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="89.027458"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3929-1"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="102.25662"
-                   x="77.579605"
-                   sodipodi:role="line">- UltraSound-Data</tspan></text>
-              <text
-                 id="text3933-0"
-                 y="93.469177"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="93.469177"
-                   x="77.579605"
-                   id="tspan3931-6"
-                   sodipodi:role="line">- Images</tspan></text>
-              <text
-                 id="text3937-1"
-                 y="76.545387"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="76.545387"
-                   x="77.579605"
-                   id="tspan3935-5"
-                   sodipodi:role="line">- Labnotes</tspan></text>
-              <text
-                 id="text3941-9"
-                 y="84.898758"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="84.898758"
-                   x="77.579605"
-                   id="tspan3939-4"
-                   sodipodi:role="line">- MRI-Data</tspan></text>
-            </g>
-          </g>
-          <g
-             transform="matrix(0.35330138,0,0,0.35330138,72.610431,78.187176)"
-             id="g4037-9">
-            <g
-               id="g4004-0">
-              <rect
-                 ry="2.2678571"
-                 y="59.645218"
-                 x="76.020462"
-                 height="45.82962"
-                 width="67.752228"
-                 id="rect3911-9"
-                 style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-              <g
-                 transform="translate(-2.9293155,-37.136161)"
-                 id="g3985-1">
-                <path
-                   style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-                   d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
-                   id="rect3911-3-7"
-                   inkscape:connector-curvature="0" />
-                <text
-                   xml:space="preserve"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                   x="80.92469"
-                   y="103.85416"
-                   id="text3915-7"><tspan
-                     sodipodi:role="line"
-                     id="tspan3913-11"
-                     x="80.92469"
-                     y="103.85416"
-                     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
-              </g>
-            </g>
-            <g
-               id="g4017-5"
-               transform="translate(0.52916667,0.52916667)">
-              <text
-                 id="text3919-9"
-                 y="53.205353"
-                 x="77.579605"
-                 style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   id="tspan3921-77"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="62.569122"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3925-6"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="75.798286"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3927-7"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="89.027458"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3929-3"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="102.25662"
-                   x="77.579605"
-                   sodipodi:role="line">- UltraSound-Data</tspan></text>
-              <text
-                 id="text3933-65"
-                 y="93.469177"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="93.469177"
-                   x="77.579605"
-                   id="tspan3931-63"
-                   sodipodi:role="line">- Images</tspan></text>
-              <text
-                 id="text3937-94"
-                 y="76.545387"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="76.545387"
-                   x="77.579605"
-                   id="tspan3935-8"
-                   sodipodi:role="line">- Labnotes</tspan></text>
-              <text
-                 id="text3941-1"
-                 y="84.898758"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="84.898758"
-                   x="77.579605"
-                   id="tspan3939-2"
-                   sodipodi:role="line">- MRI-Data</tspan></text>
-            </g>
-          </g>
-          <g
-             transform="matrix(0.35330138,0,0,0.35330138,74.136641,82.772773)"
-             id="g4037-93">
-            <g
-               id="g4004-90">
-              <rect
-                 ry="2.2678571"
-                 y="59.645218"
-                 x="76.020462"
-                 height="45.82962"
-                 width="67.752228"
-                 id="rect3911-88"
-                 style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
-              <g
-                 transform="translate(-2.9293155,-37.136161)"
-                 id="g3985-5">
-                <path
-                   style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-                   d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
-                   id="rect3911-3-0"
-                   inkscape:connector-curvature="0" />
-                <text
-                   xml:space="preserve"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                   x="80.92469"
-                   y="103.85416"
-                   id="text3915-9"><tspan
-                     sodipodi:role="line"
-                     id="tspan3913-6"
-                     x="80.92469"
-                     y="103.85416"
-                     style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
-              </g>
-            </g>
-            <g
-               id="g4017-38"
-               transform="translate(0.52916667,0.52916667)">
-              <text
-                 id="text3919-5"
-                 y="53.205353"
-                 x="77.579605"
-                 style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   id="tspan3921-6"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="62.569122"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3925-1"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="75.798286"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3927-1"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="89.027458"
-                   x="77.579605"
-                   sodipodi:role="line" /><tspan
-                   id="tspan3929-5"
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="102.25662"
-                   x="77.579605"
-                   sodipodi:role="line">- UltraSound-Data</tspan></text>
-              <text
-                 id="text3933-9"
-                 y="93.469177"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="93.469177"
-                   x="77.579605"
-                   id="tspan3931-84"
-                   sodipodi:role="line">- Images</tspan></text>
-              <text
-                 id="text3937-8"
-                 y="76.545387"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="76.545387"
-                   x="77.579605"
-                   id="tspan3935-1"
-                   sodipodi:role="line">- Labnotes</tspan></text>
-              <text
-                 id="text3941-0"
-                 y="84.898758"
-                 x="77.579605"
-                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-                 xml:space="preserve"><tspan
-                   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
-                   y="84.898758"
-                   x="77.579605"
-                   id="tspan3939-3"
-                   sodipodi:role="line">- MRI-Data</tspan></text>
-            </g>
-          </g>
-        </g>
-        <rect
-           style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           id="rect6467"
-           width="38.742558"
-           height="39.876492"
-           x="85.328133"
-           y="92.420387"
-           ry="2.2678576" />
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="87.065102"
-           y="97.145081"
-           id="text6475"><tspan
-             sodipodi:role="line"
-             id="tspan6473"
-             x="87.065102"
-             y="97.145081"
-             style="font-size:3.88055563px;stroke-width:0.26458332">LinkAhead-Server</tspan></text>
-      </g>
-      <g
-         transform="translate(0.94494045,0.47247028)"
-         id="g6920">
-        <image
-           width="20.404667"
-           height="25.484667"
-           preserveAspectRatio="none"
-           xlink:href="data:image/png;base64,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 "
-           id="image168"
-           x="23.261316"
-           y="102.83188" />
-        <rect
-           style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           id="rect6467-0"
-           width="30.049107"
-           height="34.868301"
-           x="20.599703"
-           y="95.160713"
-           ry="2.2678576" />
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="22.478413"
-           y="99.914688"
-           id="text6475-4"><tspan
-             sodipodi:role="line"
-             id="tspan6473-4"
-             x="22.478413"
-             y="99.914688"
-             style="font-size:3.88055563px;stroke-width:0.26458332">File Structure</tspan></text>
-      </g>
-      <g
-         transform="translate(10.583333,-1.4174107)"
-         id="g6964">
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="23.816044"
-           y="88.735115"
-           id="text6946"><tspan
-             sodipodi:role="line"
-             x="23.816044"
-             y="88.735115"
-             style="font-size:2.82222223px;stroke-width:0.26458332"
-             id="tspan6952">generate </tspan></text>
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="23.906994"
-           y="91.853416"
-           id="text6958"><tspan
-             sodipodi:role="line"
-             id="tspan6956"
-             x="23.906994"
-             y="91.853416"
-             style="font-size:2.82222223px;stroke-width:0.26458332">finger print</tspan></text>
-      </g>
-      <g
-         transform="matrix(0.7714085,0,0,-0.7714085,42.833541,181.05818)"
-         id="g6192-7">
-        <path
-           style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
-           d="m 38.954532,99.020097 c 0,0 2.605879,-5.011304 11.158503,-4.944488"
-           id="path4039-6"
-           inkscape:connector-curvature="0" />
-        <path
-           style="fill:none;stroke:#000000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-4)"
-           d="m 51.299044,94.610148 c 3.674956,-0.46772 3.95893,-0.467721 3.95893,-0.467721"
-           id="path5160-3"
-           inkscape:connector-curvature="0"
-           sodipodi:nodetypes="cc" />
-      </g>
-      <g
-         transform="translate(2.1733631,1.5119048)"
-         id="g7062">
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="61.382511"
-           y="111.59126"
-           id="text6946-7"><tspan
-             sodipodi:role="line"
-             x="61.382511"
-             y="111.59126"
-             style="font-size:2.82222223px;stroke-width:0.26458332"
-             id="tspan6952-5">insert or update</tspan></text>
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="61.392159"
-           y="114.60262"
-           id="text6958-9"><tspan
-             sodipodi:role="line"
-             id="tspan6956-6"
-             x="61.392159"
-             y="114.60262"
-             style="font-size:2.82222223px;stroke-width:0.26458332">based on finger</tspan></text>
-        <text
-           xml:space="preserve"
-           style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
-           x="61.360119"
-           y="117.7113"
-           id="text7054"><tspan
-             sodipodi:role="line"
-             id="tspan7052"
-             x="61.360119"
-             y="117.7113"
-             style="font-size:3.17499995px;stroke-width:0.26458332">print</tspan></text>
-      </g>
-    </g>
-  </g>
-</svg>
diff --git a/integrationtests/test.sh b/integrationtests/test.sh
index f5f0a2db7f481d248caa500709d3ac617139e0cb..d0be35a35741e7c08064018616f6a0cce624210a 100755
--- a/integrationtests/test.sh
+++ b/integrationtests/test.sh
@@ -1,6 +1,7 @@
 #!/bin/bash
 OUT=/tmp/crawler.output
 ls 
+cat pycaosdb.ini
 rm -rf cache.db
 echo "Clearing database"
 python3 clear_database.py
diff --git a/setup.py b/setup.py
index 8b31cfb3a8893155e942ec66a8531b1cee2471ee..8902af8c2f03b4e5972beeb85fbf4cc05d66d730 100755
--- a/setup.py
+++ b/setup.py
@@ -156,7 +156,7 @@ def setup_package():
         author_email='h.tomwoerden@indiscale.com',
         install_requires=["caosdb>=0.4.0",
                           "openpyxl>=3.0.0",
-                          "xlrd>=1.2.0",
+                          "xlrd==1.2.0",
                           ],
         packages=find_packages('src'),
         package_dir={'': 'src'},
diff --git a/src/caosadvancedtools/crawler.py b/src/caosadvancedtools/crawler.py
index 2877cce58bd3549eaa4ca0b60ab7833fb31b5ab6..b676f708567e39226e53c69b066da7210f2ff34b 100644
--- a/src/caosadvancedtools/crawler.py
+++ b/src/caosadvancedtools/crawler.py
@@ -216,10 +216,36 @@ class Crawler(object):
                         errors_occured = True
                         tbs.append(e)
 
+        logger.debug(separated("Number of Cfoods: "+str(len(cfoods))))
         logger.debug(separated("CFoods are collecting information..."))
 
+        remove_cfoods = []
+
         for cfood in cfoods:
-            cfood.collect_information()
+            try:
+                cfood.collect_information()
+            except DataInconsistencyError as e:
+                logger.debug(traceback.format_exc())
+                logger.debug(e)
+                remove_cfoods.append(cfood)
+            except Exception as e:
+                try:
+                    DataModelProblems.evaluate_exception(e)
+                except BaseException:
+                    pass
+                logger.debug("Failed during execution of {}!".format(
+                    Cfood.__name__))
+                logger.debug(traceback.format_exc())
+                logger.debug(e)
+                remove_cfoods.append(cfood)
+
+                if self.abort_on_exception:
+                    raise e
+
+        for rm in remove_cfoods:
+            cfoods.remove(rm)
+            logger.debug("Removed {} due to an Error in "
+                         "collect_information".format(str(rm)))
 
         logger.debug(
             separated("Trying to attach further items to created CFoods"))
@@ -258,7 +284,7 @@ class Crawler(object):
                 logger.debug(msg, extra={"identifier": str(item),
                                          'category': "matches"})
 
-    def cached_find_identifiables(self, identifiables):
+    def _cached_find_or_insert_identifiables(self, identifiables):
         if self.use_cache:
             hashes = self.cache.update_ids_from_cache(identifiables)
 
@@ -284,7 +310,7 @@ class Crawler(object):
             try:
                 cfood.create_identifiables()
 
-                self.cached_find_identifiables(cfood.identifiables)
+                self._cached_find_or_insert_identifiables(cfood.identifiables)
 
                 cfood.update_identifiables()
                 self.push_identifiables_to_CaosDB(cfood)
@@ -378,6 +404,7 @@ ____________________\n""".format(i+1, len(pending_changes)) + str(el[3]))
   <link rel="stylesheet" href="{url}/webinterface/css/webcaosdb.css"/>
   <link rel="stylesheet" href="{url}/webinterface/css/bootstrap.css">
   <script src="{url}/webinterface/js/jquery.js"></script>
+  <script src="{url}/webinterface/js/utif.js"></script>
   <script src="{url}/webinterface/js/loglevel.js"></script>
   <script src="{url}/webinterface/js/bootstrap.js"></script>
   <script src="{url}/webinterface/js/webcaosdb.js"></script>
diff --git a/src/doc/Makefile b/src/doc/Makefile
new file mode 100644
index 0000000000000000000000000000000000000000..d28503eb0e883e6c879898c12dac07f91bd2df68
--- /dev/null
+++ b/src/doc/Makefile
@@ -0,0 +1,48 @@
+# ** header v3.0
+# This file is a part of the CaosDB Project.
+#
+# Copyright (C) 2020 IndiScale GmbH <info@indiscale.com>
+# Copyright (C) 2020 Daniel Hornung <d.hornung@indiscale.com>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU Affero General Public License as
+# published by the Free Software Foundation, either version 3 of the
+# License, or (at your option) any later version.
+#
+# This program 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 Affero General Public License for more details.
+#
+# You should have received a copy of the GNU Affero General Public License
+# along with this program. If not, see <https://www.gnu.org/licenses/>.
+#
+# ** end header
+
+# This Makefile is a wrapper for sphinx scripts.
+#
+# It is based upon the autocreated makefile for Sphinx documentation.
+
+# You can set these variables from the command line, and also
+# from the environment for the first two.
+SPHINXOPTS    ?= -a
+SPHINXBUILD   ?= sphinx-build
+SPHINXAPIDOC   ?= sphinx-apidoc
+PY_BASEDIR    = ../caosadvancedtools
+SOURCEDIR     = .
+BUILDDIR      = ../../build/doc
+
+
+.PHONY: doc-help Makefile
+
+# Put it first so that "make" without argument is like "make help".
+doc-help:
+	@$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+# Catch-all target: route all unknown targets to Sphinx using the new
+# "make mode" option.  $(O) is meant as a shortcut for $(SPHINXOPTS).
+%: Makefile apidoc
+	@$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O)
+
+apidoc:
+	@$(SPHINXAPIDOC) -o _apidoc $(PY_BASEDIR)
diff --git a/src/doc/concepts.rst b/src/doc/concepts.rst
new file mode 100644
index 0000000000000000000000000000000000000000..23e5fc4f6ddb666757fb9c79e192e07ffed8fb44
--- /dev/null
+++ b/src/doc/concepts.rst
@@ -0,0 +1,6 @@
+========================
+The concepts of pycaosdb
+========================
+
+Some text...
+
diff --git a/src/doc/conf.py b/src/doc/conf.py
new file mode 100644
index 0000000000000000000000000000000000000000..29b790d4d445f2f9c155a0858b00a1a289e0ec4e
--- /dev/null
+++ b/src/doc/conf.py
@@ -0,0 +1,196 @@
+# -*- coding: utf-8 -*-
+#
+# Configuration file for the Sphinx documentation builder.
+#
+# This file only contains a selection of the most common options. For a full
+# list see the documentation:
+# https://www.sphinx-doc.org/en/master/usage/configuration.html
+
+# -- Path setup --------------------------------------------------------------
+
+# If extensions (or modules to document with autodoc) are in another directory,
+# add these directories to sys.path here. If the directory is relative to the
+# documentation root, use os.path.abspath to make it absolute, like shown here.
+#
+# import os
+# import sys
+# sys.path.insert(0, os.path.abspath('../caosdb'))
+
+
+# -- Project information -----------------------------------------------------
+
+import sphinx_rtd_theme
+
+project = 'caosadvancedtools'
+copyright = '2020, IndiScale GmbH'
+author = 'Daniel Hornung'
+
+# The short X.Y version
+version = '0.X.Y'
+# The full version, including alpha/beta/rc tags
+release = '0.x.y-beta-rc2'
+
+
+# -- General configuration ---------------------------------------------------
+
+# If your documentation needs a minimal Sphinx version, state it here.
+#
+# needs_sphinx = '1.0'
+
+# Add any Sphinx extension module names here, as strings. They can be
+# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom
+# ones.
+extensions = [
+    'sphinx.ext.autodoc',
+    'sphinx.ext.intersphinx',
+    'sphinx.ext.napoleon',     # For Google style docstrings
+    "recommonmark",            # For markdown files.
+    'sphinx_rtd_theme'
+]
+
+# Add any paths that contain templates here, relative to this directory.
+templates_path = ['_templates']
+
+# The suffix(es) of source filenames.
+# You can specify multiple suffix as a list of string:
+source_suffix = ['.rst', '.md']
+
+# The master toctree document.
+master_doc = 'index'
+
+# The language for content autogenerated by Sphinx. Refer to documentation
+# for a list of supported languages.
+#
+# This is also used if you do content translation via gettext catalogs.
+# Usually you set "language" from the command line for these cases.
+language = None
+
+# List of patterns, relative to source directory, that match files and
+# directories to ignore when looking for source files.
+# This pattern also affects html_static_path and html_extra_path.
+exclude_patterns = []
+
+# The name of the Pygments (syntax highlighting) style to use.
+pygments_style = None
+
+
+# -- Options for HTML output -------------------------------------------------
+
+# The theme to use for HTML and HTML Help pages.  See the documentation for
+# a list of builtin themes.
+#
+
+html_theme = "sphinx_rtd_theme"
+
+# Theme options are theme-specific and customize the look and feel of a theme
+# further.  For a list of options available for each theme, see the
+# documentation.
+#
+# html_theme_options = {}
+
+# Add any paths that contain custom static files (such as style sheets) here,
+# relative to this directory. They are copied after the builtin static files,
+# so a file named "default.css" will overwrite the builtin "default.css".
+html_static_path = ['_static']
+
+# Custom sidebar templates, must be a dictionary that maps document names
+# to template names.
+#
+# The default sidebars (for documents that don't match any pattern) are
+# defined by theme itself.  Builtin themes are using these templates by
+# default: ``['localtoc.html', 'relations.html', 'sourcelink.html',
+# 'searchbox.html']``.
+#
+# html_sidebars = {}
+
+
+# -- Options for HTMLHelp output ---------------------------------------------
+
+# Output file base name for HTML help builder.
+htmlhelp_basename = 'caosadvancedtoolsdoc'
+
+
+# -- Options for LaTeX output ------------------------------------------------
+
+latex_elements = {
+    # The paper size ('letterpaper' or 'a4paper').
+    #
+    # 'papersize': 'letterpaper',
+
+    # The font size ('10pt', '11pt' or '12pt').
+    #
+    # 'pointsize': '10pt',
+
+    # Additional stuff for the LaTeX preamble.
+    #
+    # 'preamble': '',
+
+    # Latex figure (float) alignment
+    #
+    # 'figure_align': 'htbp',
+}
+
+# Grouping the document tree into LaTeX files. List of tuples
+# (source start file, target name, title,
+#  author, documentclass [howto, manual, or own class]).
+latex_documents = [
+    (master_doc, 'caosadvancedtools.tex', 'caosadvancedtools Documentation',
+     'IndiScale GmbH', 'manual'),
+]
+
+
+# -- Options for manual page output ------------------------------------------
+
+# One entry per manual page. List of tuples
+# (source start file, name, description, authors, manual section).
+man_pages = [
+    (master_doc, 'caosadvancedtools', 'caosadvancedtools Documentation',
+     [author], 1)
+]
+
+
+# -- Options for Texinfo output ----------------------------------------------
+
+# Grouping the document tree into Texinfo files. List of tuples
+# (source start file, target name, title, author,
+#  dir menu entry, description, category)
+texinfo_documents = [
+    (master_doc, 'caosadvancedtools', 'caosadvancedtools Documentation',
+     author, 'caosadvancedtools ', 'One line description of project.',
+     'Miscellaneous'),
+]
+
+
+# -- Options for Epub output -------------------------------------------------
+
+# Bibliographic Dublin Core info.
+epub_title = project
+
+# The unique identifier of the text. This can be a ISBN number
+# or the project homepage.
+#
+# epub_identifier = ''
+
+# A unique identification for the text.
+#
+# epub_uid = ''
+
+# A list of files that should not be packed into the epub file.
+epub_exclude_files = ['search.html']
+
+
+# -- Extension configuration -------------------------------------------------
+
+# -- Options for intersphinx extension ---------------------------------------
+
+# Example configuration for intersphinx: refer to the Python standard library.
+intersphinx_mapping = {
+    'https://docs.python.org/': None,
+    "caosdb-pylib": ("https://caosdb.gitlab.io/caosdb-pylib/", None),
+}
+
+# TODO Which options do we want?
+autodoc_default_options = {
+    'members': None,
+    'undoc-members': None,
+}
diff --git a/src/doc/crawler.rst b/src/doc/crawler.rst
new file mode 100644
index 0000000000000000000000000000000000000000..2380cdbdbe44989855adb42afd391467502b5809
--- /dev/null
+++ b/src/doc/crawler.rst
@@ -0,0 +1,398 @@
+==============
+CaosDB Crawler
+==============
+
+The `CaosDB
+crawler <https://gitlab.com/caosdb/caosdb-advanced-user-tools/blob/master/src/caosadvancedtools/crawler.py>`__
+is a tool for the automated insertion or update of entities in CaosDB.
+Typically, a file structure is crawled, but other things can be crawled as well.
+For example tables or HDF5 files.
+
+
+Introduction
+============
+
+In simple terms, the crawler is a program that scans a directory
+structure, identifies files that will be treated, and generates
+corresponding Entities in CaosDB, possibly filling meta data. During
+this process the crawler can also open files and derive content from
+within, for example reading CSV tables and processing individual rows of
+these tables.
+
+.. image:: images/crawler_fingerprint.*
+
+As shown in the figure, the general principle of the crawler framework
+is the following:
+
+- The crawler walks through the file structure and matches file names (using regular expressions).
+- For each the matched file, finger prints (so called ``Identifiables``) are created.
+- Then the crawler checks if the Records corresponding to the ``Identifiables`` exist already and if
+  they are up-to-date. If not, the Records are created or updated according to the file contents.
+
+
+Technically, this behaviour can be adjusted to your needs using so
+called CFood (pun intended! :-)) Python classes. More details on the
+different components of the CaosDB Crawler can be found in the
+`developers’ information <#extending-the-crawlers>`__ below.
+
+In case you are happy with our suggestion of a standard crawler, feel
+free to use the standard crawler. The standard crawler lives in this git
+repository maintained by Henrik tom Wörden:
+https://gitlab.com/henrik_indiscale/scifolder
+
+Usage
+=====
+
+Typically, you can invoke the crawler in two ways: via the web interface
+and directly as a Python script.
+
+In both cases, if the crawler has a problem with some file (e.g. columns
+in a table (tsv, xls, …) are named incorrectly), the problem will be
+indicated by a warning that is returned. You can fix the problem and run
+the crawler again. This does not cause any problems, since the crawler
+can recognize what has already been processed (see the description of
+finger prints in the `Introduction <#Introduction>`__).
+
+.. warning:: Pay attention when you change a property that is used for the finger print: The crawler
+    will not be able to identify a previous version with the changed one since the finger print is
+    different. This often means that entities in the data base need to be changed or removed. As a
+    rule of thumb, you should be pretty sure that properties that are used as finger prints will not
+    change after the crawler has run for the first time. This prevents complications.
+
+Invocation from the Web Interface
+---------------------------------
+
+If enabled, the crawler can be called using a menu entry in the web
+interface. This will open a form where the path of the directory that
+shall be crawled needs to be given. After the execution information
+about what was done and which problems might exist is printed in the web
+interface. Note that some changes might be pending authorization (if
+indicated in the messages).
+
+Invocation as Python Script
+---------------------------
+
+The crawler can be executed directly via a python script (usually called
+``crawl.py``). The script prints the progress and reports potential
+problems. The exact behavior depends on your setup. However, you can
+have a look at the example in the
+`tests <https://gitlab.com/caosdb/caosdb-advanced-user-tools/-/blob/master/integrationtests/full_test/crawl.py>`__.
+
+.. Note:: The crawler depends on the CaosDB Python client, so make sure to install :doc:`pycaosdb
+          <caosdb-pylib:getting_started>`.
+
+
+Call ``python3 crawl.py --help`` to see what parameters can be provided.
+Typically, an invocation looks like:
+
+.. code:: python
+
+   python3 crawl.py "/TestData/"
+
+In this case ``/TestData/`` identifies the path to be crawled **within
+the CaosDB file system**. You can browse the CaosDB file system by
+opening the WebUI of your CaosDB instance and clicking on “File System”.
+
+In the backend, ``crawl.py`` starts a CQL query
+``FIND File WHICH IS STORED AT /TestData/**`` and crawls the resulting
+files according to your customized ``CFoods``.
+
+Crawling may consist of two distinct steps: 1. Insertion of files (use
+function ``loadFiles``) 2. The actual crawling (use program
+``crawl.py``) However, the first step may be included in ``crawl.py``.
+Otherwise, you can only crawl files that were previously inserted by
+``loadFiles``.
+
+loadFiles
+~~~~~~~~~
+
+After installation of the ``caosadvancedtools`` you can simply call the
+function ``loadFiles`` contained in the package:
+
+::
+
+   python3 -m caosadvancedtools.loadFiles  /opt/caosdb/mnt/extroot
+
+``/opt/caosdb/mnt/extroot`` is the root of the file system to be crawled
+as seen by the CaosDB server (The actual path may vary. This is the used
+in the LinkAhead distribution of CaosDB). In this case the root file
+system as seen from within the CaosDB docker process is used.
+
+Extending the Crawlers
+======================
+
+In most use cases the crawler needs to be tailored to the specific
+needs. This section explains how this can be done.
+
+The behavior and rules of the crawler are defined in logical units
+called CFoods. In order to extend the crawler you need to extend an
+existing CFood or create new one.
+
+.. _c-food-introduction:
+
+CFood -- Introduction
+----------------------
+
+A ``CFood`` is a Python class that inherits from the abstract base
+class :py:class:`~caosadvancedtools.cfood.AbstractCFood`.
+It should be independent of other data and define the following methods:
+
+1. :py:meth:`~caosadvancedtools.cfood.AbstractFileCFood.get_re`
+
+     This *static* method is required for classes which inherit from
+     :py:class:`~caosadvancedtools.cfood.AbstractFileCFood`.  It returns a regular expression to
+     identify files that can be consumed by this CFood.  For other CFood implementations, overload
+     the :py:meth:`~caosadvancedtools.cfood.AbstractCFood.match_item` method.
+2. :py:meth:`~caosadvancedtools.cfood.AbstractCFood.create_identifiables`
+
+     This method defines (and inserts if necessary) the identifiables which may be updated at a
+     later stage.  After calling this method, the ``AbstractCFood.identifiables`` Container contains
+     those Records which will be updated at a later time.
+3. :py:meth:`~caosadvancedtools.cfood.AbstractCFood.update_identifiables`
+     This method updates the stored identifiables as necessary.  All Entities which need to be
+     updated on the Server must be in ``AbstractCFood.to_be_updated`` after this call.
+
+As hinted above, the main feature of an ``identifiable`` is its fingerprinting ability: it has
+sufficient properties to identify an existing Record in CaosDB so that the CFood can decide which
+Records should be updated by the Crawler instead of inserting a new one.  Obviously, this allows the
+Crawler to run twice on the same file structure without duplicating the data in CaosDB.
+
+An ``identifiable`` is a Python :py:class:`~caosdb.common.models.Record` object with the features to
+identify the correct Record in CaosDB. This object is used to create a query in order to determine
+whether the Record exists. If the Record does not exist, the ``identifiable`` is used to insert the
+Record. Thus, after this step the Crawler guarantees that a Record with the features of the
+``identifiable`` exists in CaosDB (either previously existing or newly created).
+
+
+An example: An experiment might be uniquely identified by the date when it was conducted and a
+number. The ``identifiable`` might then look as follows:
+
+.. code:: xml
+
+    <Record>
+      <Parent name="Experiment"/>
+      <Property name="date">2020-04-19</Property>
+      <Property name="Exp-No">9</Property>
+    </Record>
+
+CFoods and the Crawler
+-----------------------
+
+In short, the Crawler interacts with the available CFoods in the following way:
+
+#. The Crawler iterates over the available objects (for example files), and for each object ``o``.
+
+   #. The Crawler tests which of the available CFoods can consume the object ``o``, using the CFoods'
+      :py:meth:`~caosadvancedtools.cfood.AbstractCFood.match_item` class method.
+
+   #. If the CFood matches against the object, an instance of that CFood is instantiated with that
+      object ``o`` and stored for later, like ``cfoods.append(CFood(o))``.
+
+#. The Crawler then iterates over the stored CFood instances, and for each instance ``cfood`` does:
+
+   #. ``cfood.create_identifiables()`` As described :ref:`above<c-food-introduction>`, create
+      identifiables.
+
+   #.  All the identifiables in ``cfood.identifiables`` are searched for existence in the CaosDB
+       instance, and inserted if they do not exist.
+
+   #. ``cfood.update_identifiables()`` As described :ref:`above<c-food-introduction>`, update the 
+      identifiables if their content needs to change.
+
+   #. All the identifiables in ``cfood.to_be_updated`` are synced to the CaosDB instance.
+
+The following sketch aims to visualize this procedure.      
+
+.. figure:: images/crawler_flow_sketch.*
+
+   Sketch of how the Crawler uses the CFoods to process objects.  Of the four identifiables
+   (fingerprints) on the right, only the second does not exist yet and is thus inserted in the
+   second step.  Only the identifiables number 2 and 4 have new or changed content, so only these
+   are synced to CaosDB in the last step.
+
+.. note:: **Practical hint:** After the call to
+          :py:meth:`~caosadvancedtools.cfood.AbstractCFood.create_identifiables`, the Crawler
+          guarantees that an ``Experiment`` with those properties exists in CaosDB. In the call to
+          :py:meth:`~caosadvancedtools.cfood.AbstractCFood.update_identifiables`, further properties
+          might be added to this Record, e.g. references to data files that were recorded in that
+          experiment or to the person that did the experiment.
+
+CFood -- An example
+--------------------
+
+Let’s look at the following Example:
+
+.. code:: python
+
+   >>> # Example CFood
+   >>> from caosadvancedtools.cfood import AbstractFileCFood, assure_has_property
+   >>> import caosdb as db
+   >>> 
+   >>> class ExampleCFood(AbstractFileCFood):
+   ...     @staticmethod
+   ...     def get_re():
+   ...         return (r".*/(?P<species>[^/]+)/"
+   ...                 r"(?P<date>\d{4}-\d{2}-\d{2})/README.md")
+   ... 
+   ...     def create_identifiables(self):
+   ...         self.experiment = db.Record()
+   ...         self.experiment.add_parent(name="Experiment")
+   ...         self.experiment.add_property(
+   ...             name="date",
+   ...             value=self.match.group('date'))
+   ...         self.identifiables.append(self.experiment)
+   ... 
+   ...     def update_identifiables(self):
+   ...         assure_has_property(
+   ...             self.experiment,
+   ...             "species",
+   ...             self.match.group('species'))
+
+   >>> # check whether the definition is valid
+   >>> cf = ExampleCFood('')
+
+Every child of ``AbstractFileCFood`` (``AbstractFileCFood`` is for
+crawling files…, and yes, you can crawl other stuff as well) needs to
+implement the functions ``get_re``, ``create_identifiables``,
+``update_identifiables``. The function :py:meth:`~caosadvancedtools.cfood.AbstractFileCFood.get_re`
+defines which files shall be treated with this CFood. The function needs
+to return a string with a regular expression. Here, the expression
+matches any "README.md" file that is located below two folder levels
+like: ``/any/path/whale/2020-01-01/README.md``. Note that the groups
+defined in the regular expressions (``date`` and ``species``) can be
+later used via ``self.match.group('name')``.
+
+:py:meth:`~caosadvancedtools.cfood.AbstractCFood.create_identifiables`
+defines the ``identifiables`` that are needed and
+:py:meth:`~caosadvancedtools.cfood.AbstractCFood.update_identifiables`
+applies additional changes. Here, an ``Experiment`` Record is identified
+using solely the date. This implies that there must NOT exist two
+``Experiment`` Records with the same date. If this might occur, an
+additional property needs to be added to the identifiable. The
+``identifiables`` have to be added to the ``self.identifiables`` list.
+
+After the correct Record has been identified (or created if none
+existed) an additional property is added that describes the species.
+
+Your CFood needs to be passed to the crawler instance in the
+``crawl.py`` file that you use for crawling. For example like this:
+
+.. code:: python
+
+   c = FileCrawler(files=files, cfood_types=[ExampleCFood])
+
+
+CFood -- Advanced
+------------------
+
+CFoods have some additional features in order to cope with complex
+scenarios. For example, what if multiple files are together needed to
+create some Record? Multiple data files recorded in an experiment could
+be one example. CFoods may define the
+:py:meth:`~.AbstractCFood.collect_information`
+function. In this function additional information can be collected by
+accessing files or querying the database. One particular use case is to
+add file paths to the ``attached_filenames`` property. By default, all
+files that are located at those paths are also treated by this CFood.
+This also means that the crawler does not list those files as
+“untreated”.
+
+One special case is the existence of multiple, very similar files.
+Imagine that you want to treat a range of calibration images with a
+CFood. You can write a regular expression to match all the files but it
+might be hard to match one particular. In this case, you should use the
+:py:class:`~.CMeal`
+mix-in. This will assure that the first match will create a CFood and
+all following ones are attached to the same instance. For further
+information, please consult the :py:obj:`API documentation <.CMeal>`.
+
+As the crawler may run in different environments, it might be different
+how files can be accessed. This can be defined using the :py:obj:`File Guide <.cfood.FileGuide>`.
+
+In the ``crawl.py`` file, you should set this appropriately:
+
+.. code:: python
+
+   >>> from caosadvancedtools.cfood import fileguide
+   >>> import os
+
+   >>> fileguide.access = lambda path: "/main/data/" + path
+
+This prefixes all paths that are used in CaosDB with “/main/data/”. In
+CFoods, files can then be accessed using the fileguide as follows:
+
+.. code:: python
+
+   with open(fileguide.access("/some/path")):
+   # do stuff
+      pass
+
+Changing data in CaosDB
+-----------------------
+
+As described above, a Record matching the identifiable will be inserted
+if no such Record existed before. This is typically unproblematic.
+However, what if existing Records need to be modified? Many
+manipulations have the potential of overwriting changes in made in
+CaosDB. Thus, unless the data being crawled is a single source of truth
+for the information in CaosDB (and changes to the respective data in
+CaosDB should thus not be possible) changes have to be done with some
+considerations.
+
+Use the functions ``assure_has_xyz`` defined in the :py:mod:`cfood module <.cfood>` to
+only add a given property, if it is not yet existing. And use the
+functions ``assure_xyz_is`` to force the value of a property (see
+remarks above).
+
+To further assure that changes are correct, the crawler comes with an
+authorization mechanism. When running the crawler with the ``crawl``
+function, a security level can be given.
+
+.. code:: python
+
+   >>> from caosadvancedtools.crawler import FileCrawler
+   >>> from caosadvancedtools.guard import RETRIEVE, INSERT, UPDATE
+   >>> files = [] # put files to be crawled in this list
+   >>> c = FileCrawler(
+   ...     files=files, 
+   ...     cfood_types=[ExampleCFood],
+   ...     interactive=False) # the crawler runs without asking intermediate questions
+   >>> c.crawl(security_level=INSERT)
+
+This assures that every manipulation of data in CaosDB that is done via the functions provided by
+the :py:class:`~caosadvancedtools.guard` class is checked against the provided security level:
+
+- ``RETRIEVE``: allows only to retrieve data from CaosDB. No manipulation is allowed
+- ``INSERT``: allows only to insert new entities and the manipulation of those newly inserted ones
+- ``UPDATE``: allows all manipulations
+
+This implies that all data manipulation of the crawler should use the
+functions that are checked by the guard. When writing a CFood you should
+stick to the above mentioned ``assure_has_xyz`` and ``assure_xyz_is``
+functions which use the respective data manipulation functions.
+
+If you provide the ``to_be_updated`` member variable of CFoods to those
+``assure...`` functions, the crawler provides another convenient
+feature: When an update is prevented due to the security level, the
+update is saved and can be subsequently be authorized. If the crawler
+runs on the CaosDB server, it will try to send a mail which allows to
+authorize the change. If it runs as a local script it will notify you
+that there are unauthorized changes and provide a code with which the
+crawler can be started to authorize the change.
+
+Real World Example
+==================
+
+A crawler implementation exists that can crawl a file structure that adheres to the rules defined in
+this `Data publication <https://doi.org/10.3390/data5020043>`__. The project is of moderate size and
+shows how a set of CFoods can be defined to deal with a complex file structure.
+
+You can find detailed information on files need to be structured `here
+<https://gitlab.com/salexan/check-sfs/-/blob/f-software/filesystem_structure.md>`__ and the source
+code of the CFoods `here <https://gitlab.com/henrik_indiscale/scifolder>`__.
+
+Sources
+=======
+
+Source of the fingerprint picture: https://svgsilh.com/image/1298040.html
+
diff --git a/src/doc/images/crawler_fingerprint.svg b/src/doc/images/crawler_fingerprint.svg
new file mode 100644
index 0000000000000000000000000000000000000000..ee57b4af85a197d0b4d649f2be2e8c223a4d8cc5
--- /dev/null
+++ b/src/doc/images/crawler_fingerprint.svg
@@ -0,0 +1,1862 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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"
+   width="105.10491mm"
+   height="47.074432mm"
+   viewBox="0 0 105.10491 47.074433"
+   version="1.1"
+   id="svg3879"
+   inkscape:version="0.92.4 5da689c313, 2019-01-14"
+   sodipodi:docname="crawler_fingerprint.svg">
+  <defs
+     id="defs3873">
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4849"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lstart"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lstart"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         id="path4846"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(0.8,0,0,0.8,10,0)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow1Lend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow1Lend-4"
+       style="overflow:visible"
+       inkscape:isstock="true">
+      <path
+         inkscape:connector-curvature="0"
+         id="path4849-4"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         transform="matrix(-0.8,0,0,-0.8,-10,0)" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.979899"
+     inkscape:cx="204.94816"
+     inkscape:cy="22.598354"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     fit-margin-top="0"
+     fit-margin-left="0"
+     fit-margin-right="0"
+     fit-margin-bottom="0"
+     inkscape:window-width="956"
+     inkscape:window-height="1029"
+     inkscape:window-x="0"
+     inkscape:window-y="24"
+     inkscape:window-maximized="0" />
+  <metadata
+     id="metadata3876">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-21.294643,-83.677057)">
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.7714085;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 44.570016,94.820594 c 0,0 2.010197,-3.865762 8.607764,-3.81422"
+       id="path4039"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.38570425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend)"
+       d="M 54.092678,91.418722 C 56.92757,91.057919 57.14663,91.057918 57.14663,91.057918"
+       id="path5160"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <g
+       id="g4037"
+       transform="matrix(0.35330138,0,0,0.35330138,32.178377,66.268428)">
+      <g
+         id="g4004">
+        <rect
+           style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+           id="rect3911"
+           width="67.752228"
+           height="45.82962"
+           x="76.020462"
+           y="59.645218"
+           ry="2.2678571"
+           rx="2.2678571" />
+        <g
+           id="g3985"
+           transform="translate(-2.9293155,-37.136161)">
+          <path
+             inkscape:connector-curvature="0"
+             id="rect3911-3"
+             d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+             style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+          <text
+             id="text3915"
+             y="103.85416"
+             x="80.92469"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="103.85416"
+               x="80.92469"
+               id="tspan3913"
+               sodipodi:role="line">Experiment</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="translate(0.52916667,0.52916667)"
+         id="g4017">
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="53.205353"
+           id="text3919"><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="62.569122"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3921" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="75.798286"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3925" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="89.027458"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3927" /><tspan
+             sodipodi:role="line"
+             x="77.579605"
+             y="102.25662"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+             id="tspan3929">- UltraSound-Data</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="93.469177"
+           id="text3933"><tspan
+             sodipodi:role="line"
+             id="tspan3931"
+             x="77.579605"
+             y="93.469177"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Images</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="76.545387"
+           id="text3937"><tspan
+             sodipodi:role="line"
+             id="tspan3935"
+             x="77.579605"
+             y="76.545387"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- Labnotes</tspan></text>
+        <text
+           xml:space="preserve"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+           x="77.579605"
+           y="84.898758"
+           id="text3941"><tspan
+             sodipodi:role="line"
+             id="tspan3939"
+             x="77.579605"
+             y="84.898758"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">- MRI-Data</tspan></text>
+      </g>
+    </g>
+    <g
+       id="g6465"
+       transform="translate(-5.3861611,7.8429989)">
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,69.558021,69.015952)"
+         id="g4037-0">
+        <g
+           id="g4004-7">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-8"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-6">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-8"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-8"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-4"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-3"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-1"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-4"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-9"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-2"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-0"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-6"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-8"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-9"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-2"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-6"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-6"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,71.08423,73.601556)"
+         id="g4037-4">
+        <g
+           id="g4004-9">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-5"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-0">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-4"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-87"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-1"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-7"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-2"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-7"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-2"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-26"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-0"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-6"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-1"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-5"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-9"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-4"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,72.610431,78.187176)"
+         id="g4037-9">
+        <g
+           id="g4004-0">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-9"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-1">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-7"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-7"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-11"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-5"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-9"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-77"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-6"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-7"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-3"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-65"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-63"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-94"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-8"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-1"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-2"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+      <g
+         transform="matrix(0.35330138,0,0,0.35330138,74.136641,82.772773)"
+         id="g4037-93">
+        <g
+           id="g4004-90">
+          <rect
+             ry="2.2678571"
+             y="59.645218"
+             x="76.020462"
+             height="45.82962"
+             width="67.752228"
+             id="rect3911-88"
+             style="fill:#e9ddaf;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+             rx="2.2678571" />
+          <g
+             transform="translate(-2.9293155,-37.136161)"
+             id="g3985-5">
+            <path
+               style="fill:#d3bc5f;fill-opacity:1;stroke:#000000;stroke-width:0.70555556;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+               d="m 81.217856,96.781378 c -1.256395,0 -2.26808,1.011169 -2.26808,2.267561 v 7.985041 h 67.752454 v -7.985041 c 0,-1.256392 -1.01169,-2.267561 -2.26808,-2.267561 z"
+               id="rect3911-3-0"
+               inkscape:connector-curvature="0" />
+            <text
+               xml:space="preserve"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+               x="80.92469"
+               y="103.85416"
+               id="text3915-9"><tspan
+                 sodipodi:role="line"
+                 id="tspan3913-6"
+                 x="80.92469"
+                 y="103.85416"
+                 style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332">Experiment</tspan></text>
+          </g>
+        </g>
+        <g
+           id="g4017-38"
+           transform="translate(0.52916667,0.52916667)">
+          <text
+             id="text3919-5"
+             y="53.205353"
+             x="77.579605"
+             style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               id="tspan3921-6"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="62.569122"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3925-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="75.798286"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3927-1"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="89.027458"
+               x="77.579605"
+               sodipodi:role="line" /><tspan
+               id="tspan3929-5"
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="102.25662"
+               x="77.579605"
+               sodipodi:role="line">- UltraSound-Data</tspan></text>
+          <text
+             id="text3933-9"
+             y="93.469177"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="93.469177"
+               x="77.579605"
+               id="tspan3931-84"
+               sodipodi:role="line">- Images</tspan></text>
+          <text
+             id="text3937-8"
+             y="76.545387"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="76.545387"
+               x="77.579605"
+               id="tspan3935-1"
+               sodipodi:role="line">- Labnotes</tspan></text>
+          <text
+             id="text3941-0"
+             y="84.898758"
+             x="77.579605"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;letter-spacing:0px;word-spacing:0px;writing-mode:lr-tb;text-anchor:start;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+             xml:space="preserve"><tspan
+               style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:7.05555534px;font-family:sans-serif;-inkscape-font-specification:'sans-serif, Normal';font-variant-ligatures:normal;font-variant-caps:normal;font-variant-numeric:normal;font-feature-settings:normal;text-align:start;writing-mode:lr-tb;text-anchor:start;stroke-width:0.26458332"
+               y="84.898758"
+               x="77.579605"
+               id="tspan3939-3"
+               sodipodi:role="line">- MRI-Data</tspan></text>
+        </g>
+      </g>
+    </g>
+    <rect
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect6467"
+       width="38.742558"
+       height="39.876492"
+       x="87.406998"
+       y="90.624992"
+       ry="2.2678576"
+       rx="2.2678576" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="89.143967"
+       y="95.349686"
+       id="text6475"><tspan
+         sodipodi:role="line"
+         id="tspan6473"
+         x="89.143967"
+         y="95.349686"
+         style="font-size:3.88055563px;stroke-width:0.26458332">CaosDB-Server</tspan></text>
+    <image
+       width="20.404667"
+       height="25.484667"
+       preserveAspectRatio="none"
+       xlink:href="data:image/png;base64,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 "
+       id="image168"
+       x="24.206257"
+       y="103.30435" />
+    <rect
+       style="fill:none;fill-opacity:1;stroke:#000000;stroke-width:0.5;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       id="rect6467-0"
+       width="30.049107"
+       height="34.868301"
+       x="21.544643"
+       y="95.633186"
+       ry="2.2678576"
+       rx="2.2678576" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="23.423353"
+       y="100.38716"
+       id="text6475-4"><tspan
+         sodipodi:role="line"
+         id="tspan6473-4"
+         x="23.423353"
+         y="100.38716"
+         style="font-size:3.88055563px;stroke-width:0.26458332">File Structure</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="34.399376"
+       y="87.317703"
+       id="text6946"><tspan
+         sodipodi:role="line"
+         x="34.399376"
+         y="87.317703"
+         style="font-size:2.82222223px;stroke-width:0.26458332"
+         id="tspan6952">generate </tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="34.490326"
+       y="90.436005"
+       id="text6958"><tspan
+         sodipodi:role="line"
+         id="tspan6956"
+         x="34.490326"
+         y="90.436005"
+         style="font-size:2.82222223px;stroke-width:0.26458332">finger print</tspan></text>
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.7714085;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+       d="m 72.883398,104.67324 c 0,0 2.010197,3.86576 8.607764,3.81422"
+       id="path4039-6"
+       inkscape:connector-curvature="0" />
+    <path
+       style="fill:none;stroke:#000000;stroke-width:0.38570425;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow1Lend-4)"
+       d="m 82.40606,108.07511 c 2.834892,0.3608 3.053952,0.3608 3.053952,0.3608"
+       id="path5160-3"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="cc" />
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:2.82222223px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.555874"
+       y="113.10316"
+       id="text6946-7"><tspan
+         sodipodi:role="line"
+         x="63.555874"
+         y="113.10316"
+         style="font-size:2.82222223px;stroke-width:0.26458332"
+         id="tspan6952-5">insert or update</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:3.88055563px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.565521"
+       y="116.11452"
+       id="text6958-9"><tspan
+         sodipodi:role="line"
+         id="tspan6956-6"
+         x="63.565521"
+         y="116.11452"
+         style="font-size:2.82222223px;stroke-width:0.26458332">based on finger</tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:10.58333302px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="63.533482"
+       y="119.22321"
+       id="text7054"><tspan
+         sodipodi:role="line"
+         id="tspan7052"
+         x="63.533482"
+         y="119.22321"
+         style="font-size:3.17499995px;stroke-width:0.26458332">print</tspan></text>
+    <g
+       style="fill:#000000;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,73.943291,100.28828)"
+       id="g454">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path4"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path6"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path8"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path10"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path12"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path14"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path16"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path18"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path20"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path22"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path24"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path26"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path28"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path30"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path32"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path34"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path36"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path38"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path40"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path42"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path44"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path46"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path48"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path50"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path52"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path54"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path56"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path58"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path60"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path62"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path64"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path66"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path68"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path70"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path72"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path74"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path76"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path78"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path80"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path82"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path84"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path86"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path88"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path90"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path92"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path94"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path96"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path98"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path100"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path102"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path104"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path106"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path108"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path110"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path112"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path114"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path116"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path118"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path120"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path122"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path124"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path126"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path128"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path130"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path132"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path134"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path136"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path138"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path140"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path142"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path144"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path146"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path148"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path150"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path152"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path154"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path156"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path158"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path160"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path162"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path164"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path166"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path168"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path170"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path172"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path174"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -191,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 34,37 44,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path176"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path178"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path180"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path182"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path184"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path186"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path188"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path190"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path192"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path194"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path196"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path198"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path200"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path202"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path204"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path206"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path208"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path210"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path212"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path214"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path216"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path218"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path220"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path222"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path224"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path226"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path228"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path230"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path232"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path234"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path236"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path238"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path240"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path242"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path244"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path246"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path248"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path250"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path252"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path254"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path256"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path258"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path260"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path262"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path264"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path266"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path268"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path270"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path272"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path274"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path276"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path278"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path280"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path282"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path284"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path286"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path288"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path290"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path292"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path294"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path296"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path298"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path300"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path302"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path304"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path306"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path308"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path310"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path312"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path314"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path316"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path318"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path320"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path322"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path324"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path326"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path328"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path330"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path332"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path334"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path336"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path338"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path340"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path342"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path344"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path346"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path348"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path350"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path352"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path354"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path356"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path358"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path360"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path362"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path364"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path366"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path368"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path370"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path372"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path374"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path376"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path378"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path380"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path382"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path384"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path386"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path388"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path390"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path392"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path394"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path396"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path398"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path400"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path402"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path404"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path406"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path408"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path410"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path412"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path414"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path416"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path418"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path420"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path422"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path424"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path426"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path428"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path430"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path432"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path434"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path436"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path438"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path440"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path442"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path444"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path446"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path448"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path450"
+         style="stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path452"
+         style="stroke-width:27.17825317" />
+    </g>
+  </g>
+</svg>
diff --git a/src/doc/images/crawler_flow_sketch.png b/src/doc/images/crawler_flow_sketch.png
new file mode 100644
index 0000000000000000000000000000000000000000..451dbba33c3f265c5c9d031ca020c422b0fdb90b
Binary files /dev/null and b/src/doc/images/crawler_flow_sketch.png differ
diff --git a/src/doc/images/crawler_flow_sketch.svg b/src/doc/images/crawler_flow_sketch.svg
new file mode 100644
index 0000000000000000000000000000000000000000..0714573ca692a8698ef2d4a1f7519af0da03292d
--- /dev/null
+++ b/src/doc/images/crawler_flow_sketch.svg
@@ -0,0 +1,19286 @@
+<?xml version="1.0" encoding="UTF-8" standalone="no"?>
+<!-- Created with Inkscape (http://www.inkscape.org/) -->
+
+<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:sodipodi="http://sodipodi.sourceforge.net/DTD/sodipodi-0.dtd"
+   xmlns:inkscape="http://www.inkscape.org/namespaces/inkscape"
+   inkscape:export-ydpi="135.18234"
+   inkscape:export-xdpi="135.18234"
+   inkscape:export-filename="/home/work/indiscale/software/linkahead/caosdb-advanced-user-tools/src/doc/images/crawler_flow_sketch.png"
+   sodipodi:docname="crawler_flow_sketch.svg"
+   inkscape:version="0.92.4 (5da689c313, 2019-01-14)"
+   id="svg8"
+   version="1.1"
+   viewBox="0 0 300.63098 150.70009"
+   height="150.70009mm"
+   width="300.63098mm">
+  <defs
+     id="defs2">
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker7402"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Mend">
+      <path
+         transform="scale(-0.6)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path7400"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:stockid="Arrow2Mend"
+       orient="auto"
+       refY="0"
+       refX="0"
+       id="Arrow2Mend"
+       style="overflow:visible"
+       inkscape:isstock="true"
+       inkscape:collect="always">
+      <path
+         id="path2291"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         transform="scale(-0.6)"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker7174"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow2Lend">
+      <path
+         transform="matrix(-1.1,0,0,-1.1,-1.1,0)"
+         d="M 8.7185878,4.0337352 -2.2072895,0.01601326 8.7185884,-4.0017078 c -1.7454984,2.3720609 -1.7354408,5.6174519 -6e-7,8.035443 z"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:0.625;stroke-linejoin:round;stroke-opacity:1"
+         id="path7172"
+         inkscape:connector-curvature="0" />
+    </marker>
+    <marker
+       inkscape:isstock="true"
+       style="overflow:visible"
+       id="marker5133"
+       refX="0"
+       refY="0"
+       orient="auto"
+       inkscape:stockid="Arrow1Lend">
+      <path
+         transform="matrix(-0.8,0,0,-0.8,-10,0)"
+         style="fill:#000000;fill-opacity:1;fill-rule:evenodd;stroke:#000000;stroke-width:1.00000003pt;stroke-opacity:1"
+         d="M 0,0 5,-5 -12.5,0 5,5 Z"
+         id="path5131"
+         inkscape:connector-curvature="0" />
+    </marker>
+  </defs>
+  <sodipodi:namedview
+     id="base"
+     pagecolor="#ffffff"
+     bordercolor="#666666"
+     borderopacity="1.0"
+     inkscape:pageopacity="0.0"
+     inkscape:pageshadow="2"
+     inkscape:zoom="1.3062685"
+     inkscape:cx="868.43272"
+     inkscape:cy="300.8044"
+     inkscape:document-units="mm"
+     inkscape:current-layer="layer1"
+     showgrid="false"
+     inkscape:window-width="1920"
+     inkscape:window-height="1015"
+     inkscape:window-x="0"
+     inkscape:window-y="0"
+     inkscape:window-maximized="1" />
+  <metadata
+     id="metadata5">
+    <rdf:RDF>
+      <cc:Work
+         rdf:about="">
+        <dc:format>image/svg+xml</dc:format>
+        <dc:type
+           rdf:resource="http://purl.org/dc/dcmitype/StillImage" />
+        <dc:title />
+      </cc:Work>
+    </rdf:RDF>
+  </metadata>
+  <g
+     inkscape:label="Layer 1"
+     inkscape:groupmode="layer"
+     id="layer1"
+     transform="translate(-11.831333,-101.50098)">
+    <g
+       id="g36"
+       transform="translate(-7.2162772,-8.8198944)">
+      <rect
+         style="fill:#ffffff;stroke:#000000;stroke-width:0.25"
+         y="110.44588"
+         x="26.326048"
+         height="30.869631"
+         width="60.670181"
+         id="rect27" />
+      <text
+         id="text17"
+         y="117.08334"
+         x="45.821144"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         xml:space="preserve"><tspan
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26458332"
+           y="117.08334"
+           x="45.821144"
+           id="tspan15"
+           sodipodi:role="line">Crawler</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="30.993452"
+         y="125.14961"
+         id="text88114"><tspan
+           sodipodi:role="line"
+           x="30.993452"
+           y="125.14961"
+           id="tspan88104"
+           style="stroke-width:0.26458332"><tspan
+             x="30.993452"
+             y="125.14961"
+             id="tspan88102"
+             style="stroke-width:0.26458332">e.g. FileCrawler for files </tspan></tspan><tspan
+           sodipodi:role="line"
+           x="30.993452"
+           y="130.44127"
+           id="tspan88108"
+           style="stroke-width:0.26458332"><tspan
+             x="30.993452"
+             y="130.44127"
+             id="tspan88106"
+             style="stroke-width:0.26458332">in general, TableCrawler </tspan></tspan><tspan
+           sodipodi:role="line"
+           x="30.993452"
+           y="135.73294"
+           id="tspan88112"
+           style="stroke-width:0.26458332"><tspan
+             x="30.993452"
+             y="135.73294"
+             id="tspan88110"
+             style="stroke-width:0.26458332">for csv/xlsx tables, ...</tspan></tspan></text>
+    </g>
+    <path
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#marker7402)"
+       d="m 83.343748,121.99703 c 13.583514,3.74718 46.778502,4.33383 52.374002,19.21302 5.5955,14.87919 -20.90575,22.08429 -18.97439,34.74947 1.93136,12.66518 17.68028,10.44359 26.80457,25.90573"
+       id="path1457"
+       inkscape:connector-curvature="0"
+       sodipodi:nodetypes="czzc" />
+    <g
+       id="g1350"
+       transform="translate(-2.6379656,18.771413)">
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.8436084"
+         cy="156.62288"
+         cx="-135.50604"
+         id="use1140"
+         style="fill:#ffc9a9;stroke:#000000;stroke-width:0.14614969"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="3.3967142"
+         cy="154.76227"
+         cx="-144.10506"
+         id="use1144"
+         style="fill:#ffdea9;stroke:#000000;stroke-width:0.10249151"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.6110029"
+         cy="134.83951"
+         cx="-143.99463"
+         id="use1148"
+         style="fill:#fffaa9;stroke:#000000;stroke-width:0.16930483"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="3.4212334"
+         cy="137.22392"
+         cx="-134.36497"
+         id="use1150"
+         style="fill:#ffbca9;stroke:#000000;stroke-width:0.10323134"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.1318016"
+         cy="146.03188"
+         cx="-128.38089"
+         id="use1156"
+         style="fill:#ffe5a9;stroke:#000000;stroke-width:0.15484555"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.8808012"
+         cy="146.19695"
+         cx="-139.61285"
+         id="use1160"
+         style="fill:#ffa9dc;stroke:#000000;stroke-width:0.17744565"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.3016653"
+         cy="154.33319"
+         cx="-151.716"
+         id="use1162"
+         style="fill:#ffaba9;stroke:#000000;stroke-width:0.12979724"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.2255402"
+         cy="166.295"
+         cx="-131.74187"
+         id="use1164"
+         style="fill:#ffbaa9;stroke:#000000;stroke-width:0.12750027"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="3.6624467"
+         cy="165.09973"
+         cx="-140.71187"
+         id="use1166"
+         style="fill:#d5ffa9;stroke:#000000;stroke-width:0.11050965"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.4735322"
+         cy="164.66039"
+         cx="-157.00734"
+         id="use1168"
+         style="fill:#e5ffa9;stroke:#000000;stroke-width:0.13498311"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="3.9899609"
+         cy="162.93805"
+         cx="-148.07698"
+         id="use1170"
+         style="fill:#ffbfa9;stroke:#000000;stroke-width:0.12039196"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.0761232"
+         cy="155.00766"
+         cx="-161.12738"
+         id="use1172"
+         style="fill:#ffa9c0;stroke:#000000;stroke-width:0.15316553"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.4622025"
+         cy="145.46436"
+         cx="-157.93466"
+         id="use1174"
+         style="fill:#ffffa9;stroke:#000000;stroke-width:0.13464126"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.883018"
+         cy="134.12239"
+         cx="-125.59808"
+         id="use1176"
+         style="fill:#fff9a9;stroke:#000000;stroke-width:0.17751254"
+         transform="rotate(-94.872902)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.6024308"
+         cy="134.95862"
+         cx="-155.51129"
+         id="use1178"
+         style="fill:#ffbea9;stroke:#000000;stroke-width:0.16904618"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="5.218009"
+         cy="156.35352"
+         cx="-125.47319"
+         id="use1180"
+         style="fill:#e0ffa9;stroke:#000000;stroke-width:0.15744674"
+         transform="rotate(-94.872903)" />
+      <circle
+         inkscape:tile-y0="20.915458"
+         inkscape:tile-x0="120.41356"
+         r="4.020854"
+         cy="144.23553"
+         cx="-149.45663"
+         id="use1188"
+         style="fill:#ffcca9;stroke:#000000;stroke-width:0.12132411"
+         transform="rotate(-94.872903)" />
+    </g>
+    <g
+       id="g4641"
+       transform="translate(-18.142857,0.75595239)">
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="152.93393"
+         y="118.31813"
+         id="text88272"><tspan
+           sodipodi:role="line"
+           x="152.93393"
+           y="118.31813"
+           id="tspan88266"
+           style="stroke-width:0.26458332"><tspan
+             x="152.93393"
+             y="118.31813"
+             id="tspan88264"
+             style="stroke-width:0.26458332">e.g. files, or rows in </tspan></tspan><tspan
+           sodipodi:role="line"
+           x="152.93393"
+           y="123.60979"
+           id="tspan88270"
+           style="stroke-width:0.26458332"><tspan
+             x="152.93393"
+             y="123.60979"
+             id="tspan88268"
+             style="stroke-width:0.26458332">tables</tspan></tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="109.11032"
+         y="120.27513"
+         id="text17-3"><tspan
+           sodipodi:role="line"
+           id="tspan15-6"
+           x="109.11032"
+           y="120.27513"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26458332"><tspan
+   id="tspan4645"
+   style="font-weight:normal;font-size:4.23333311px">for each </tspan>Object<tspan
+   id="tspan4643"
+   style="font-weight:normal;font-size:4.23333359px">:</tspan></tspan></text>
+      <text
+         id="text4985"
+         y="166.54315"
+         x="98.471405"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         xml:space="preserve"><tspan
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26458332"
+           y="166.54315"
+           x="98.471405"
+           id="tspan4983"
+           sodipodi:role="line"><tspan
+             style="font-weight:normal;font-size:4.23333311px"
+             id="tspan4979">for each <tspan
+   style="font-weight:bold"
+   id="tspan4995">CFood</tspan></tspan><tspan
+             style="font-weight:normal;font-size:4.23333359px"
+             id="tspan4981">:</tspan></tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-size:4.93888903px;line-height:1.25;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="204.8486"
+         y="78.175552"
+         id="text5005"
+         transform="rotate(30)"><tspan
+           sodipodi:role="line"
+           id="tspan5003"
+           x="204.8486"
+           y="78.175552"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333359px;font-family:sans-serif;-inkscape-font-specification:'sans-serif Bold';stroke-width:0.26458332">if get_re() matches:</tspan></text>
+    </g>
+    <g
+       id="g1418"
+       transform="translate(-4.7247023,3.0238095)">
+      <path
+         inkscape:transform-center-y="-0.92505247"
+         inkscape:transform-center-x="0.35403435"
+         d="m 50.459821,180.39434 -8.246638,-4.86318 -7.286522,6.21001 2.076811,-9.34583 -8.157727,-5.01089 9.530178,-0.91286 2.244769,-9.30691 3.813163,8.78165 9.545071,-0.74109 -7.173514,6.34021 z"
+         inkscape:randomized="0"
+         inkscape:rounded="0"
+         inkscape:flatsided="false"
+         sodipodi:arg2="1.4843063"
+         sodipodi:arg1="0.85598775"
+         sodipodi:r2="5.1725197"
+         sodipodi:r1="13.262871"
+         sodipodi:cy="170.37798"
+         sodipodi:cx="41.766369"
+         sodipodi:sides="5"
+         id="path1369"
+         style="fill:#afe9dd;stroke:#000000;stroke-width:0.25"
+         sodipodi:type="star" />
+      <path
+         sodipodi:type="star"
+         style="fill:#afdde9;stroke:#000000;stroke-width:0.25"
+         id="path1375"
+         sodipodi:sides="5"
+         sodipodi:cx="29.860119"
+         sodipodi:cy="190.22173"
+         sodipodi:r1="13.262871"
+         sodipodi:r2="5.1725197"
+         sodipodi:arg1="0.85598775"
+         sodipodi:arg2="1.4843063"
+         inkscape:flatsided="false"
+         inkscape:rounded="0"
+         inkscape:randomized="0"
+         d="m 38.553571,200.23809 -8.246638,-4.86318 -7.286522,6.21001 2.076811,-9.34583 -8.157727,-5.01089 9.530178,-0.91286 2.244769,-9.30691 3.813163,8.78165 9.545071,-0.74109 -7.173514,6.34021 z"
+         inkscape:transform-center-x="0.35403435"
+         inkscape:transform-center-y="-0.92505247" />
+      <path
+         inkscape:transform-center-y="-0.92505247"
+         inkscape:transform-center-x="0.35403435"
+         d="m 66.523808,200.80506 -8.246638,-4.86318 -7.286521,6.21001 2.07681,-9.34583 -8.157726,-5.01089 9.530177,-0.91286 2.24477,-9.30691 3.813163,8.78165 9.54507,-0.74109 -7.173513,6.34021 z"
+         inkscape:randomized="0"
+         inkscape:rounded="0"
+         inkscape:flatsided="false"
+         sodipodi:arg2="1.4843063"
+         sodipodi:arg1="0.85598775"
+         sodipodi:r2="5.1725197"
+         sodipodi:r1="13.262871"
+         sodipodi:cy="190.7887"
+         sodipodi:cx="57.830357"
+         sodipodi:sides="5"
+         id="path1377"
+         style="fill:#afe9c6;stroke:#000000;stroke-width:0.25"
+         sodipodi:type="star" />
+      <path
+         sodipodi:type="star"
+         style="fill:#afc6e9;stroke:#000000;stroke-width:0.25"
+         id="path1379"
+         sodipodi:sides="5"
+         sodipodi:cx="69.925598"
+         sodipodi:cy="170.189"
+         sodipodi:r1="13.262871"
+         sodipodi:r2="5.1725197"
+         sodipodi:arg1="0.85598775"
+         sodipodi:arg2="1.4843063"
+         inkscape:flatsided="false"
+         inkscape:rounded="0"
+         inkscape:randomized="0"
+         d="m 78.61905,180.20536 -8.246638,-4.86318 -7.286522,6.21001 2.076811,-9.34583 -8.157727,-5.01089 9.530178,-0.91286 2.244769,-9.30691 3.813163,8.78165 9.545071,-0.74109 -7.173513,6.34021 z"
+         inkscape:transform-center-x="0.35403435"
+         inkscape:transform-center-y="-0.92505247" />
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="28.864239"
+         y="149.37268"
+         id="text88126"><tspan
+           sodipodi:role="line"
+           x="45.996014"
+           y="154.92204"
+           id="tspan88120"
+           style="stroke-width:0.26458332"><tspan
+             x="28.864239"
+             y="149.37268"
+             style="font-weight:bold;font-size:4.93888855px;stroke-width:0.26458332"
+             id="tspan88116">CFood</tspan><tspan
+             x="45.996014"
+             y="149.37268"
+             id="tspan88118"
+             style="stroke-width:0.26458332"> may consume, i.e. </tspan></tspan><tspan
+           sodipodi:role="line"
+           x="28.864239"
+           y="0"
+           id="tspan88124"
+           style="stroke-width:0.26458332"><tspan
+             x="28.864239"
+             y="154.92204"
+             id="tspan88122"
+             style="stroke-width:0.26458332">be instantiated with objects</tspan></tspan></text>
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="68.577576"
+       y="189.95959"
+       id="text88150"><tspan
+         sodipodi:role="line"
+         x="119.14606"
+         y="200.54292"
+         id="tspan88136"
+         style="stroke-width:0.26458332"><tspan
+           x="68.577576"
+           y="189.95959"
+           id="tspan88128"
+           style="stroke-width:0.26458332">Class method </tspan><tspan
+           x="98.773148"
+           y="189.95959"
+           style="font-style:normal;font-variant:normal;font-weight:bold;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+           id="tspan88130">get_re()</tspan><tspan
+           x="119.14606"
+           y="189.95959"
+           id="tspan88132"
+           style="stroke-width:0.26458332">:</tspan><tspan
+           dx="0"
+           x="120.57647"
+           y="189.95959"
+           id="tspan88134"
+           style="stroke-width:0.26458332" /></tspan><tspan
+         sodipodi:role="line"
+         x="68.577576"
+         y="205.83459"
+         id="tspan88140"
+         style="stroke-width:0.26458332"><tspan
+           x="68.577576"
+           y="195.25125"
+           id="tspan88138"
+           style="stroke-width:0.26458332">Regular expression to </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="68.577576"
+         y="0"
+         id="tspan88144"
+         style="stroke-width:0.26458332"><tspan
+           x="68.577576"
+           y="200.54292"
+           id="tspan88142"
+           style="stroke-width:0.26458332">check if an object can be </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="68.577576"
+         y="0"
+         id="tspan88148"
+         style="stroke-width:0.26458332"><tspan
+           x="68.577576"
+           y="205.83459"
+           id="tspan88146"
+           style="stroke-width:0.26458332">consumed be this CFood</tspan></tspan></text>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="158.72488"
+       y="186.17986"
+       id="text88172"><tspan
+         sodipodi:role="line"
+         x="158.72488"
+         y="186.17986"
+         id="tspan88154"
+         style="stroke-width:0.26458332"><tspan
+           x="158.72488"
+           y="186.17986"
+           style="font-size:4.23333311px;stroke-width:0.26458332"
+           id="tspan88152">Crawler creates list of </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="158.72488"
+         y="191.47151"
+         id="tspan88158"
+         style="stroke-width:0.26458332"><tspan
+           x="158.72488"
+           y="191.47151"
+           style="font-size:4.23333311px;stroke-width:0.26458332"
+           id="tspan88156">CFood objects which </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="158.72488"
+         y="196.76318"
+         id="tspan88162"
+         style="stroke-width:0.26458332"><tspan
+           x="158.72488"
+           y="196.76318"
+           style="font-size:4.23333311px;stroke-width:0.26458332"
+           id="tspan88160">are instantiated with </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="158.72488"
+         y="202.05486"
+         id="tspan88166"
+         style="stroke-width:0.26458332"><tspan
+           x="158.72488"
+           y="202.05486"
+           style="font-size:4.23333311px;stroke-width:0.26458332"
+           id="tspan88164">matched crawled </tspan></tspan><tspan
+         sodipodi:role="line"
+         x="158.72488"
+         y="207.34651"
+         id="tspan88170"
+         style="stroke-width:0.26458332"><tspan
+           x="158.72488"
+           y="207.34651"
+           style="font-size:4.23333311px;stroke-width:0.26458332"
+           id="tspan88168">objects.</tspan></tspan></text>
+    <g
+       id="g6548"
+       transform="translate(-5.2916667)">
+      <g
+         id="g6533">
+        <path
+           inkscape:transform-center-y="-0.92505247"
+           inkscape:transform-center-x="0.35403435"
+           d="m 179.11174,250.51701 -8.24664,-4.86318 -7.28652,6.21 2.07681,-9.34582 -8.15772,-5.0109 9.53017,-0.91285 2.24477,-9.30691 3.81317,8.78165 9.54507,-0.74109 -7.17352,6.34021 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0"
+           inkscape:flatsided="false"
+           sodipodi:arg2="1.4843063"
+           sodipodi:arg1="0.85598775"
+           sodipodi:r2="5.1725197"
+           sodipodi:r1="13.26287"
+           sodipodi:cy="240.50064"
+           sodipodi:cx="170.41829"
+           sodipodi:sides="5"
+           id="path5100"
+           style="fill:#afc6e9;stroke:#000000;stroke-width:0.25"
+           sodipodi:type="star" />
+        <circle
+           inkscape:tile-y0="20.915458"
+           inkscape:tile-x0="120.41356"
+           r="3.3967147"
+           cy="149.03648"
+           cx="-253.81554"
+           id="use1144-6"
+           style="fill:#ffdea9;stroke:#000000;stroke-width:0.10249152"
+           transform="rotate(-94.872902)" />
+      </g>
+      <g
+         id="g6529">
+        <path
+           sodipodi:type="star"
+           style="fill:#afc6e9;stroke:#000000;stroke-width:0.25"
+           id="path1379-9"
+           sodipodi:sides="5"
+           sodipodi:cx="183.45847"
+           sodipodi:cy="220.27892"
+           sodipodi:r1="13.26287"
+           sodipodi:r2="5.1725197"
+           sodipodi:arg1="0.85598775"
+           sodipodi:arg2="1.4843063"
+           inkscape:flatsided="false"
+           inkscape:rounded="0"
+           inkscape:randomized="0"
+           d="m 192.15192,230.29528 -8.24664,-4.86318 -7.28652,6.21001 2.07681,-9.34583 -8.15773,-5.01089 9.53018,-0.91286 2.24477,-9.30691 3.81316,8.78165 9.54507,-0.74109 -7.17351,6.34021 z"
+           inkscape:transform-center-x="0.35403435"
+           inkscape:transform-center-y="-0.92505247" />
+        <circle
+           inkscape:tile-y0="20.915458"
+           inkscape:tile-x0="120.41356"
+           r="3.6624467"
+           cy="163.71928"
+           cx="-235.0499"
+           id="use1166-1"
+           style="fill:#d5ffa9;stroke:#000000;stroke-width:0.11050965"
+           transform="rotate(-94.872903)" />
+      </g>
+      <g
+         id="g6537">
+        <path
+           inkscape:transform-center-y="-0.92505247"
+           inkscape:transform-center-x="0.35403435"
+           d="m 164.78418,230.20027 -8.24664,-4.86319 -7.28652,6.21001 2.07681,-9.34582 -8.15772,-5.0109 9.53017,-0.91285 2.24477,-9.30692 3.81317,8.78165 9.54506,-0.74109 -7.17351,6.34022 z"
+           inkscape:randomized="0"
+           inkscape:rounded="0"
+           inkscape:flatsided="false"
+           sodipodi:arg2="1.4843063"
+           sodipodi:arg1="0.85598775"
+           sodipodi:r2="5.1725197"
+           sodipodi:r1="13.26287"
+           sodipodi:cy="220.1839"
+           sodipodi:cx="156.09073"
+           sodipodi:sides="5"
+           id="path1377-0"
+           style="fill:#afe9c6;stroke:#000000;stroke-width:0.25"
+           sodipodi:type="star" />
+        <circle
+           inkscape:tile-y0="20.915458"
+           inkscape:tile-x0="120.41356"
+           r="5.0761232"
+           cy="137.15964"
+           cx="-232.81804"
+           id="use1172-8"
+           style="fill:#ffa9c0;stroke:#000000;stroke-width:0.15316553"
+           transform="rotate(-94.872902)" />
+      </g>
+    </g>
+    <path
+       sodipodi:nodetypes="csac"
+       inkscape:connector-curvature="0"
+       id="path5129"
+       d="m 190.25156,236.38839 c 18.64723,-2.32929 21.87458,-22.33872 21.26408,-36.36828 -1.10056,-25.29125 -12.164,-33.31979 -12.14162,-50.6965 0.01,-7.64819 2.99031,-16.32085 5.40149,-22.29974"
+       style="fill:none;stroke:#000000;stroke-width:1;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1;marker-end:url(#Arrow2Mend)" />
+    <g
+       id="g6808"
+       transform="translate(1.6036172,20.178849)">
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="203.43883"
+         y="100.01431"
+         id="text88262"><tspan
+           sodipodi:role="line"
+           x="203.43883"
+           y="100.01431"
+           style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;line-height:125%;font-family:sans-serif;-inkscape-font-specification:sans-serif;stroke-width:0.26458332"
+           id="tspan88304">For each created <tspan
+   style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:monospace;-inkscape-font-specification:monospace"
+   id="tspan88316">cfood</tspan>, the crawler executes:</tspan></text>
+      <text
+         xml:space="preserve"
+         style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+         x="212.41925"
+         y="107.47638"
+         id="text88252"><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="107.47638"
+           id="tspan88178"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="107.47638"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88174">-cfood.create_identifiables()</tspan><tspan
+             dx="0"
+             x="283.72437"
+             y="107.47638"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88176" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="112.76804"
+           id="tspan88182"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="112.76805"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88180" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="118.05972"
+           id="tspan88186"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="118.05972"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88184" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="123.35138"
+           id="tspan88190"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="123.35138"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88188" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="128.64305"
+           id="tspan88194"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="128.64305"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88192" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="133.93471"
+           id="tspan88200"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="133.93471"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88196">-crawler.find_or_insert_identifiables()</tspan><tspan
+             dx="0"
+             x="309.19052"
+             y="133.93471"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88198" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="139.22638"
+           id="tspan88204"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="139.22638"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88202" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="144.51804"
+           id="tspan88208"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="144.51805"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88206" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="149.80971"
+           id="tspan88212"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="149.80971"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88210" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="155.10138"
+           id="tspan88216"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="155.10138"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88214" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="160.39304"
+           id="tspan88220"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="160.39305"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88218" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="165.68471"
+           id="tspan88226"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="165.68471"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88222">-cfood.update_identifiables()</tspan><tspan
+             dx="0"
+             x="283.72437"
+             y="165.68471"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88224" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="170.97638"
+           id="tspan88230"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="170.97638"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88228" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="176.26804"
+           id="tspan88234"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="176.26805"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88232" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="181.55971"
+           id="tspan88238"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="181.55971"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88236" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="186.85138"
+           id="tspan88242"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="186.85138"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88240" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="192.14304"
+           id="tspan88246"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="192.14305"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88244" /></tspan><tspan
+           sodipodi:role="line"
+           x="212.41925"
+           y="197.43471"
+           id="tspan88250"
+           style="stroke-width:0.26458332"><tspan
+             x="212.41925"
+             y="197.43471"
+             style="font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-size:4.23333311px;font-family:monospace;-inkscape-font-specification:monospace;stroke-width:0.26458332"
+             id="tspan88248">-crawler.push_identifiables_to_CaosDB()</tspan></tspan></text>
+    </g>
+    <g
+       id="g44584"
+       transform="translate(0,-1.5875)">
+      <g
+         id="g454"
+         transform="matrix(0.00129801,0,0,-0.00129801,224.09712,147.87104)"
+         style="fill:#0000ff;stroke:none;stroke-width:27.17825317">
+        <path
+           style="opacity:1;fill:#d621a9;fill-opacity:1;stroke-width:27.17825317"
+           id="path4"
+           d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66121;fill-opacity:1;stroke-width:27.17825317"
+           id="path6"
+           d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ad21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path8"
+           d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6219c;fill-opacity:1;stroke-width:27.17825317"
+           id="path10"
+           d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6be;fill-opacity:1;stroke-width:27.17825317"
+           id="path12"
+           d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b1d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path14"
+           d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6217a;fill-opacity:1;stroke-width:27.17825317"
+           id="path16"
+           d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#98d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path18"
+           d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3fd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path20"
+           d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b6d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path22"
+           d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9c21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path24"
+           d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6212e;fill-opacity:1;stroke-width:27.17825317"
+           id="path26"
+           d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cbd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path28"
+           d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path30"
+           d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#37d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path32"
+           d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path34"
+           d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6a1;fill-opacity:1;stroke-width:27.17825317"
+           id="path36"
+           d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#213fd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path38"
+           d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7f21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path40"
+           d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621cb;fill-opacity:1;stroke-width:27.17825317"
+           id="path42"
+           d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2165d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path44"
+           d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8721d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path46"
+           d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2121d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path48"
+           d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6be21;fill-opacity:1;stroke-width:27.17825317"
+           id="path50"
+           d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66a21;fill-opacity:1;stroke-width:27.17825317"
+           id="path52"
+           d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6a921;fill-opacity:1;stroke-width:27.17825317"
+           id="path54"
+           d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2194d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path56"
+           d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2176d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path58"
+           d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d654;fill-opacity:1;stroke-width:27.17825317"
+           id="path60"
+           d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path62"
+           d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cb21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path64"
+           d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6d321;fill-opacity:1;stroke-width:27.17825317"
+           id="path66"
+           d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path68"
+           d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path70"
+           d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ad21;fill-opacity:1;stroke-width:27.17825317"
+           id="path72"
+           d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62621;fill-opacity:1;stroke-width:27.17825317"
+           id="path74"
+           d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#214cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path76"
+           d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8721d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path78"
+           d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#54d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path80"
+           d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path82"
+           d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a5d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path84"
+           d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69421;fill-opacity:1;stroke-width:27.17825317"
+           id="path86"
+           d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d62a;fill-opacity:1;stroke-width:27.17825317"
+           id="path88"
+           d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2176d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path90"
+           d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#72d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path92"
+           d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#32d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path94"
+           d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66521;fill-opacity:1;stroke-width:27.17825317"
+           id="path96"
+           d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cbd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path98"
+           d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d65d;fill-opacity:1;stroke-width:27.17825317"
+           id="path100"
+           d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7a21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path102"
+           d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2ed621;fill-opacity:1;stroke-width:27.17825317"
+           id="path104"
+           d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63221;fill-opacity:1;stroke-width:27.17825317"
+           id="path106"
+           d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6be;fill-opacity:1;stroke-width:27.17825317"
+           id="path108"
+           d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#94d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path110"
+           d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#69d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path112"
+           d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#217fd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path114"
+           d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#32d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path116"
+           d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68721;fill-opacity:1;stroke-width:27.17825317"
+           id="path118"
+           d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6212e;fill-opacity:1;stroke-width:27.17825317"
+           id="path120"
+           d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62121;fill-opacity:1;stroke-width:27.17825317"
+           id="path122"
+           d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2ad621;fill-opacity:1;stroke-width:27.17825317"
+           id="path124"
+           d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ba21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path126"
+           d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2172d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path128"
+           d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2ad621;fill-opacity:1;stroke-width:27.17825317"
+           id="path130"
+           d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64821;fill-opacity:1;stroke-width:27.17825317"
+           id="path132"
+           d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6217f;fill-opacity:1;stroke-width:27.17825317"
+           id="path134"
+           d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2161d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path136"
+           d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9821d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path138"
+           d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8721d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path140"
+           d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d637;fill-opacity:1;stroke-width:27.17825317"
+           id="path142"
+           d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6212e;fill-opacity:1;stroke-width:27.17825317"
+           id="path144"
+           d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ba21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path146"
+           d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a121d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path148"
+           d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path150"
+           d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d68b;fill-opacity:1;stroke-width:27.17825317"
+           id="path152"
+           d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d654;fill-opacity:1;stroke-width:27.17825317"
+           id="path154"
+           d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2198d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path156"
+           d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#212ed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path158"
+           d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9c21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path160"
+           d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62190;fill-opacity:1;stroke-width:27.17825317"
+           id="path162"
+           d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6521d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path164"
+           d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#217ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path166"
+           d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#217ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path168"
+           d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65421;fill-opacity:1;stroke-width:27.17825317"
+           id="path170"
+           d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8321d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path172"
+           d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2187d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path174"
+           d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69821;fill-opacity:1;stroke-width:27.17825317"
+           id="path176"
+           d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3bd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path178"
+           d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67a21;fill-opacity:1;stroke-width:27.17825317"
+           id="path180"
+           d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ba21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path182"
+           d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#76d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path184"
+           d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ad21;fill-opacity:1;stroke-width:27.17825317"
+           id="path186"
+           d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#212ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path188"
+           d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c7d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path190"
+           d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d648;fill-opacity:1;stroke-width:27.17825317"
+           id="path192"
+           d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7f21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path194"
+           d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2132d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path196"
+           d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path198"
+           d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6be;fill-opacity:1;stroke-width:27.17825317"
+           id="path200"
+           d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6a1;fill-opacity:1;stroke-width:27.17825317"
+           id="path202"
+           d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b1d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path204"
+           d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621ad;fill-opacity:1;stroke-width:27.17825317"
+           id="path206"
+           d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a521d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path208"
+           d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path210"
+           d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#217fd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path212"
+           d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2132d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path214"
+           d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21bed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path216"
+           d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21cfd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path218"
+           d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b1d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path220"
+           d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d690;fill-opacity:1;stroke-width:27.17825317"
+           id="path222"
+           d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#69d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path224"
+           d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a9d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path226"
+           d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64821;fill-opacity:1;stroke-width:27.17825317"
+           id="path228"
+           d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2148d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path230"
+           d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a9d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path232"
+           d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6121d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path234"
+           d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#213fd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path236"
+           d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c2d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path238"
+           d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d672;fill-opacity:1;stroke-width:27.17825317"
+           id="path240"
+           d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7621d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path242"
+           d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4821d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path244"
+           d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#90d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path246"
+           d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#212ed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path248"
+           d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6a121;fill-opacity:1;stroke-width:27.17825317"
+           id="path250"
+           d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8bd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path252"
+           d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path254"
+           d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63f21;fill-opacity:1;stroke-width:27.17825317"
+           id="path256"
+           d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path258"
+           d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2194d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path260"
+           d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d637;fill-opacity:1;stroke-width:27.17825317"
+           id="path262"
+           d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65d21;fill-opacity:1;stroke-width:27.17825317"
+           id="path264"
+           d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621cb;fill-opacity:1;stroke-width:27.17825317"
+           id="path266"
+           d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2176d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path268"
+           d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67221;fill-opacity:1;stroke-width:27.17825317"
+           id="path270"
+           d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69021;fill-opacity:1;stroke-width:27.17825317"
+           id="path272"
+           d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#219cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path274"
+           d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path276"
+           d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2172d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path278"
+           d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7f21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path280"
+           d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62165;fill-opacity:1;stroke-width:27.17825317"
+           id="path282"
+           d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6217a;fill-opacity:1;stroke-width:27.17825317"
+           id="path284"
+           d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9cd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path286"
+           d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path288"
+           d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#216ed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path290"
+           d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21add6;fill-opacity:1;stroke-width:27.17825317"
+           id="path292"
+           d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d648;fill-opacity:1;stroke-width:27.17825317"
+           id="path294"
+           d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62a21;fill-opacity:1;stroke-width:27.17825317"
+           id="path296"
+           d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ad21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path298"
+           d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6cb;fill-opacity:1;stroke-width:27.17825317"
+           id="path300"
+           d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path302"
+           d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#214cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path304"
+           d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2137d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path306"
+           d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#59d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path308"
+           d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67621;fill-opacity:1;stroke-width:27.17825317"
+           id="path310"
+           d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path312"
+           d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2621d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path314"
+           d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#59d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path316"
+           d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65d21;fill-opacity:1;stroke-width:27.17825317"
+           id="path318"
+           d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d665;fill-opacity:1;stroke-width:27.17825317"
+           id="path320"
+           d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a521d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path322"
+           d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d632;fill-opacity:1;stroke-width:27.17825317"
+           id="path324"
+           d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21b6d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path326"
+           d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2132d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path328"
+           d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6be;fill-opacity:1;stroke-width:27.17825317"
+           id="path330"
+           d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a5d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path332"
+           d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c7d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path334"
+           d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5921d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path336"
+           d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path338"
+           d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6213b;fill-opacity:1;stroke-width:27.17825317"
+           id="path340"
+           d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d687;fill-opacity:1;stroke-width:27.17825317"
+           id="path342"
+           d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62176;fill-opacity:1;stroke-width:27.17825317"
+           id="path344"
+           d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#26d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path346"
+           d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2150d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path348"
+           d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63b21;fill-opacity:1;stroke-width:27.17825317"
+           id="path350"
+           d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2165d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path352"
+           d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21c7d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path354"
+           d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62198;fill-opacity:1;stroke-width:27.17825317"
+           id="path356"
+           d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62148;fill-opacity:1;stroke-width:27.17825317"
+           id="path358"
+           d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d648;fill-opacity:1;stroke-width:27.17825317"
+           id="path360"
+           d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path362"
+           d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cf21d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path364"
+           d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66e21;fill-opacity:1;stroke-width:27.17825317"
+           id="path366"
+           d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#43d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path368"
+           d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65d21;fill-opacity:1;stroke-width:27.17825317"
+           id="path370"
+           d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9021d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path372"
+           d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path374"
+           d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c2d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path376"
+           d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6cf21;fill-opacity:1;stroke-width:27.17825317"
+           id="path378"
+           d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6921d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path380"
+           d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68b21;fill-opacity:1;stroke-width:27.17825317"
+           id="path382"
+           d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#216ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path384"
+           d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6c221;fill-opacity:1;stroke-width:27.17825317"
+           id="path386"
+           d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6a521;fill-opacity:1;stroke-width:27.17825317"
+           id="path388"
+           d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65421;fill-opacity:1;stroke-width:27.17825317"
+           id="path390"
+           d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65421;fill-opacity:1;stroke-width:27.17825317"
+           id="path392"
+           d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63721;fill-opacity:1;stroke-width:27.17825317"
+           id="path394"
+           d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path396"
+           d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#61d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path398"
+           d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d66a;fill-opacity:1;stroke-width:27.17825317"
+           id="path400"
+           d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66a21;fill-opacity:1;stroke-width:27.17825317"
+           id="path402"
+           d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path404"
+           d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64821;fill-opacity:1;stroke-width:27.17825317"
+           id="path406"
+           d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ad21;fill-opacity:1;stroke-width:27.17825317"
+           id="path408"
+           d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621cb;fill-opacity:1;stroke-width:27.17825317"
+           id="path410"
+           d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#65d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path412"
+           d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#37d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path414"
+           d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#48d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path416"
+           d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2ad621;fill-opacity:1;stroke-width:27.17825317"
+           id="path418"
+           d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67621;fill-opacity:1;stroke-width:27.17825317"
+           id="path420"
+           d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path422"
+           d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d66e;fill-opacity:1;stroke-width:27.17825317"
+           id="path424"
+           d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6521d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path426"
+           d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a1d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path428"
+           d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add621;fill-opacity:1;stroke-width:27.17825317"
+           id="path430"
+           d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d637;fill-opacity:1;stroke-width:27.17825317"
+           id="path432"
+           d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d621be;fill-opacity:1;stroke-width:27.17825317"
+           id="path434"
+           d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d621;fill-opacity:1;stroke-width:27.17825317"
+           id="path436"
+           d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d67f;fill-opacity:1;stroke-width:27.17825317"
+           id="path438"
+           d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62194;fill-opacity:1;stroke-width:27.17825317"
+           id="path440"
+           d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7221d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path442"
+           d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#215dd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path444"
+           d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d62e;fill-opacity:1;stroke-width:27.17825317"
+           id="path446"
+           d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#21d6cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path448"
+           d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5dd621;fill-opacity:1;stroke-width:27.17825317"
+           id="path450"
+           d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63721;fill-opacity:1;stroke-width:27.17825317"
+           id="path452"
+           d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         id="g6235"
+         transform="matrix(0.00129801,0,0,-0.00129801,237.846,147.87104)"
+         style="opacity:1;fill:#23ff00;stroke:none;stroke-width:27.17825317">
+        <path
+           style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5785"
+           d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5787"
+           d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317"
+           id="path5789"
+           d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+           id="path5791"
+           d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5793"
+           d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path5795"
+           d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5797"
+           d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path5799"
+           d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5801"
+           d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path5803"
+           d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5805"
+           d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5807"
+           d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5809"
+           d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+           id="path5811"
+           d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5813"
+           d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+           id="path5815"
+           d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5817"
+           d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5819"
+           d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5821"
+           d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5823"
+           d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5825"
+           d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5827"
+           d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5829"
+           d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5831"
+           d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5833"
+           d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317"
+           id="path5835"
+           d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5837"
+           d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+           id="path5839"
+           d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+           id="path5841"
+           d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317"
+           id="path5843"
+           d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5845"
+           d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cfd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5847"
+           d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+           id="path5849"
+           d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+           id="path5851"
+           d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5853"
+           d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+           id="path5855"
+           d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6b620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5857"
+           d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5859"
+           d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8220d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5861"
+           d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317"
+           id="path5863"
+           d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317"
+           id="path5865"
+           d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5867"
+           d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+           id="path5869"
+           d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path5871"
+           d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5873"
+           d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path5875"
+           d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5877"
+           d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d665;fill-opacity:1;stroke-width:27.17825317"
+           id="path5879"
+           d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5881"
+           d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5883"
+           d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+           id="path5885"
+           d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5887"
+           d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5889"
+           d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path5891"
+           d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317"
+           id="path5893"
+           d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+           id="path5895"
+           d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5897"
+           d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5899"
+           d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+           id="path5901"
+           d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5903"
+           d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path5905"
+           d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+           id="path5907"
+           d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5909"
+           d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5911"
+           d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5913"
+           d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+           id="path5915"
+           d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5917"
+           d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5919"
+           d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+           id="path5921"
+           d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5923"
+           d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5925"
+           d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+           id="path5927"
+           d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+           id="path5929"
+           d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5931"
+           d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5933"
+           d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path5935"
+           d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5937"
+           d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9c20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5939"
+           d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+           id="path5941"
+           d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5943"
+           d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5945"
+           d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317"
+           id="path5947"
+           d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path5949"
+           d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5951"
+           d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317"
+           id="path5953"
+           d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5955"
+           d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5957"
+           d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4320d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5959"
+           d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+           id="path5961"
+           d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5963"
+           d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+           id="path5965"
+           d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5967"
+           d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5969"
+           d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5971"
+           d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+           id="path5973"
+           d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path5975"
+           d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5977"
+           d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5979"
+           d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317"
+           id="path5981"
+           d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5983"
+           d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5985"
+           d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path5987"
+           d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5989"
+           d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+           id="path5991"
+           d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+           id="path5993"
+           d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path5995"
+           d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62098;fill-opacity:1;stroke-width:27.17825317"
+           id="path5997"
+           d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+           id="path5999"
+           d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6001"
+           d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6003"
+           d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6005"
+           d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6007"
+           d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8b20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6009"
+           d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317"
+           id="path6011"
+           d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6013"
+           d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+           id="path6015"
+           d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6017"
+           d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6019"
+           d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+           id="path6021"
+           d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cb20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6023"
+           d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6025"
+           d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6027"
+           d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62029;fill-opacity:1;stroke-width:27.17825317"
+           id="path6029"
+           d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#bed620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6031"
+           d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path6033"
+           d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317"
+           id="path6035"
+           d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+           id="path6037"
+           d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+           id="path6039"
+           d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6041"
+           d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6043"
+           d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6045"
+           d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6047"
+           d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6049"
+           d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6051"
+           d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+           id="path6053"
+           d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6055"
+           d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6057"
+           d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6059"
+           d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+           id="path6061"
+           d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+           id="path6063"
+           d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6065"
+           d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+           id="path6067"
+           d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path6069"
+           d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+           id="path6071"
+           d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6073"
+           d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6075"
+           d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6077"
+           d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6079"
+           d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path6081"
+           d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6083"
+           d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6085"
+           d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5420d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6087"
+           d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6089"
+           d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6091"
+           d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6093"
+           d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6095"
+           d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6097"
+           d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6099"
+           d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2025d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6101"
+           d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path6103"
+           d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6105"
+           d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6107"
+           d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6109"
+           d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6111"
+           d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317"
+           id="path6113"
+           d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6115"
+           d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6117"
+           d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+           id="path6119"
+           d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+           id="path6121"
+           d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+           id="path6123"
+           d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+           id="path6125"
+           d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+           id="path6127"
+           d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6129"
+           d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6131"
+           d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path6133"
+           d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317"
+           id="path6135"
+           d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6137"
+           d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6139"
+           d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6141"
+           d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6143"
+           d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6145"
+           d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a5d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6147"
+           d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6149"
+           d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6151"
+           d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6153"
+           d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6155"
+           d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path6157"
+           d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+           id="path6159"
+           d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6161"
+           d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6163"
+           d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6165"
+           d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+           id="path6167"
+           d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6169"
+           d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+           id="path6171"
+           d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+           id="path6173"
+           d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+           id="path6175"
+           d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6177"
+           d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6179"
+           d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6181"
+           d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6183"
+           d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6185"
+           d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317"
+           id="path6187"
+           d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6189"
+           d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+           id="path6191"
+           d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path6193"
+           d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66d20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6195"
+           d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6197"
+           d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6199"
+           d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6201"
+           d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+           id="path6203"
+           d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d67a;fill-opacity:1;stroke-width:27.17825317"
+           id="path6205"
+           d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6207"
+           d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6209"
+           d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6204b;fill-opacity:1;stroke-width:27.17825317"
+           id="path6211"
+           d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6213"
+           d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66920;fill-opacity:1;stroke-width:27.17825317"
+           id="path6215"
+           d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20bed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6217"
+           d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317"
+           id="path6219"
+           d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6221"
+           d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6223"
+           d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+           id="path6225"
+           d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6227"
+           d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317"
+           id="path6229"
+           d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6231"
+           d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6233"
+           d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+           inkscape:connector-curvature="0" />
+      </g>
+      <g
+         style="opacity:1;fill:#00ffde;stroke:none;stroke-width:27.17825317"
+         transform="matrix(0.00129801,0,0,-0.00129801,251.34311,147.87104)"
+         id="g6687">
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+           id="path6237"
+           style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+           id="path6239"
+           style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+           id="path6241"
+           style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+           id="path6243"
+           style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+           id="path6245"
+           style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+           id="path6247"
+           style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+           id="path6249"
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+           id="path6251"
+           style="opacity:1;fill:#71d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+           id="path6253"
+           style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+           id="path6255"
+           style="opacity:1;fill:#5c20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+           id="path6257"
+           style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+           id="path6259"
+           style="opacity:1;fill:#d66020;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+           id="path6261"
+           style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           id="path6263"
+           style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+           id="path6265"
+           style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+           id="path6267"
+           style="opacity:1;fill:#d6c720;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+           id="path6269"
+           style="opacity:1;fill:#43d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+           id="path6271"
+           style="opacity:1;fill:#20d6d3;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+           id="path6273"
+           style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+           id="path6275"
+           style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+           id="path6277"
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+           id="path6279"
+           style="opacity:1;fill:#d620a0;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+           id="path6281"
+           style="opacity:1;fill:#20d6be;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+           id="path6283"
+           style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+           id="path6285"
+           style="opacity:1;fill:#20d654;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+           id="path6287"
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+           id="path6289"
+           style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+           id="path6291"
+           style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+           id="path6293"
+           style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+           id="path6295"
+           style="opacity:1;fill:#3e20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+           id="path6297"
+           style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+           id="path6299"
+           style="opacity:1;fill:#d62054;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+           id="path6301"
+           style="opacity:1;fill:#20d6a5;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+           id="path6303"
+           style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+           id="path6305"
+           style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+           id="path6307"
+           style="opacity:1;fill:#7ad620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+           id="path6309"
+           style="opacity:1;fill:#58d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+           id="path6311"
+           style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+           id="path6313"
+           style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+           id="path6315"
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+           id="path6317"
+           style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+           id="path6319"
+           style="opacity:1;fill:#58d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+           id="path6321"
+           style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+           id="path6323"
+           style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+           id="path6325"
+           style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+           id="path6327"
+           style="opacity:1;fill:#d62098;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+           id="path6329"
+           style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+           id="path6331"
+           style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+           id="path6333"
+           style="opacity:1;fill:#2036d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+           id="path6335"
+           style="opacity:1;fill:#29d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+           id="path6337"
+           style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+           id="path6339"
+           style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+           id="path6341"
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+           id="path6343"
+           style="opacity:1;fill:#20d6cb;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+           id="path6345"
+           style="opacity:1;fill:#c2d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+           id="path6347"
+           style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+           id="path6349"
+           style="opacity:1;fill:#20d63e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+           id="path6351"
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+           id="path6353"
+           style="opacity:1;fill:#29d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+           id="path6355"
+           style="opacity:1;fill:#4720d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+           id="path6357"
+           style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+           id="path6359"
+           style="opacity:1;fill:#4b20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+           id="path6361"
+           style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+           id="path6363"
+           style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+           id="path6365"
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+           id="path6367"
+           style="opacity:1;fill:#20d6c2;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+           id="path6369"
+           style="opacity:1;fill:#d6202d;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+           id="path6371"
+           style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+           id="path6373"
+           style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+           id="path6375"
+           style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+           id="path6377"
+           style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+           id="path6379"
+           style="opacity:1;fill:#d620a9;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+           id="path6381"
+           style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+           id="path6383"
+           style="opacity:1;fill:#2087d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+           id="path6385"
+           style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+           id="path6387"
+           style="opacity:1;fill:#20d654;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+           id="path6389"
+           style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+           id="path6391"
+           style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+           id="path6393"
+           style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+           id="path6395"
+           style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+           id="path6397"
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+           id="path6399"
+           style="opacity:1;fill:#d62020;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+           id="path6401"
+           style="opacity:1;fill:#47d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+           id="path6403"
+           style="opacity:1;fill:#20d63e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+           id="path6405"
+           style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+           id="path6407"
+           style="opacity:1;fill:#20d665;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+           id="path6409"
+           style="opacity:1;fill:#20d6c2;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+           id="path6411"
+           style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+           id="path6413"
+           style="opacity:1;fill:#d620cb;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+           id="path6415"
+           style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+           id="path6417"
+           style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+           id="path6419"
+           style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+           id="path6421"
+           style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+           id="path6423"
+           style="opacity:1;fill:#d63a20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+           id="path6425"
+           style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+           id="path6427"
+           style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+           id="path6429"
+           style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+           id="path6431"
+           style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+           id="path6433"
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+           id="path6435"
+           style="opacity:1;fill:#2032d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+           id="path6437"
+           style="opacity:1;fill:#4b20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+           id="path6439"
+           style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+           id="path6441"
+           style="opacity:1;fill:#d6209c;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+           id="path6443"
+           style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+           id="path6445"
+           style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+           id="path6447"
+           style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+           id="path6449"
+           style="opacity:1;fill:#20d6d3;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+           id="path6451"
+           style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+           id="path6453"
+           style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+           id="path6455"
+           style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+           id="path6457"
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           id="path6459"
+           style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+           id="path6461"
+           style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+           id="path6463"
+           style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+           id="path6465"
+           style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+           id="path6467"
+           style="opacity:1;fill:#2032d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+           id="path6469"
+           style="opacity:1;fill:#7620d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+           id="path6471"
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+           id="path6473"
+           style="opacity:1;fill:#a5d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+           id="path6475"
+           style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+           id="path6477"
+           style="opacity:1;fill:#7ed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+           id="path6479"
+           style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+           id="path6481"
+           style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+           id="path6483"
+           style="opacity:1;fill:#d62054;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+           id="path6485"
+           style="opacity:1;fill:#7ed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+           id="path6487"
+           style="opacity:1;fill:#d66920;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+           id="path6489"
+           style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+           id="path6491"
+           style="opacity:1;fill:#204fd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+           id="path6493"
+           style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+           id="path6495"
+           style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+           id="path6497"
+           style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+           id="path6499"
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+           id="path6501"
+           style="opacity:1;fill:#20d6cf;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+           id="path6503"
+           style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+           id="path6505"
+           style="opacity:1;fill:#203ed6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+           id="path6507"
+           style="opacity:1;fill:#d64b20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+           id="path6509"
+           style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+           id="path6511"
+           style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+           id="path6513"
+           style="opacity:1;fill:#d62054;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+           id="path6515"
+           style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+           id="path6517"
+           style="opacity:1;fill:#76d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+           id="path6519"
+           style="opacity:1;fill:#2087d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+           id="path6521"
+           style="opacity:1;fill:#b1d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+           id="path6523"
+           style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+           id="path6525"
+           style="opacity:1;fill:#2036d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+           id="path6527"
+           style="opacity:1;fill:#cb20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+           id="path6529"
+           style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+           id="path6531"
+           style="opacity:1;fill:#20d6cb;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+           id="path6533"
+           style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+           id="path6535"
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+           id="path6537"
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+           id="path6539"
+           style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+           id="path6541"
+           style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+           id="path6543"
+           style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+           id="path6545"
+           style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+           id="path6547"
+           style="opacity:1;fill:#d62058;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+           id="path6549"
+           style="opacity:1;fill:#25d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+           id="path6551"
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+           id="path6553"
+           style="opacity:1;fill:#20d6cf;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+           id="path6555"
+           style="opacity:1;fill:#d62054;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+           id="path6557"
+           style="opacity:1;fill:#7a20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+           id="path6559"
+           style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+           id="path6561"
+           style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+           id="path6563"
+           style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+           id="path6565"
+           style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+           id="path6567"
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+           id="path6569"
+           style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+           id="path6571"
+           style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+           id="path6573"
+           style="opacity:1;fill:#d66520;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+           id="path6575"
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+           id="path6577"
+           style="opacity:1;fill:#d6ad20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+           id="path6579"
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+           id="path6581"
+           style="opacity:1;fill:#c720d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+           id="path6583"
+           style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+           id="path6585"
+           style="opacity:1;fill:#d62069;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+           id="path6587"
+           style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+           id="path6589"
+           style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+           id="path6591"
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+           id="path6593"
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+           id="path6595"
+           style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+           id="path6597"
+           style="opacity:1;fill:#d62069;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+           id="path6599"
+           style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+           id="path6601"
+           style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+           id="path6603"
+           style="opacity:1;fill:#20bed6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+           id="path6605"
+           style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+           id="path6607"
+           style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+           id="path6609"
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+           id="path6611"
+           style="opacity:1;fill:#cfd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+           id="path6613"
+           style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+           id="path6615"
+           style="opacity:1;fill:#bed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+           id="path6617"
+           style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+           id="path6619"
+           style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+           id="path6621"
+           style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+           id="path6623"
+           style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+           id="path6625"
+           style="opacity:1;fill:#2087d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+           id="path6627"
+           style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+           id="path6629"
+           style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+           id="path6631"
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+           id="path6633"
+           style="opacity:1;fill:#d65c20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+           id="path6635"
+           style="opacity:1;fill:#d6204f;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+           id="path6637"
+           style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+           id="path6639"
+           style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+           id="path6641"
+           style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+           id="path6643"
+           style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+           id="path6645"
+           style="opacity:1;fill:#d6202d;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+           id="path6647"
+           style="opacity:1;fill:#d6204b;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+           id="path6649"
+           style="opacity:1;fill:#d620a9;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+           id="path6651"
+           style="opacity:1;fill:#d62054;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+           id="path6653"
+           style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+           id="path6655"
+           style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+           id="path6657"
+           style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+           id="path6659"
+           style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+           id="path6661"
+           style="opacity:1;fill:#d6202d;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+           id="path6663"
+           style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+           id="path6665"
+           style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+           id="path6667"
+           style="opacity:1;fill:#d64b20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+           id="path6669"
+           style="opacity:1;fill:#d6208f;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+           id="path6671"
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           id="path6673"
+           style="opacity:1;fill:#d68720;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+           id="path6675"
+           style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           id="path6677"
+           style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+           id="path6679"
+           style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+           id="path6681"
+           style="opacity:1;fill:#2036d6;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+           id="path6683"
+           style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317" />
+        <path
+           inkscape:connector-curvature="0"
+           d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+           id="path6685"
+           style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317" />
+      </g>
+      <g
+         id="g7139"
+         transform="matrix(0.00129801,0,0,-0.00129801,265.37476,147.87104)"
+         style="opacity:1;fill:#11ff00;stroke:none;stroke-width:27.17825317">
+        <path
+           style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6689"
+           d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+           id="path6691"
+           d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6693"
+           d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+           id="path6695"
+           d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317"
+           id="path6697"
+           d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6699"
+           d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6701"
+           d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+           id="path6703"
+           d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6705"
+           d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#76d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6707"
+           d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+           id="path6709"
+           d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4fd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6711"
+           d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317"
+           id="path6713"
+           d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317"
+           id="path6715"
+           d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6717"
+           d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6719"
+           d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6721"
+           d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6208b;fill-opacity:1;stroke-width:27.17825317"
+           id="path6723"
+           d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6725"
+           d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+           id="path6727"
+           d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+           id="path6729"
+           d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317"
+           id="path6731"
+           d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317"
+           id="path6733"
+           d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6735"
+           d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path6737"
+           d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6739"
+           d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+           id="path6741"
+           d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317"
+           id="path6743"
+           d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path6745"
+           d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+           id="path6747"
+           d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317"
+           id="path6749"
+           d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6751"
+           d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4720d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6753"
+           d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6755"
+           d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d63e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6757"
+           d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6759"
+           d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3a20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6761"
+           d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+           id="path6763"
+           d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6765"
+           d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+           id="path6767"
+           d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6769"
+           d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+           id="path6771"
+           d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6773"
+           d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6775"
+           d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6777"
+           d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6779"
+           d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6781"
+           d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6783"
+           d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6785"
+           d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6787"
+           d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317"
+           id="path6789"
+           d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6791"
+           d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6793"
+           d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+           id="path6795"
+           d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+           id="path6797"
+           d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20b1d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6799"
+           d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6205c;fill-opacity:1;stroke-width:27.17825317"
+           id="path6801"
+           d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6803"
+           d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317"
+           id="path6805"
+           d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6807"
+           d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6809"
+           d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#25d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6811"
+           d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+           id="path6813"
+           d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path6815"
+           d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6817"
+           d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6819"
+           d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6be;fill-opacity:1;stroke-width:27.17825317"
+           id="path6821"
+           d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+           id="path6823"
+           d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6825"
+           d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6827"
+           d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2020d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6829"
+           d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6831"
+           d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6833"
+           d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317"
+           id="path6835"
+           d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7ed620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6837"
+           d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317"
+           id="path6839"
+           d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6841"
+           d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6843"
+           d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317"
+           id="path6845"
+           d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6847"
+           d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317"
+           id="path6849"
+           d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+           id="path6851"
+           d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+           id="path6853"
+           d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317"
+           id="path6855"
+           d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6857"
+           d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7ad620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6859"
+           d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6861"
+           d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6863"
+           d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317"
+           id="path6865"
+           d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6867"
+           d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ad20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6869"
+           d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620a0;fill-opacity:1;stroke-width:27.17825317"
+           id="path6871"
+           d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6873"
+           d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6875"
+           d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317"
+           id="path6877"
+           d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6879"
+           d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6881"
+           d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6883"
+           d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6885"
+           d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6887"
+           d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6889"
+           d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6891"
+           d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6893"
+           d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6895"
+           d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6897"
+           d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d66020;fill-opacity:1;stroke-width:27.17825317"
+           id="path6899"
+           d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+           id="path6901"
+           d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6903"
+           d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path6905"
+           d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6907"
+           d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6208f;fill-opacity:1;stroke-width:27.17825317"
+           id="path6909"
+           d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#204bd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6911"
+           d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317"
+           id="path6913"
+           d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6915"
+           d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6917"
+           d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6919"
+           d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9320d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6921"
+           d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d320d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6923"
+           d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6925"
+           d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+           id="path6927"
+           d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path6929"
+           d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+           id="path6931"
+           d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+           id="path6933"
+           d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#208fd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6935"
+           d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+           id="path6937"
+           d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6939"
+           d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6941"
+           d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b1d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6943"
+           d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6945"
+           d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6947"
+           d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317"
+           id="path6949"
+           d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6207a;fill-opacity:1;stroke-width:27.17825317"
+           id="path6951"
+           d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6953"
+           d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63a20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6955"
+           d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317"
+           id="path6957"
+           d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+           id="path6959"
+           d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6961"
+           d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6963"
+           d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6965"
+           d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64b20;fill-opacity:1;stroke-width:27.17825317"
+           id="path6967"
+           d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6969"
+           d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6c2;fill-opacity:1;stroke-width:27.17825317"
+           id="path6971"
+           d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6973"
+           d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317"
+           id="path6975"
+           d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+           id="path6977"
+           d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6979"
+           d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path6981"
+           d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6983"
+           d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6985"
+           d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6987"
+           d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6989"
+           d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d64f;fill-opacity:1;stroke-width:27.17825317"
+           id="path6991"
+           d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6993"
+           d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path6995"
+           d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path6997"
+           d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path6999"
+           d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+           id="path7001"
+           d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#a920d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7003"
+           d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7005"
+           d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65c20;fill-opacity:1;stroke-width:27.17825317"
+           id="path7007"
+           d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+           id="path7009"
+           d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7011"
+           d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7013"
+           d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7015"
+           d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7017"
+           d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7019"
+           d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+           id="path7021"
+           d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317"
+           id="path7023"
+           d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7025"
+           d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7027"
+           d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7029"
+           d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7031"
+           d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317"
+           id="path7033"
+           d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7035"
+           d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7037"
+           d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317"
+           id="path7039"
+           d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+           id="path7041"
+           d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+           id="path7043"
+           d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7045"
+           d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7047"
+           d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+           id="path7049"
+           d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#5c20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7051"
+           d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7053"
+           d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+           id="path7055"
+           d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7057"
+           d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317"
+           id="path7059"
+           d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317"
+           id="path7061"
+           d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+           id="path7063"
+           d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7065"
+           d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7067"
+           d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317"
+           id="path7069"
+           d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317"
+           id="path7071"
+           d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7073"
+           d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7075"
+           d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+           id="path7077"
+           d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7079"
+           d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7081"
+           d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7083"
+           d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7085"
+           d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7087"
+           d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+           id="path7089"
+           d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7091"
+           d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7093"
+           d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+           id="path7095"
+           d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7097"
+           d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7099"
+           d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6cf20;fill-opacity:1;stroke-width:27.17825317"
+           id="path7101"
+           d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+           id="path7103"
+           d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7105"
+           d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7107"
+           d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7109"
+           d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7111"
+           d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7113"
+           d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7115"
+           d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7117"
+           d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7119"
+           d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7121"
+           d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7123"
+           d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#c2d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7125"
+           d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#47d620;fill-opacity:1;stroke-width:27.17825317"
+           id="path7127"
+           d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7129"
+           d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317"
+           id="path7131"
+           d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317"
+           id="path7133"
+           d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317"
+           id="path7135"
+           d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+           inkscape:connector-curvature="0" />
+        <path
+           style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+           id="path7137"
+           d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+           inkscape:connector-curvature="0" />
+      </g>
+    </g>
+    <g
+       style="opacity:1;fill:#2c2c2c;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,224.09712,172.69337)"
+       id="g11751">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path11301"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path11303"
+         style="opacity:1;fill:#bebebe;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path11305"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path11307"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path11309"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path11311"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path11313"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path11315"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path11317"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path11319"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path11321"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path11323"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path11325"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path11327"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path11329"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path11331"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path11333"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path11335"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path11337"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path11339"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path11341"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path11343"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path11345"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path11347"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path11349"
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path11351"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path11353"
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path11355"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path11357"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path11359"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path11361"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path11363"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path11365"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path11367"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path11369"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path11371"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path11373"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path11375"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path11377"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path11379"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path11381"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path11383"
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path11385"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path11387"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path11389"
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path11391"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path11393"
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path11395"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path11397"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path11399"
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path11401"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path11403"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path11405"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path11407"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path11409"
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path11411"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path11413"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path11415"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path11417"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path11419"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path11421"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path11423"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path11425"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path11427"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path11429"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path11431"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path11433"
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path11435"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path11437"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path11439"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path11441"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path11443"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path11445"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path11447"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path11449"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path11451"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path11453"
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path11455"
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path11457"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path11459"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path11461"
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path11463"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path11465"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path11467"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path11469"
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path11471"
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path11473"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path11475"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path11477"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path11479"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path11481"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path11483"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path11485"
+         style="opacity:1;fill:#5a5a5a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path11487"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path11489"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path11491"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path11493"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path11495"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path11497"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path11499"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path11501"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path11503"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path11505"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path11507"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path11509"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path11511"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path11513"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path11515"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path11517"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path11519"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path11521"
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path11523"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path11525"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path11527"
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path11529"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path11531"
+         style="opacity:1;fill:#6f6f6f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path11533"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path11535"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path11537"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path11539"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path11541"
+         style="opacity:1;fill:#636363;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path11543"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path11545"
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path11547"
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path11549"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path11551"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path11553"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path11555"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path11557"
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path11559"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path11561"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path11563"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path11565"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path11567"
+         style="opacity:1;fill:#cfcfcf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path11569"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path11571"
+         style="opacity:1;fill:#c0c0c0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path11573"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path11575"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path11577"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path11579"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path11581"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path11583"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path11585"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path11587"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path11589"
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path11591"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path11593"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path11595"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path11597"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path11599"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path11601"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path11603"
+         style="opacity:1;fill:#656565;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path11605"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path11607"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path11609"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path11611"
+         style="opacity:1;fill:#545454;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path11613"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path11615"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path11617"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path11619"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path11621"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path11623"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path11625"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path11627"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path11629"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path11631"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path11633"
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path11635"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path11637"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path11639"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path11641"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path11643"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path11645"
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path11647"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path11649"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path11651"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path11653"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path11655"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path11657"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path11659"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path11661"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path11663"
+         style="opacity:1;fill:#c9c9c9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path11665"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path11667"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path11669"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path11671"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path11673"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path11675"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path11677"
+         style="opacity:1;fill:#717171;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path11679"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path11681"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path11683"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path11685"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path11687"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path11689"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path11691"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path11693"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path11695"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path11697"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path11699"
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path11701"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path11703"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path11705"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path11707"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path11709"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path11711"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path11713"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path11715"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path11717"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path11719"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path11721"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path11723"
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path11725"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path11727"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path11729"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path11731"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path11733"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path11735"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path11737"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path11739"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path11741"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path11743"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path11745"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path11747"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path11749"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       id="g12203"
+       transform="matrix(0.00129801,0,0,-0.00129801,237.846,172.69337)"
+       style="opacity:1;fill:#23ff00;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11753"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11755"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317"
+         id="path11757"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+         id="path11759"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11761"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path11763"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11765"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path11767"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11769"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path11771"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11773"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11775"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11777"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path11779"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11781"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path11783"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11785"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11787"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11789"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11791"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11793"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11795"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11797"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11799"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11801"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317"
+         id="path11803"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11805"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+         id="path11807"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path11809"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317"
+         id="path11811"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11813"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cfd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11815"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+         id="path11817"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+         id="path11819"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11821"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path11823"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6b620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11825"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11827"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11829"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317"
+         id="path11831"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path11833"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11835"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+         id="path11837"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path11839"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11841"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path11843"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11845"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d665;fill-opacity:1;stroke-width:27.17825317"
+         id="path11847"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11849"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11851"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+         id="path11853"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11855"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11857"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path11859"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317"
+         id="path11861"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+         id="path11863"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11865"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11867"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+         id="path11869"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11871"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path11873"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+         id="path11875"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11877"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11879"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11881"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path11883"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11885"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11887"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+         id="path11889"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11891"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11893"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path11895"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+         id="path11897"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11899"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11901"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path11903"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11905"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11907"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path11909"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11911"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11913"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path11915"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317"
+         id="path11917"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11919"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317"
+         id="path11921"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11923"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11925"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4320d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11927"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path11929"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11931"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+         id="path11933"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11935"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11937"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11939"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+         id="path11941"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path11943"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11945"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11947"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317"
+         id="path11949"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11951"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11953"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11955"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11957"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path11959"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+         id="path11961"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11963"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62098;fill-opacity:1;stroke-width:27.17825317"
+         id="path11965"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+         id="path11967"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11969"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11971"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11973"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11975"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8b20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11977"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317"
+         id="path11979"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11981"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+         id="path11983"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11985"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path11987"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+         id="path11989"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cb20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11991"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+         id="path11993"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path11995"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62029;fill-opacity:1;stroke-width:27.17825317"
+         id="path11997"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path11999"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12001"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317"
+         id="path12003"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+         id="path12005"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+         id="path12007"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12009"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12011"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12013"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+         id="path12015"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12017"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12019"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+         id="path12021"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12023"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12025"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12027"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12029"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12031"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12033"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12035"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path12037"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12039"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12041"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12043"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12045"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12047"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path12049"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12051"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12053"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5420d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12055"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12057"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+         id="path12059"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12061"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12063"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path12065"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12067"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2025d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12069"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path12071"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12073"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12075"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12077"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12079"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317"
+         id="path12081"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12083"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12085"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12087"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path12089"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12091"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path12093"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12095"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12097"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12099"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path12101"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317"
+         id="path12103"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12105"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317"
+         id="path12107"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12109"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12111"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12113"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a5d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12115"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12117"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12119"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12121"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12123"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path12125"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path12127"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12129"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12131"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12133"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path12135"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12137"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+         id="path12139"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+         id="path12141"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+         id="path12143"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12145"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12147"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12149"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12151"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12153"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317"
+         id="path12155"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12157"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path12159"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path12161"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d66d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12163"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12165"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12167"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12169"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+         id="path12171"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67a;fill-opacity:1;stroke-width:27.17825317"
+         id="path12173"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12175"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+         id="path12177"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6204b;fill-opacity:1;stroke-width:27.17825317"
+         id="path12179"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12181"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d66920;fill-opacity:1;stroke-width:27.17825317"
+         id="path12183"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20bed6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12185"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317"
+         id="path12187"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12189"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12191"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+         id="path12193"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path12195"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317"
+         id="path12197"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path12199"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12201"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       id="g12655"
+       transform="matrix(0.00129801,0,0,-0.00129801,251.34311,172.69337)"
+       style="opacity:1;fill:#ffffff;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12205"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12207"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12209"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12211"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path12213"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317"
+         id="path12215"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12217"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12219"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12221"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12223"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317"
+         id="path12225"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bdbdbd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12227"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12229"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12231"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path12233"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12235"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12237"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12239"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12241"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path12243"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path12245"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path12247"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path12249"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12251"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12253"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12255"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12257"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12259"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path12261"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#606060;fill-opacity:1;stroke-width:27.17825317"
+         id="path12263"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12265"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12267"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path12269"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12271"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path12273"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12275"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path12277"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12279"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317"
+         id="path12281"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path12283"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12285"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path12287"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path12289"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path12291"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12293"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12295"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12297"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b5b5b5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12299"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path12301"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12303"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12305"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cacaca;fill-opacity:1;stroke-width:27.17825317"
+         id="path12307"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12309"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12311"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12313"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12315"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12317"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12319"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12321"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317"
+         id="path12323"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12325"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path12327"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12329"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317"
+         id="path12331"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12333"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path12335"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path12337"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317"
+         id="path12339"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path12341"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12343"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12345"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12347"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12349"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path12351"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12353"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12355"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12357"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12359"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12361"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12363"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path12365"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317"
+         id="path12367"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12369"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path12371"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12373"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path12375"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path12377"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317"
+         id="path12379"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12381"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12383"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12385"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12387"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12389"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12391"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12393"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path12395"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12397"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12399"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12401"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317"
+         id="path12403"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path12405"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path12407"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path12409"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317"
+         id="path12411"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12413"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317"
+         id="path12415"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12417"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317"
+         id="path12419"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12421"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12423"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path12425"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12427"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12429"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path12431"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12433"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317"
+         id="path12435"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317"
+         id="path12437"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path12439"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12441"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path12443"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12445"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12447"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12449"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12451"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12453"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c5c5c5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12455"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12457"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317"
+         id="path12459"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path12461"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path12463"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12465"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12467"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12469"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317"
+         id="path12471"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12473"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317"
+         id="path12475"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12477"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path12479"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12481"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12483"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12485"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path12487"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12489"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12491"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path12493"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12495"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12497"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12499"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12501"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path12503"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path12505"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12507"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12509"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12511"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path12513"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12515"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path12517"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317"
+         id="path12519"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12521"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12523"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317"
+         id="path12525"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path12527"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12529"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317"
+         id="path12531"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12533"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317"
+         id="path12535"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12537"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12539"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317"
+         id="path12541"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path12543"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12545"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12547"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12549"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12551"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path12553"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path12555"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12557"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path12559"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path12561"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path12563"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path12565"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12567"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path12569"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12571"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path12573"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path12575"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path12577"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12579"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path12581"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12583"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317"
+         id="path12585"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path12587"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path12589"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317"
+         id="path12591"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path12593"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path12595"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path12597"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path12599"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317"
+         id="path12601"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12603"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317"
+         id="path12605"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12607"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path12609"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path12611"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path12613"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317"
+         id="path12615"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12617"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12619"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12621"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12623"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path12625"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317"
+         id="path12627"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path12629"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path12631"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317"
+         id="path12633"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317"
+         id="path12635"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path12637"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12639"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path12641"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5b5b5b;fill-opacity:1;stroke-width:27.17825317"
+         id="path12643"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path12645"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path12647"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path12649"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path12651"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path12653"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       style="opacity:1;fill:#ececec;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,265.37476,172.69337)"
+       id="g13107">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path12657"
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path12659"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path12661"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path12663"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path12665"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path12667"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path12669"
+         style="opacity:1;fill:#5a5a5a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path12671"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path12673"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path12675"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path12677"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path12679"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path12681"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path12683"
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path12685"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path12687"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path12689"
+         style="opacity:1;fill:#cacaca;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path12691"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path12693"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path12695"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path12697"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path12699"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path12701"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path12703"
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path12705"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path12707"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path12709"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path12711"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path12713"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path12715"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path12717"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path12719"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path12721"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path12723"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path12725"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path12727"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path12729"
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path12731"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path12733"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path12735"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path12737"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path12739"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path12741"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path12743"
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path12745"
+         style="opacity:1;fill:#c0c0c0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path12747"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path12749"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path12751"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path12753"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path12755"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path12757"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path12759"
+         style="opacity:1;fill:#6f6f6f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path12761"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path12763"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path12765"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path12767"
+         style="opacity:1;fill:#d2d2d2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path12769"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path12771"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path12773"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path12775"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path12777"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path12779"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path12781"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path12783"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path12785"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path12787"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path12789"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path12791"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path12793"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path12795"
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path12797"
+         style="opacity:1;fill:#515151;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path12799"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path12801"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path12803"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path12805"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path12807"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path12809"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path12811"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path12813"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path12815"
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path12817"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path12819"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path12821"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path12823"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path12825"
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path12827"
+         style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path12829"
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path12831"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path12833"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path12835"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path12837"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path12839"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path12841"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path12843"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path12845"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path12847"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path12849"
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path12851"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path12853"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path12855"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path12857"
+         style="opacity:1;fill:#5b5b5b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path12859"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path12861"
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path12863"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path12865"
+         style="opacity:1;fill:#cacaca;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path12867"
+         style="opacity:1;fill:#bdbdbd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path12869"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path12871"
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path12873"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path12875"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path12877"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path12879"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path12881"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path12883"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path12885"
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path12887"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path12889"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path12891"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path12893"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path12895"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path12897"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path12899"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path12901"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path12903"
+         style="opacity:1;fill:#b4b4b4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path12905"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path12907"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path12909"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path12911"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path12913"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path12915"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path12917"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path12919"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path12921"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path12923"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path12925"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path12927"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path12929"
+         style="opacity:1;fill:#717171;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path12931"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path12933"
+         style="opacity:1;fill:#6b6b6b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path12935"
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path12937"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path12939"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path12941"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path12943"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path12945"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path12947"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path12949"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path12951"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path12953"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path12955"
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path12957"
+         style="opacity:1;fill:#575757;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path12959"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path12961"
+         style="opacity:1;fill:#676767;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path12963"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path12965"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path12967"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path12969"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path12971"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path12973"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path12975"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path12977"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path12979"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path12981"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path12983"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path12985"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path12987"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path12989"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path12991"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path12993"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path12995"
+         style="opacity:1;fill:#5b5b5b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path12997"
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path12999"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path13001"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path13003"
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path13005"
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path13007"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path13009"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path13011"
+         style="opacity:1;fill:#b5b5b5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path13013"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path13015"
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path13017"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path13019"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path13021"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path13023"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path13025"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path13027"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path13029"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path13031"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path13033"
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path13035"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path13037"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path13039"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path13041"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path13043"
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path13045"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path13047"
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path13049"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path13051"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path13053"
+         style="opacity:1;fill:#6f6f6f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path13055"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path13057"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path13059"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path13061"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path13063"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path13065"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path13067"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path13069"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path13071"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path13073"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path13075"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path13077"
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path13079"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path13081"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path13083"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path13085"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path13087"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path13089"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path13091"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path13093"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path13095"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path13097"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path13099"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path13101"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path13103"
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path13105"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       id="g13122"
+       transform="translate(0,-44.450002)">
+      <rect
+         y="214.11124"
+         x="229.20349"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect13109"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccac"
+         inkscape:connector-curvature="0"
+         id="path13111"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       id="g13128"
+       transform="translate(27.642182,-44.450002)">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="rect13124"
+         width="6.4190478"
+         height="6.0870934"
+         x="229.20349"
+         y="214.11124" />
+      <path
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         id="path13126"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccac" />
+    </g>
+    <g
+       transform="translate(13.606255,-44.450002)"
+       id="g13134">
+      <rect
+         y="214.11124"
+         x="229.20349"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect13130"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:type="star"
+         style="fill:#ffff00;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="path13142"
+         sodipodi:sides="5"
+         sodipodi:cx="232.34624"
+         sodipodi:cy="217.31757"
+         sodipodi:r1="2.3546286"
+         sodipodi:r2="0.91830504"
+         sodipodi:arg1="-1.5707963"
+         sodipodi:arg2="-0.9424778"
+         inkscape:flatsided="false"
+         inkscape:rounded="0"
+         inkscape:randomized="0"
+         d="m 232.34624,214.96294 0.53976,1.6117 1.69962,0.0153 -1.36602,1.01139 0.51065,1.62116 -1.38401,-0.98663 -1.38402,0.98663 0.51066,-1.62116 -1.36603,-1.01139 1.69962,-0.0153 z"
+         inkscape:transform-center-x="3.0054697e-06"
+         inkscape:transform-center-y="-0.22484912" />
+    </g>
+    <text
+       id="text13488"
+       y="163.89011"
+       x="282.00626"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         y="163.89011"
+         x="282.00626"
+         id="tspan13486"
+         sodipodi:role="line">Does the</tspan><tspan
+         id="tspan13492"
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         y="169.18178"
+         x="282.00626"
+         sodipodi:role="line">Record exist?</tspan></text>
+    <g
+       id="g13974"
+       transform="matrix(0.00129801,0,0,-0.00129801,224.09712,203.91423)"
+       style="opacity:1;fill:#2c2c2c;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13524"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bebebe;fill-opacity:1;stroke-width:27.17825317"
+         id="path13526"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path13528"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path13530"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13532"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13534"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13536"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13538"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13540"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13542"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path13544"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path13546"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13548"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13550"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317"
+         id="path13552"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317"
+         id="path13554"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path13556"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13558"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13560"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13562"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13564"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13566"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317"
+         id="path13568"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13570"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13572"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13574"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13576"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13578"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path13580"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13582"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13584"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13586"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path13588"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13590"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13592"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path13594"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317"
+         id="path13596"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13598"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path13600"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13602"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13604"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317"
+         id="path13606"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path13608"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13610"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13612"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13614"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317"
+         id="path13616"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13618"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317"
+         id="path13620"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317"
+         id="path13622"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13624"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13626"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13628"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13630"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13632"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13634"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13636"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path13638"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path13640"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path13642"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13644"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path13646"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path13648"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13650"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13652"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317"
+         id="path13654"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317"
+         id="path13656"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path13658"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13660"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13662"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path13664"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path13666"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13668"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13670"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path13672"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path13674"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13676"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13678"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path13680"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path13682"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317"
+         id="path13684"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13686"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13688"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13690"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317"
+         id="path13692"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317"
+         id="path13694"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13696"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path13698"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13700"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path13702"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13704"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13706"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5a5a5a;fill-opacity:1;stroke-width:27.17825317"
+         id="path13708"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13710"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13712"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13714"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317"
+         id="path13716"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13718"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13720"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path13722"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13724"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13726"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13728"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13730"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13732"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317"
+         id="path13734"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317"
+         id="path13736"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path13738"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13740"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13742"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13744"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13746"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13748"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317"
+         id="path13750"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13752"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6f6f6f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13754"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13756"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13758"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13760"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317"
+         id="path13762"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#636363;fill-opacity:1;stroke-width:27.17825317"
+         id="path13764"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13766"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13768"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317"
+         id="path13770"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13772"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317"
+         id="path13774"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13776"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13778"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13780"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13782"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13784"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13786"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13788"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cfcfcf;fill-opacity:1;stroke-width:27.17825317"
+         id="path13790"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13792"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c0c0c0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13794"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13796"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path13798"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13800"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path13802"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13804"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13806"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13808"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path13810"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13812"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13814"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13816"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path13818"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13820"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13822"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317"
+         id="path13824"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#656565;fill-opacity:1;stroke-width:27.17825317"
+         id="path13826"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path13828"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317"
+         id="path13830"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317"
+         id="path13832"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#545454;fill-opacity:1;stroke-width:27.17825317"
+         id="path13834"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path13836"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13838"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path13840"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path13842"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13844"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13846"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317"
+         id="path13848"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13850"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13852"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13854"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13856"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13858"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path13860"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path13862"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path13864"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13866"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317"
+         id="path13868"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13870"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317"
+         id="path13872"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path13874"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path13876"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path13878"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path13880"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317"
+         id="path13882"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13884"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c9c9c9;fill-opacity:1;stroke-width:27.17825317"
+         id="path13886"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13888"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13890"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path13892"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13894"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13896"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13898"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#717171;fill-opacity:1;stroke-width:27.17825317"
+         id="path13900"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13902"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path13904"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13906"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317"
+         id="path13908"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13910"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13912"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path13914"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13916"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13918"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13920"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13922"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path13924"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317"
+         id="path13926"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13928"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13930"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317"
+         id="path13932"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317"
+         id="path13934"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path13936"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13938"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317"
+         id="path13940"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path13942"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13944"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317"
+         id="path13946"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13948"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13950"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path13952"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path13954"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path13956"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13958"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path13960"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317"
+         id="path13962"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path13964"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path13966"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path13968"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path13970"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path13972"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       style="opacity:1;fill:#23ff00;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,237.846,203.91423)"
+       id="g14426">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path13976"
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path13978"
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path13980"
+         style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path13982"
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path13984"
+         style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path13986"
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path13988"
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path13990"
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path13992"
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path13994"
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path13996"
+         style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path13998"
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path14000"
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path14002"
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path14004"
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path14006"
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path14008"
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path14010"
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path14012"
+         style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path14014"
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path14016"
+         style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path14018"
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path14020"
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path14022"
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path14024"
+         style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path14026"
+         style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path14028"
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path14030"
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path14032"
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path14034"
+         style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path14036"
+         style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path14038"
+         style="opacity:1;fill:#cfd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path14040"
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path14042"
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path14044"
+         style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path14046"
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path14048"
+         style="opacity:1;fill:#d6b620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path14050"
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path14052"
+         style="opacity:1;fill:#8220d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path14054"
+         style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path14056"
+         style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path14058"
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path14060"
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path14062"
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path14064"
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path14066"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path14068"
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path14070"
+         style="opacity:1;fill:#20d665;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path14072"
+         style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path14074"
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path14076"
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path14078"
+         style="opacity:1;fill:#7620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path14080"
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path14082"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path14084"
+         style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path14086"
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path14088"
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path14090"
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path14092"
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path14094"
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path14096"
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path14098"
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path14100"
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path14102"
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path14104"
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path14106"
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path14108"
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path14110"
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path14112"
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path14114"
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path14116"
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path14118"
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path14120"
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path14122"
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path14124"
+         style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path14126"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path14128"
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path14130"
+         style="opacity:1;fill:#9c20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path14132"
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path14134"
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path14136"
+         style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path14138"
+         style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path14140"
+         style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path14142"
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path14144"
+         style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path14146"
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path14148"
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path14150"
+         style="opacity:1;fill:#4320d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path14152"
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path14154"
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path14156"
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path14158"
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path14160"
+         style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path14162"
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path14164"
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path14166"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path14168"
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path14170"
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path14172"
+         style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path14174"
+         style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path14176"
+         style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path14178"
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path14180"
+         style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path14182"
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path14184"
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path14186"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path14188"
+         style="opacity:1;fill:#d62098;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path14190"
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path14192"
+         style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path14194"
+         style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path14196"
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path14198"
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path14200"
+         style="opacity:1;fill:#8b20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path14202"
+         style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path14204"
+         style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path14206"
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path14208"
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path14210"
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path14212"
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path14214"
+         style="opacity:1;fill:#cb20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path14216"
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path14218"
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path14220"
+         style="opacity:1;fill:#d62029;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path14222"
+         style="opacity:1;fill:#bed620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path14224"
+         style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path14226"
+         style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path14228"
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path14230"
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path14232"
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path14234"
+         style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path14236"
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path14238"
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path14240"
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path14242"
+         style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path14244"
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path14246"
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path14248"
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path14250"
+         style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path14252"
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path14254"
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path14256"
+         style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path14258"
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path14260"
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path14262"
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path14264"
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path14266"
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path14268"
+         style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path14270"
+         style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path14272"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path14274"
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path14276"
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path14278"
+         style="opacity:1;fill:#5420d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path14280"
+         style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path14282"
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path14284"
+         style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path14286"
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path14288"
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path14290"
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path14292"
+         style="opacity:1;fill:#2025d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path14294"
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path14296"
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path14298"
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path14300"
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path14302"
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path14304"
+         style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path14306"
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path14308"
+         style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path14310"
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path14312"
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path14314"
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path14316"
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path14318"
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path14320"
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path14322"
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path14324"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path14326"
+         style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path14328"
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path14330"
+         style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path14332"
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path14334"
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path14336"
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path14338"
+         style="opacity:1;fill:#a5d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path14340"
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path14342"
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path14344"
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path14346"
+         style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path14348"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path14350"
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path14352"
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path14354"
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path14356"
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path14358"
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path14360"
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path14362"
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path14364"
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path14366"
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path14368"
+         style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path14370"
+         style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path14372"
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path14374"
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path14376"
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path14378"
+         style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path14380"
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path14382"
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path14384"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path14386"
+         style="opacity:1;fill:#d66d20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path14388"
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path14390"
+         style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path14392"
+         style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path14394"
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path14396"
+         style="opacity:1;fill:#20d67a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path14398"
+         style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path14400"
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path14402"
+         style="opacity:1;fill:#d6204b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path14404"
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path14406"
+         style="opacity:1;fill:#d66920;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path14408"
+         style="opacity:1;fill:#20bed6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path14410"
+         style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path14412"
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path14414"
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path14416"
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path14418"
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path14420"
+         style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path14422"
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path14424"
+         style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       style="opacity:1;fill:#ffffff;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,251.34311,203.91423)"
+       id="g14878">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path14428"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path14430"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path14432"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path14434"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path14436"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path14438"
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path14440"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path14442"
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path14444"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path14446"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path14448"
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path14450"
+         style="opacity:1;fill:#bdbdbd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path14452"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path14454"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path14456"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path14458"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path14460"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path14462"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path14464"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path14466"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path14468"
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path14470"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path14472"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path14474"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path14476"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path14478"
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path14480"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path14482"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path14484"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path14486"
+         style="opacity:1;fill:#606060;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path14488"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path14490"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path14492"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path14494"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path14496"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path14498"
+         style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path14500"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path14502"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path14504"
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path14506"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path14508"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path14510"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path14512"
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path14514"
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path14516"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path14518"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path14520"
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path14522"
+         style="opacity:1;fill:#b5b5b5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path14524"
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path14526"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path14528"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path14530"
+         style="opacity:1;fill:#cacaca;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path14532"
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path14534"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path14536"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path14538"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path14540"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path14542"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path14544"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path14546"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path14548"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path14550"
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path14552"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path14554"
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path14556"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path14558"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path14560"
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path14562"
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path14564"
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path14566"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path14568"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path14570"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path14572"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path14574"
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path14576"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path14578"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path14580"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path14582"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path14584"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path14586"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path14588"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path14590"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path14592"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path14594"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path14596"
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path14598"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path14600"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path14602"
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path14604"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path14606"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path14608"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path14610"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path14612"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path14614"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path14616"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path14618"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path14620"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path14622"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path14624"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path14626"
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path14628"
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path14630"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path14632"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path14634"
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path14636"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path14638"
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path14640"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path14642"
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path14644"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path14646"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path14648"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path14650"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path14652"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path14654"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path14656"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path14658"
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path14660"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path14662"
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path14664"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path14666"
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path14668"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path14670"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path14672"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path14674"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path14676"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path14678"
+         style="opacity:1;fill:#c5c5c5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path14680"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path14682"
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path14684"
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path14686"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path14688"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path14690"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path14692"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path14694"
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path14696"
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path14698"
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path14700"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path14702"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path14704"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path14706"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path14708"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path14710"
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path14712"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path14714"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path14716"
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path14718"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path14720"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path14722"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path14724"
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path14726"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path14728"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path14730"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path14732"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path14734"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path14736"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path14738"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path14740"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path14742"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path14744"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path14746"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path14748"
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path14750"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path14752"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path14754"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path14756"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path14758"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path14760"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path14762"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path14764"
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path14766"
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path14768"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path14770"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path14772"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path14774"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path14776"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path14778"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path14780"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path14782"
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path14784"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path14786"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path14788"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path14790"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path14792"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path14794"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path14796"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path14798"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path14800"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path14802"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path14804"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path14806"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path14808"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path14810"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path14812"
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path14814"
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path14816"
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path14818"
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path14820"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path14822"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path14824"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path14826"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path14828"
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path14830"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path14832"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path14834"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path14836"
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path14838"
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path14840"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path14842"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path14844"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path14846"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path14848"
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path14850"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path14852"
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path14854"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path14856"
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path14858"
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path14860"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path14862"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path14864"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path14866"
+         style="opacity:1;fill:#5b5b5b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path14868"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path14870"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path14872"
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path14874"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path14876"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       style="opacity:1;fill:#11ff00;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,265.37476,203.91423)"
+       id="g15330">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path14880"
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path14882"
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path14884"
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path14886"
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path14888"
+         style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path14890"
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path14892"
+         style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path14894"
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path14896"
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path14898"
+         style="opacity:1;fill:#76d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path14900"
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path14902"
+         style="opacity:1;fill:#4fd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path14904"
+         style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path14906"
+         style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path14908"
+         style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path14910"
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path14912"
+         style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path14914"
+         style="opacity:1;fill:#d6208b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path14916"
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path14918"
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path14920"
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path14922"
+         style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path14924"
+         style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path14926"
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path14928"
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path14930"
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path14932"
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path14934"
+         style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path14936"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path14938"
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path14940"
+         style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path14942"
+         style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path14944"
+         style="opacity:1;fill:#4720d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path14946"
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path14948"
+         style="opacity:1;fill:#20d63e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path14950"
+         style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path14952"
+         style="opacity:1;fill:#3a20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path14954"
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path14956"
+         style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path14958"
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path14960"
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path14962"
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path14964"
+         style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path14966"
+         style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path14968"
+         style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path14970"
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path14972"
+         style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path14974"
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path14976"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path14978"
+         style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path14980"
+         style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path14982"
+         style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path14984"
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path14986"
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path14988"
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path14990"
+         style="opacity:1;fill:#20b1d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path14992"
+         style="opacity:1;fill:#d6205c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path14994"
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path14996"
+         style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path14998"
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path15000"
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path15002"
+         style="opacity:1;fill:#25d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path15004"
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path15006"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path15008"
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path15010"
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path15012"
+         style="opacity:1;fill:#20d6be;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path15014"
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path15016"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path15018"
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path15020"
+         style="opacity:1;fill:#2020d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path15022"
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path15024"
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path15026"
+         style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path15028"
+         style="opacity:1;fill:#7ed620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path15030"
+         style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path15032"
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path15034"
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path15036"
+         style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path15038"
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path15040"
+         style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path15042"
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path15044"
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path15046"
+         style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path15048"
+         style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path15050"
+         style="opacity:1;fill:#7ad620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path15052"
+         style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path15054"
+         style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path15056"
+         style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path15058"
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path15060"
+         style="opacity:1;fill:#d6ad20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path15062"
+         style="opacity:1;fill:#d620a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path15064"
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path15066"
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path15068"
+         style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path15070"
+         style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path15072"
+         style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path15074"
+         style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path15076"
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path15078"
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path15080"
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path15082"
+         style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path15084"
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path15086"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path15088"
+         style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path15090"
+         style="opacity:1;fill:#d66020;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path15092"
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path15094"
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path15096"
+         style="opacity:1;fill:#20d6d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path15098"
+         style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path15100"
+         style="opacity:1;fill:#d6208f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path15102"
+         style="opacity:1;fill:#204bd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path15104"
+         style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path15106"
+         style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path15108"
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path15110"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path15112"
+         style="opacity:1;fill:#9320d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path15114"
+         style="opacity:1;fill:#d320d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path15116"
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path15118"
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path15120"
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path15122"
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path15124"
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path15126"
+         style="opacity:1;fill:#208fd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path15128"
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path15130"
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path15132"
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path15134"
+         style="opacity:1;fill:#b1d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path15136"
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path15138"
+         style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path15140"
+         style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path15142"
+         style="opacity:1;fill:#d6207a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path15144"
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path15146"
+         style="opacity:1;fill:#d63a20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path15148"
+         style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path15150"
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path15152"
+         style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path15154"
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path15156"
+         style="opacity:1;fill:#5820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path15158"
+         style="opacity:1;fill:#d64b20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path15160"
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path15162"
+         style="opacity:1;fill:#20d6c2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path15164"
+         style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path15166"
+         style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path15168"
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path15170"
+         style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path15172"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path15174"
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path15176"
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path15178"
+         style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path15180"
+         style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path15182"
+         style="opacity:1;fill:#20d64f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path15184"
+         style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path15186"
+         style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path15188"
+         style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path15190"
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path15192"
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path15194"
+         style="opacity:1;fill:#a920d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path15196"
+         style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path15198"
+         style="opacity:1;fill:#d65c20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path15200"
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path15202"
+         style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path15204"
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path15206"
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path15208"
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path15210"
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path15212"
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path15214"
+         style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path15216"
+         style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path15218"
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path15220"
+         style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path15222"
+         style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path15224"
+         style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path15226"
+         style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path15228"
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path15230"
+         style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path15232"
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path15234"
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path15236"
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path15238"
+         style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path15240"
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path15242"
+         style="opacity:1;fill:#5c20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path15244"
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path15246"
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path15248"
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path15250"
+         style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path15252"
+         style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path15254"
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path15256"
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path15258"
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path15260"
+         style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path15262"
+         style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path15264"
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path15266"
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path15268"
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path15270"
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path15272"
+         style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path15274"
+         style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path15276"
+         style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path15278"
+         style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path15280"
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path15282"
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path15284"
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path15286"
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path15288"
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path15290"
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path15292"
+         style="opacity:1;fill:#d6cf20;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path15294"
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path15296"
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path15298"
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path15300"
+         style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path15302"
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path15304"
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path15306"
+         style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path15308"
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path15310"
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path15312"
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path15314"
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path15316"
+         style="opacity:1;fill:#c2d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path15318"
+         style="opacity:1;fill:#47d620;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path15320"
+         style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path15322"
+         style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path15324"
+         style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path15326"
+         style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path15328"
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       transform="translate(0,-13.229166)"
+       id="g15336">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="rect15332"
+         width="6.4190478"
+         height="6.0870934"
+         x="229.20349"
+         y="214.11124" />
+      <path
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         id="path15334"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccac" />
+    </g>
+    <g
+       transform="translate(27.642182,-13.229166)"
+       id="g15342">
+      <rect
+         y="214.11124"
+         x="229.20349"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect15338"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccac"
+         inkscape:connector-curvature="0"
+         id="path15340"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       transform="translate(-28.045835,29.104167)"
+       id="g89314">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="rect89308"
+         width="6.4190478"
+         height="6.0870934"
+         x="271.02481"
+         y="171.77791" />
+      <path
+         id="path89310"
+         style="fill:none;stroke:#0000ff;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 276.76307,174.71979 -0.55614,0.62198 -0.43695,-0.73081 m -1.05123,2.34185 c -0.95683,0.31902 -1.98272,-0.0735 -2.49411,-0.95422 -0.51138,-0.88073 -0.37872,-2.02658 0.32253,-2.78574 0.70125,-0.75916 1.79345,-0.93931 2.65528,-0.43797 0.86184,0.50135 1.27501,1.55717 1.00445,2.56688"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsssc" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 274.66038,173.5735 -0.45573,1.26593 1.50534,1.16286"
+         id="path89312"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc" />
+    </g>
+    <g
+       id="g15356"
+       transform="translate(0,29.104167)">
+      <rect
+         y="171.77791"
+         x="271.02481"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect15350"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccccsssc"
+         inkscape:connector-curvature="0"
+         d="m 276.76307,174.71979 -0.55614,0.62198 -0.43695,-0.73081 m -1.05123,2.34185 c -0.95683,0.31902 -1.98272,-0.0735 -2.49411,-0.95422 -0.51138,-0.88073 -0.37872,-2.02658 0.32253,-2.78574 0.70125,-0.75916 1.79345,-0.93931 2.65528,-0.43797 0.86184,0.50135 1.27501,1.55717 1.00445,2.56688"
+         style="fill:none;stroke:#0000ff;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path15352" />
+      <path
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         id="path15354"
+         d="m 274.66038,173.5735 -0.45573,1.26593 1.50534,1.16286"
+         style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       style="opacity:1;fill:#2c2c2c;stroke:none;stroke-width:27.17825317"
+       transform="matrix(0.00129801,0,0,-0.00129801,224.09712,238.31008)"
+       id="g15808">
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         id="path15358"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         id="path15360"
+         style="opacity:1;fill:#bebebe;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         id="path15362"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         id="path15364"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         id="path15366"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         id="path15368"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         id="path15370"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         id="path15372"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         id="path15374"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         id="path15376"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         id="path15378"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         id="path15380"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         id="path15382"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path15384"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         id="path15386"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         id="path15388"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         id="path15390"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         id="path15392"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         id="path15394"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         id="path15396"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         id="path15398"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         id="path15400"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         id="path15402"
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         id="path15404"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         id="path15406"
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         id="path15408"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         id="path15410"
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         id="path15412"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         id="path15414"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         id="path15416"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         id="path15418"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         id="path15420"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         id="path15422"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         id="path15424"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         id="path15426"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         id="path15428"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         id="path15430"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         id="path15432"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         id="path15434"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         id="path15436"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         id="path15438"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         id="path15440"
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         id="path15442"
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         id="path15444"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         id="path15446"
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         id="path15448"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         id="path15450"
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         id="path15452"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         id="path15454"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         id="path15456"
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         id="path15458"
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         id="path15460"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         id="path15462"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         id="path15464"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         id="path15466"
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         id="path15468"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         id="path15470"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         id="path15472"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         id="path15474"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         id="path15476"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         id="path15478"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         id="path15480"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         id="path15482"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         id="path15484"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         id="path15486"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         id="path15488"
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         id="path15490"
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         id="path15492"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         id="path15494"
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         id="path15496"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         id="path15498"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         id="path15500"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         id="path15502"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         id="path15504"
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         id="path15506"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         id="path15508"
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         id="path15510"
+         style="opacity:1;fill:#bcbcbc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         id="path15512"
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         id="path15514"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         id="path15516"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         id="path15518"
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         id="path15520"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         id="path15522"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         id="path15524"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         id="path15526"
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         id="path15528"
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         id="path15530"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         id="path15532"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         id="path15534"
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         id="path15536"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         id="path15538"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         id="path15540"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         id="path15542"
+         style="opacity:1;fill:#5a5a5a;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         id="path15544"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         id="path15546"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         id="path15548"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         id="path15550"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         id="path15552"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         id="path15554"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         id="path15556"
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         id="path15558"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         id="path15560"
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         id="path15562"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         id="path15564"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         id="path15566"
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         id="path15568"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         id="path15570"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         id="path15572"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         id="path15574"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         id="path15576"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         id="path15578"
+         style="opacity:1;fill:#f6f6f6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         id="path15580"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         id="path15582"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         id="path15584"
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         id="path15586"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         id="path15588"
+         style="opacity:1;fill:#6f6f6f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         id="path15590"
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         id="path15592"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         id="path15594"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         id="path15596"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         id="path15598"
+         style="opacity:1;fill:#636363;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         id="path15600"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         id="path15602"
+         style="opacity:1;fill:#5d5d5d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         id="path15604"
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         id="path15606"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         id="path15608"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         id="path15610"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         id="path15612"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         id="path15614"
+         style="opacity:1;fill:#b8b8b8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         id="path15616"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         id="path15618"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         id="path15620"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         id="path15622"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         id="path15624"
+         style="opacity:1;fill:#cfcfcf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         id="path15626"
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         id="path15628"
+         style="opacity:1;fill:#c0c0c0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         id="path15630"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         id="path15632"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         id="path15634"
+         style="opacity:1;fill:#7c7c7c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         id="path15636"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         id="path15638"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         id="path15640"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         id="path15642"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         id="path15644"
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         id="path15646"
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         id="path15648"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         id="path15650"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         id="path15652"
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         id="path15654"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         id="path15656"
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         id="path15658"
+         style="opacity:1;fill:#797979;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         id="path15660"
+         style="opacity:1;fill:#656565;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         id="path15662"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         id="path15664"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         id="path15666"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         id="path15668"
+         style="opacity:1;fill:#545454;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         id="path15670"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         id="path15672"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         id="path15674"
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         id="path15676"
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         id="path15678"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         id="path15680"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         id="path15682"
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         id="path15684"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         id="path15686"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         id="path15688"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         id="path15690"
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         id="path15692"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         id="path15694"
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         id="path15696"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         id="path15698"
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         id="path15700"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         id="path15702"
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         id="path15704"
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         id="path15706"
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         id="path15708"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         id="path15710"
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         id="path15712"
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         id="path15714"
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         id="path15716"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         id="path15718"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         id="path15720"
+         style="opacity:1;fill:#c9c9c9;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         id="path15722"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         id="path15724"
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         id="path15726"
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         id="path15728"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         id="path15730"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         id="path15732"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         id="path15734"
+         style="opacity:1;fill:#717171;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         id="path15736"
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         id="path15738"
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         id="path15740"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         id="path15742"
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         id="path15744"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         id="path15746"
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         id="path15748"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         id="path15750"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         id="path15752"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         id="path15754"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         id="path15756"
+         style="opacity:1;fill:#c6c6c6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         id="path15758"
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         id="path15760"
+         style="opacity:1;fill:#a8a8a8;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         id="path15762"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         id="path15764"
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         id="path15766"
+         style="opacity:1;fill:#f4f4f4;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         id="path15768"
+         style="opacity:1;fill:#dedede;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         id="path15770"
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         id="path15772"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         id="path15774"
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         id="path15776"
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         id="path15778"
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         id="path15780"
+         style="opacity:1;fill:#707070;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         id="path15782"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         id="path15784"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         id="path15786"
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         id="path15788"
+         style="opacity:1;fill:#a0a0a0;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         id="path15790"
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         id="path15792"
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path15794"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         id="path15796"
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         id="path15798"
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         id="path15800"
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         id="path15802"
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         id="path15804"
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317" />
+      <path
+         inkscape:connector-curvature="0"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         id="path15806"
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317" />
+    </g>
+    <g
+       id="g16260"
+       transform="matrix(0.00129801,0,0,-0.00129801,237.846,238.31008)"
+       style="opacity:1;fill:#23ff00;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15810"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15812"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d63a;fill-opacity:1;stroke-width:27.17825317"
+         id="path15814"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+         id="path15816"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15818"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path15820"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15822"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path15824"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15826"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path15828"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15830"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15832"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15834"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path15836"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15838"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path15840"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15842"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15844"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15846"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15848"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15850"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15852"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15854"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15856"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15858"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317"
+         id="path15860"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15862"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+         id="path15864"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path15866"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317"
+         id="path15868"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15870"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cfd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15872"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+         id="path15874"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+         id="path15876"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15878"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path15880"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6b620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15882"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15884"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15886"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62036;fill-opacity:1;stroke-width:27.17825317"
+         id="path15888"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path15890"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15892"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+         id="path15894"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path15896"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15898"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path15900"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15902"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d665;fill-opacity:1;stroke-width:27.17825317"
+         id="path15904"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15906"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15908"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+         id="path15910"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15912"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15914"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path15916"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317"
+         id="path15918"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+         id="path15920"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15922"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15924"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+         id="path15926"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15928"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path15930"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+         id="path15932"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15934"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15936"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15938"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path15940"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15942"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15944"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+         id="path15946"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15948"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15950"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path15952"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+         id="path15954"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15956"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15958"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path15960"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15962"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15964"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path15966"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15968"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15970"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path15972"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317"
+         id="path15974"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2076d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15976"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317"
+         id="path15978"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15980"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15982"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4320d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15984"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path15986"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15988"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+         id="path15990"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20b6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path15992"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15994"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path15996"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d69c;fill-opacity:1;stroke-width:27.17825317"
+         id="path15998"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path16000"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16002"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16004"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317"
+         id="path16006"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16008"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16010"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#82d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16012"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16014"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path16016"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+         id="path16018"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16020"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62098;fill-opacity:1;stroke-width:27.17825317"
+         id="path16022"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+         id="path16024"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16026"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16028"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16030"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16032"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8b20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16034"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317"
+         id="path16036"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#206dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16038"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+         id="path16040"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16042"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16044"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+         id="path16046"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cb20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16048"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16050"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16052"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62029;fill-opacity:1;stroke-width:27.17825317"
+         id="path16054"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16056"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16058"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317"
+         id="path16060"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67120;fill-opacity:1;stroke-width:27.17825317"
+         id="path16062"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+         id="path16064"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16066"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16068"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16070"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16072"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16074"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16076"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62043;fill-opacity:1;stroke-width:27.17825317"
+         id="path16078"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16080"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16082"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16084"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16086"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16088"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16090"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16092"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path16094"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16096"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16098"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16100"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16102"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16104"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path16106"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16108"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16110"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5420d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16112"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16114"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16116"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16118"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16120"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16122"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16124"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2025d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16126"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path16128"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16130"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16132"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16134"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16136"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6a020;fill-opacity:1;stroke-width:27.17825317"
+         id="path16138"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a0d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16140"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16142"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16144"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path16146"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d62d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16148"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d658;fill-opacity:1;stroke-width:27.17825317"
+         id="path16150"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16152"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16154"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16156"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path16158"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317"
+         id="path16160"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b6d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16162"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16164"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16166"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16168"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5cd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16170"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a5d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16172"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16174"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16176"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16178"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16180"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path16182"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path16184"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16186"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16188"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16190"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path16192"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16194"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62065;fill-opacity:1;stroke-width:27.17825317"
+         id="path16196"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+         id="path16198"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62920;fill-opacity:1;stroke-width:27.17825317"
+         id="path16200"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16202"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16204"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16206"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16208"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16210"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a9;fill-opacity:1;stroke-width:27.17825317"
+         id="path16212"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16214"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d632;fill-opacity:1;stroke-width:27.17825317"
+         id="path16216"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path16218"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d66d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16220"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16222"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16224"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#93d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16226"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62087;fill-opacity:1;stroke-width:27.17825317"
+         id="path16228"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67a;fill-opacity:1;stroke-width:27.17825317"
+         id="path16230"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2071d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16232"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16234"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6204b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16236"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2047d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16238"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d66920;fill-opacity:1;stroke-width:27.17825317"
+         id="path16240"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20bed6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16242"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d625;fill-opacity:1;stroke-width:27.17825317"
+         id="path16244"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16246"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16248"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+         id="path16250"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#54d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16252"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16254"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16256"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16258"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       id="g89322"
+       transform="translate(-28.045835,63.500002)">
+      <rect
+         y="171.77791"
+         x="271.02481"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect89316"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccccsssc"
+         inkscape:connector-curvature="0"
+         d="m 276.76307,174.71979 -0.55614,0.62198 -0.43695,-0.73081 m -1.05123,2.34185 c -0.95683,0.31902 -1.98272,-0.0735 -2.49411,-0.95422 -0.51138,-0.88073 -0.37872,-2.02658 0.32253,-2.78574 0.70125,-0.75916 1.79345,-0.93931 2.65528,-0.43797 0.86184,0.50135 1.27501,1.55717 1.00445,2.56688"
+         style="fill:none;stroke:#0000ff;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         id="path89318" />
+      <path
+         sodipodi:nodetypes="ccc"
+         inkscape:connector-curvature="0"
+         id="path89320"
+         d="m 274.66038,173.5735 -0.45573,1.26593 1.50534,1.16286"
+         style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1" />
+    </g>
+    <g
+       id="g16712"
+       transform="matrix(0.00129801,0,0,-0.00129801,251.34311,238.31008)"
+       style="opacity:1;fill:#ffffff;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#a3a3a3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16262"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16264"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16266"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16268"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path16270"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317"
+         id="path16272"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b2b2b2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16274"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f8f8f8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16276"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16278"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6d6d6d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16280"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ececec;fill-opacity:1;stroke-width:27.17825317"
+         id="path16282"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bdbdbd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16284"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16286"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16288"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path16290"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16292"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e3e3e3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16294"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16296"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16298"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path16300"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16302"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path16304"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path16306"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e7e7e7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16308"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16310"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16312"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16314"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16316"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#888888;fill-opacity:1;stroke-width:27.17825317"
+         id="path16318"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#606060;fill-opacity:1;stroke-width:27.17825317"
+         id="path16320"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16322"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16324"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path16326"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16328"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path16330"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fcfcfc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16332"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path16334"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16336"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#585858;fill-opacity:1;stroke-width:27.17825317"
+         id="path16338"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path16340"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16342"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path16344"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path16346"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path16348"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16350"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16352"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16354"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b5b5b5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16356"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path16358"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16360"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16362"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cacaca;fill-opacity:1;stroke-width:27.17825317"
+         id="path16364"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16366"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16368"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16370"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16372"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16374"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16376"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16378"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#626262;fill-opacity:1;stroke-width:27.17825317"
+         id="path16380"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16382"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path16384"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16386"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16388"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16390"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path16392"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path16394"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317"
+         id="path16396"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path16398"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16400"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16402"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16404"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16406"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path16408"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16410"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16412"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16414"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16416"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e8e8e8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16418"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16420"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path16422"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317"
+         id="path16424"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e6e6e6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16426"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dadada;fill-opacity:1;stroke-width:27.17825317"
+         id="path16428"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d0d0d0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16430"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path16432"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path16434"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#777777;fill-opacity:1;stroke-width:27.17825317"
+         id="path16436"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16438"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16440"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16442"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16444"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16446"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16448"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16450"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path16452"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16454"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16456"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16458"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317"
+         id="path16460"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path16462"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path16464"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#999999;fill-opacity:1;stroke-width:27.17825317"
+         id="path16466"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6e6e6e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16468"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16470"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aeaeae;fill-opacity:1;stroke-width:27.17825317"
+         id="path16472"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16474"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e7e7e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16476"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16478"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f8f8f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16480"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path16482"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16484"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16486"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ededed;fill-opacity:1;stroke-width:27.17825317"
+         id="path16488"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16490"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#616161;fill-opacity:1;stroke-width:27.17825317"
+         id="path16492"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#787878;fill-opacity:1;stroke-width:27.17825317"
+         id="path16494"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c8c8c8;fill-opacity:1;stroke-width:27.17825317"
+         id="path16496"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16498"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#727272;fill-opacity:1;stroke-width:27.17825317"
+         id="path16500"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16502"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16504"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16506"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16508"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16510"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c5c5c5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16512"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16514"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317"
+         id="path16516"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path16518"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path16520"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16522"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16524"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16526"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#848484;fill-opacity:1;stroke-width:27.17825317"
+         id="path16528"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6c6c6c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16530"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317"
+         id="path16532"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7f7f7f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16534"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eaeaea;fill-opacity:1;stroke-width:27.17825317"
+         id="path16536"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16538"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16540"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#fbfbfb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16542"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path16544"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16546"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16548"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path16550"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16552"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16554"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f2f2f2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16556"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16558"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#949494;fill-opacity:1;stroke-width:27.17825317"
+         id="path16560"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path16562"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16564"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d6d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16566"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dcdcdc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16568"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#898989;fill-opacity:1;stroke-width:27.17825317"
+         id="path16570"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8d8d8d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16572"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d5d5d5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16574"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a6a6a6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16576"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f3f3f3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16578"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16580"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7a7a7a;fill-opacity:1;stroke-width:27.17825317"
+         id="path16582"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path16584"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16586"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317"
+         id="path16588"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16590"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#525252;fill-opacity:1;stroke-width:27.17825317"
+         id="path16592"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dbdbdb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16594"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16596"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c1c1c1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16598"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16600"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16602"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16604"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16606"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16608"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path16610"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path16612"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16614"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1b1b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16616"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path16618"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d3d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16620"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#929292;fill-opacity:1;stroke-width:27.17825317"
+         id="path16622"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16624"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#989898;fill-opacity:1;stroke-width:27.17825317"
+         id="path16626"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16628"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#858585;fill-opacity:1;stroke-width:27.17825317"
+         id="path16630"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path16632"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a2a2a2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16634"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16636"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path16638"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16640"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#959595;fill-opacity:1;stroke-width:27.17825317"
+         id="path16642"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path16644"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e9e9e9;fill-opacity:1;stroke-width:27.17825317"
+         id="path16646"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7b7b7b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16648"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#adadad;fill-opacity:1;stroke-width:27.17825317"
+         id="path16650"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path16652"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#e0e0e0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16654"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dddddd;fill-opacity:1;stroke-width:27.17825317"
+         id="path16656"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bbbbbb;fill-opacity:1;stroke-width:27.17825317"
+         id="path16658"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16660"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#f7f7f7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16662"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16664"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path16666"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9d9d9d;fill-opacity:1;stroke-width:27.17825317"
+         id="path16668"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path16670"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8a8a8a;fill-opacity:1;stroke-width:27.17825317"
+         id="path16672"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16674"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8c8c8c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16676"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16678"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16680"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a4a4a4;fill-opacity:1;stroke-width:27.17825317"
+         id="path16682"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d1d1d1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16684"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#868686;fill-opacity:1;stroke-width:27.17825317"
+         id="path16686"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9c9c9c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16688"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cccccc;fill-opacity:1;stroke-width:27.17825317"
+         id="path16690"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#aaaaaa;fill-opacity:1;stroke-width:27.17825317"
+         id="path16692"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#979797;fill-opacity:1;stroke-width:27.17825317"
+         id="path16694"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16696"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#dfdfdf;fill-opacity:1;stroke-width:27.17825317"
+         id="path16698"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5b5b5b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16700"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#939393;fill-opacity:1;stroke-width:27.17825317"
+         id="path16702"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#eeeeee;fill-opacity:1;stroke-width:27.17825317"
+         id="path16704"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#646464;fill-opacity:1;stroke-width:27.17825317"
+         id="path16706"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ffffff;fill-opacity:1;stroke-width:27.17825317"
+         id="path16708"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9f9f9f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16710"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       id="g17164"
+       transform="matrix(0.00129801,0,0,-0.00129801,265.37476,238.31008)"
+       style="opacity:1;fill:#11ff00;stroke:none;stroke-width:27.17825317">
+      <path
+         style="opacity:1;fill:#6dd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16714"
+         d="m 3540,12784 c -19,-7 -45,-13 -57,-13 -28,-1 -37,-16 -28,-48 6,-24 9,-25 54,-19 43,6 49,4 54,-14 8,-31 25,-24 48,21 17,34 19,47 10,65 -12,26 -29,28 -81,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path16716"
+         d="m 3786,12754 c -19,-18 -19,-20 -5,-45 8,-16 7,-26 -5,-44 -16,-24 -15,-25 10,-31 24,-6 93,5 136,21 12,5 17,0 20,-17 3,-22 11,-24 57,-14 8,1 20,11 27,21 13,18 14,18 34,0 11,-10 22,-33 26,-52 9,-49 45,-73 111,-73 48,0 54,2 63,26 6,14 10,38 10,54 0,36 -37,58 -113,67 -29,3 -67,14 -84,25 -34,20 -58,16 -49,-8 10,-27 -9,-13 -36,26 -27,39 -29,40 -89,40 -33,0 -69,4 -79,10 -14,7 -23,6 -34,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#36d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16718"
+         d="m 4480,12755 c 0,-8 5,-15 10,-15 6,0 10,7 10,15 0,8 -4,15 -10,15 -5,0 -10,-7 -10,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+         id="path16720"
+         d="m 3665,12700 c -38,-40 -25,-56 34,-40 46,12 60,32 41,55 -19,23 -43,18 -75,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6d320;fill-opacity:1;stroke-width:27.17825317"
+         id="path16722"
+         d="m 4567,12713 c -4,-3 -7,-17 -7,-29 0,-20 9,-26 53,-38 28,-8 67,-18 86,-21 l 34,-7 -33,40 c -39,49 -110,78 -133,55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16724"
+         d="m 3108,12673 c -30,-3 -38,-9 -38,-24 0,-17 8,-19 85,-19 77,0 85,2 85,19 0,28 -32,34 -132,24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16726"
+         d="m 2951,12661 c -32,-20 21,-41 63,-25 13,5 14,9 5,20 -13,16 -47,18 -68,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+         id="path16728"
+         d="m 4320,12585 c -11,-13 -11,-23 0,-55 18,-56 44,-80 85,-80 19,0 36,-4 39,-9 4,-5 43,-21 89,-36 65,-20 89,-24 109,-16 18,7 38,7 60,0 18,-5 60,-7 93,-4 57,6 61,5 87,-23 27,-29 58,-45 111,-57 22,-4 27,-11 25,-28 -3,-21 0,-22 57,-19 51,3 66,0 98,-23 36,-24 42,-25 75,-13 21,7 38,13 40,14 2,1 -4,16 -13,33 -14,29 -19,31 -68,31 -45,0 -61,5 -103,36 -38,27 -56,34 -80,30 -26,-3 -34,0 -47,24 -21,34 -73,60 -122,60 -28,0 -47,8 -73,31 -35,31 -36,31 -112,25 -74,-7 -78,-6 -93,17 -10,16 -25,24 -46,24 -16,0 -48,12 -70,26 -47,31 -120,37 -141,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16730"
+         d="m 3235,12561 c -4,-7 -53,-11 -128,-11 -82,0 -140,-6 -177,-16 -32,-9 -97,-17 -155,-18 -110,-1 -146,-14 -167,-62 -20,-42 -2,-48 165,-52 86,-2 165,-9 182,-16 25,-11 40,-8 110,16 84,29 171,36 232,19 23,-7 37,-5 50,5 24,18 60,17 130,-2 62,-17 211,-20 226,-5 5,5 17,1 28,-10 14,-14 33,-19 70,-19 53,0 86,-12 106,-39 10,-15 16,-14 61,2 66,23 72,22 122,-14 23,-17 60,-37 82,-45 21,-7 52,-22 66,-33 15,-10 66,-26 112,-34 47,-8 103,-24 125,-35 104,-55 103,-54 152,-38 33,11 50,13 65,5 16,-8 17,-13 7,-25 -19,-23 5,-67 32,-59 14,5 38,-4 79,-29 32,-20 65,-36 74,-36 10,0 15,-8 13,-22 -2,-20 4,-23 53,-30 31,-5 70,-19 91,-34 41,-28 108,-36 133,-15 23,19 20,56 -10,107 -24,41 -29,44 -67,44 -27,1 -57,10 -82,25 -22,14 -49,25 -60,25 -11,0 -26,9 -32,20 -7,10 -32,24 -55,30 -24,7 -57,20 -74,31 -22,13 -41,17 -63,13 -26,-6 -37,-1 -72,31 -31,27 -47,35 -63,31 -77,-23 -83,-21 -135,35 l -49,53 -70,4 c -62,4 -74,8 -98,33 -23,24 -36,29 -73,29 -34,0 -72,12 -141,45 -99,47 -132,53 -185,34 -28,-10 -36,-9 -63,11 -24,18 -38,21 -66,16 -24,-5 -61,0 -110,14 -58,16 -97,20 -187,18 -63,-2 -128,1 -146,5 -20,5 -33,4 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#76d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16732"
+         d="m 2455,12420 c 4,-6 11,-8 16,-5 14,9 11,15 -7,15 -8,0 -12,-5 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62025;fill-opacity:1;stroke-width:27.17825317"
+         id="path16734"
+         d="m 3326,12314 c -20,-18 -35,-24 -50,-19 -72,23 -114,18 -149,-20 -23,-25 -24,-25 -63,-9 -33,14 -64,16 -202,11 -124,-4 -170,-2 -195,8 -23,10 -45,11 -79,5 -28,-6 -60,-5 -80,0 -47,14 -113,12 -188,-5 -86,-20 -106,-32 -121,-69 -7,-17 -19,-39 -27,-49 -40,-46 59,-61 153,-23 37,15 85,26 111,26 25,0 54,4 64,10 13,7 27,5 50,-7 23,-11 47,-14 88,-10 39,4 64,1 84,-9 20,-10 53,-14 106,-12 64,2 86,-2 129,-22 51,-23 52,-23 79,-4 14,10 36,25 48,31 28,17 216,17 286,0 30,-7 93,-13 140,-12 80,0 85,1 88,23 3,23 26,30 37,12 4,-6 28,-21 54,-35 42,-21 59,-24 137,-21 65,2 98,8 122,22 33,19 33,19 52,-4 23,-28 36,-23 45,20 11,47 -28,78 -98,78 -31,0 -62,6 -75,16 -12,8 -79,24 -148,35 -69,10 -131,22 -137,26 -6,3 -54,9 -106,13 -53,4 -103,9 -111,13 -9,4 -27,-4 -44,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16736"
+         d="m 5360,12176 c 0,-33 20,-53 41,-40 16,10 9,53 -10,64 -29,15 -31,13 -31,-24 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16738"
+         d="m 4118,12150 c -1,-16 -2,-37 -2,-47 -1,-10 11,-20 28,-26 26,-9 32,-7 51,15 20,24 23,24 56,11 19,-8 43,-28 54,-46 20,-31 22,-32 115,-39 52,-4 103,-9 113,-12 25,-6 47,3 47,20 0,8 -10,14 -24,14 -13,0 -43,16 -67,35 -53,42 -122,65 -198,65 -39,0 -65,6 -86,20 -16,11 -42,20 -57,20 -24,0 -28,-4 -30,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path16740"
+         d="m 5062,12118 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c7d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16742"
+         d="m 2586,12049 c -34,-18 -44,-19 -82,-10 -34,9 -63,8 -130,-4 -48,-8 -104,-15 -126,-15 -22,0 -46,-7 -54,-15 -9,-8 -27,-15 -40,-15 -64,0 -104,-35 -128,-112 -9,-31 -26,-20 -26,17 0,26 -4,35 -16,35 -14,0 -16,-8 -11,-41 10,-72 19,-76 147,-55 61,9 136,27 168,38 63,23 130,35 272,47 132,12 161,25 175,83 14,53 -81,84 -149,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16744"
+         d="m 3219,12035 c -3,-2 -48,-9 -100,-15 -101,-11 -168,-29 -239,-65 -25,-12 -63,-28 -85,-34 -23,-6 -65,-28 -94,-50 -42,-31 -65,-41 -110,-46 -63,-7 -73,-10 -191,-59 -79,-33 -93,-36 -189,-36 h -103 l -34,-37 c -30,-32 -32,-39 -20,-52 8,-9 16,-29 18,-45 3,-30 3,-30 62,-27 35,1 70,10 90,22 24,15 41,18 79,13 40,-6 53,-3 87,20 22,14 70,33 108,41 37,9 77,17 88,20 12,3 41,21 64,40 57,47 207,95 320,102 63,4 92,10 113,25 21,14 36,18 55,13 15,-4 50,-7 77,-6 28,0 86,1 130,1 44,0 114,6 155,14 41,8 78,12 82,10 4,-3 14,9 23,26 13,25 22,30 51,30 27,0 36,-5 43,-24 10,-25 30,-36 66,-36 13,0 27,-5 31,-11 4,-8 25,-9 63,-4 31,3 72,7 91,8 19,1 45,8 57,14 17,10 28,10 57,-2 19,-8 55,-15 80,-15 34,0 48,-5 60,-21 9,-14 21,-19 31,-15 9,3 36,-3 59,-14 35,-15 56,-18 113,-13 48,4 89,1 135,-11 67,-17 88,-14 130,16 24,18 47,-4 28,-26 -21,-27 -5,-43 51,-49 30,-4 66,-16 81,-27 34,-25 45,-25 58,0 14,27 32,25 61,-6 33,-35 77,-57 102,-50 15,4 31,-3 50,-22 28,-26 28,-27 58,-9 38,21 41,21 69,-3 13,-11 35,-20 49,-20 14,0 48,-16 76,-35 64,-46 127,-63 250,-67 l 100,-3 3,36 c 4,48 -22,69 -95,78 -32,4 -80,19 -108,34 -27,15 -61,27 -75,27 -14,0 -34,7 -44,15 -11,8 -31,15 -46,15 -14,0 -42,11 -63,26 -56,37 -112,54 -184,54 -56,0 -67,3 -88,26 -20,21 -27,24 -45,14 -17,-9 -25,-7 -47,9 -19,16 -40,21 -84,21 -72,0 -107,13 -118,43 -12,30 -93,51 -142,37 -38,-11 -297,-1 -305,12 -3,4 -25,8 -48,8 -24,0 -57,7 -72,15 -16,8 -53,15 -82,15 -29,0 -67,7 -84,16 -24,12 -36,14 -55,5 -19,-9 -29,-7 -49,6 -22,14 -33,15 -72,5 -26,-6 -76,-9 -112,-6 -36,3 -120,9 -188,13 -67,4 -125,11 -129,14 -3,4 -18,-1 -33,-9 -24,-15 -29,-15 -58,0 -31,16 -54,20 -63,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16746"
+         d="m 5246,11998 c -3,-7 -6,-35 -9,-61 -4,-46 -3,-48 27,-61 17,-7 39,-23 50,-34 33,-38 77,-38 151,-1 36,19 64,38 62,44 -2,5 -25,25 -51,43 -41,27 -98,49 -209,79 -9,2 -19,-2 -21,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6208b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16748"
+         d="m 5568,11905 c -3,-3 -2,-20 1,-38 6,-26 12,-32 31,-32 29,0 40,36 20,61 -12,14 -42,19 -52,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16750"
+         d="m 5466,11791 c -16,-17 -16,-19 3,-24 24,-6 57,16 47,31 -11,17 -31,15 -50,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+         id="path16752"
+         d="m 1757,11783 c -10,-15 10,-35 29,-31 26,5 24,32 -3,36 -11,2 -23,-1 -26,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+         id="path16754"
+         d="m 5706,11771 c -3,-5 2,-27 12,-50 13,-31 22,-41 37,-39 29,4 29,31 0,67 -27,32 -40,38 -49,22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d671;fill-opacity:1;stroke-width:27.17825317"
+         id="path16756"
+         d="m 3142,11719 c -63,-25 -86,-29 -169,-29 h -95 l -35,-37 c -26,-29 -36,-35 -42,-24 -7,11 -13,11 -32,-2 -13,-8 -42,-18 -64,-22 -22,-4 -85,-22 -140,-41 -55,-19 -127,-42 -160,-50 -33,-9 -85,-29 -115,-45 -30,-15 -83,-33 -118,-38 -37,-6 -85,-23 -116,-41 -42,-24 -65,-30 -109,-30 -49,0 -59,-3 -73,-25 -12,-19 -25,-25 -52,-25 -22,0 -54,-12 -86,-32 -28,-17 -62,-38 -76,-47 -14,-8 -37,-14 -51,-12 -21,2 -33,-6 -54,-33 -33,-44 -79,-73 -159,-100 -52,-19 -61,-25 -59,-44 2,-18 -4,-26 -27,-34 -24,-8 -30,-16 -30,-39 0,-36 27,-39 68,-9 15,11 36,21 47,23 11,2 81,33 155,69 131,64 157,75 247,98 23,6 55,21 70,33 15,13 48,29 73,36 108,31 128,41 140,72 9,22 17,28 29,24 9,-4 33,-9 54,-12 33,-5 43,-2 70,25 29,28 38,31 87,30 38,-1 70,6 105,21 28,13 71,29 97,37 26,8 50,19 53,24 3,6 21,10 39,10 65,0 93,18 121,76 18,38 31,54 45,54 16,0 19,-5 14,-29 -7,-33 8,-48 26,-26 10,12 15,12 34,0 29,-19 76,-6 126,34 44,35 50,36 120,27 40,-5 76,-2 132,12 64,16 80,17 100,6 57,-32 119,-9 159,58 36,62 63,63 89,3 23,-55 41,-63 86,-41 43,20 68,20 84,1 18,-21 62,-19 110,6 25,13 51,19 68,16 167,-32 161,-32 213,-14 57,21 74,16 58,-15 -10,-18 -8,-25 11,-40 21,-17 23,-17 60,4 l 38,22 36,-28 c 28,-21 44,-26 63,-21 17,4 48,-2 85,-16 58,-21 59,-22 94,-3 l 35,19 35,-42 36,-43 h 76 c 63,0 87,-5 132,-27 39,-19 79,-28 135,-33 64,-5 88,-12 119,-33 44,-31 60,-33 100,-12 36,19 56,19 56,1 0,-22 98,-99 129,-101 15,-1 51,-19 80,-39 53,-36 79,-45 182,-66 32,-6 78,-25 104,-43 27,-18 60,-40 74,-49 38,-26 66,-22 96,14 l 27,32 -25,7 c -14,4 -51,25 -83,48 -31,23 -62,41 -67,41 -6,0 -28,15 -51,33 -71,58 -123,86 -214,116 -48,15 -107,38 -131,50 -25,13 -53,20 -65,17 -16,-4 -24,1 -31,17 -9,19 -19,22 -75,25 -56,3 -67,0 -82,-18 -9,-11 -18,-17 -20,-12 -1,4 -32,28 -68,52 -59,40 -70,44 -122,42 -43,-1 -62,3 -81,18 -30,24 -56,25 -83,5 -30,-23 -47,-19 -40,9 5,19 0,29 -16,40 -25,18 -89,21 -104,6 -6,-6 -27,-1 -59,15 -28,14 -80,29 -116,34 -37,5 -77,15 -90,22 -29,15 -165,33 -238,31 -30,-1 -77,6 -105,14 -43,14 -115,17 -436,20 l -385,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317"
+         id="path16758"
+         d="m 5831,11699 c -45,-27 -29,-45 28,-29 43,11 49,18 29,38 -16,16 -17,15 -57,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16760"
+         d="m 1942,11615 c -7,-8 -22,-15 -33,-15 -16,0 -19,-4 -14,-22 6,-18 4,-20 -11,-13 -88,39 -224,-10 -224,-81 0,-12 -6,-15 -22,-10 -64,18 -79,18 -99,0 -14,-12 -18,-25 -14,-44 5,-21 -2,-32 -40,-63 -66,-56 -57,-100 13,-63 15,8 43,30 61,50 23,23 44,36 61,36 14,0 30,4 36,10 5,5 38,16 73,24 35,8 73,24 85,34 28,26 64,44 101,52 20,4 31,13 35,30 8,33 28,36 39,7 8,-20 15,-24 33,-20 13,4 26,11 30,16 9,14 -2,37 -17,37 -8,0 -27,11 -43,25 -35,29 -33,29 -50,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16762"
+         d="m 4135,11526 c -18,-13 -18,-14 3,-25 24,-13 71,-14 90,-2 11,6 10,11 -3,25 -20,20 -64,21 -90,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16764"
+         d="m 3210,11475 c -36,-8 -87,-14 -113,-15 -26,0 -64,-9 -85,-19 -21,-11 -80,-27 -132,-35 -58,-10 -111,-26 -137,-41 -23,-14 -51,-25 -63,-25 -27,0 -76,-25 -87,-45 -7,-12 -16,-13 -42,-5 -18,5 -47,6 -64,3 -39,-8 -162,-59 -241,-102 -42,-22 -72,-31 -106,-31 -33,0 -64,-9 -104,-30 -31,-17 -78,-35 -105,-41 -28,-6 -58,-20 -72,-35 -14,-15 -34,-24 -53,-24 -17,0 -58,-13 -91,-28 -33,-16 -72,-32 -87,-35 -14,-4 -62,-29 -105,-56 -95,-59 -165,-94 -237,-122 -50,-18 -106,-66 -106,-90 0,-19 32,-21 98,-6 37,8 83,18 103,21 20,4 51,20 70,37 46,42 73,55 144,68 108,22 169,42 225,76 30,19 108,50 173,69 119,36 152,50 197,86 14,10 66,30 117,43 50,14 104,34 120,45 17,12 43,20 65,19 26,-1 54,10 96,36 62,38 152,67 210,67 59,0 96,29 87,68 -6,26 6,28 38,7 18,-11 46,-14 120,-11 90,4 101,7 139,35 49,36 59,38 83,11 10,-11 27,-20 38,-20 37,0 98,24 120,47 27,28 42,29 60,2 14,-19 27,-21 153,-25 92,-2 151,-9 179,-19 25,-10 63,-15 100,-13 50,3 61,7 71,26 17,34 28,40 20,11 -5,-23 -1,-29 27,-42 27,-13 69,-15 245,-13 117,2 215,0 218,-5 3,-5 -2,-9 -11,-9 -43,0 1,-26 105,-62 85,-29 137,-41 200,-45 57,-4 95,-12 116,-24 19,-11 50,-19 78,-19 26,0 57,-6 69,-14 12,-8 50,-20 85,-27 40,-7 75,-22 98,-40 37,-29 49,-33 167,-49 54,-7 74,-14 92,-34 14,-15 35,-26 50,-26 14,0 43,-13 63,-30 40,-32 144,-74 225,-92 38,-8 63,-22 100,-57 47,-43 52,-46 101,-44 61,3 165,-35 211,-77 28,-26 110,-59 184,-75 32,-7 33,-6 20,12 -53,72 -70,88 -120,113 -30,16 -77,45 -102,64 -26,20 -51,36 -57,36 -5,0 -18,-10 -30,-22 l -20,-22 -30,36 c -17,20 -47,42 -68,49 -20,6 -50,23 -67,36 -50,40 -136,93 -151,93 -8,0 -51,19 -97,42 -70,36 -93,43 -163,48 -72,4 -87,9 -128,38 -62,44 -111,64 -155,61 -27,-2 -46,4 -72,23 -50,38 -92,57 -140,64 -26,4 -55,17 -71,32 -24,22 -31,24 -67,14 -35,-8 -54,-6 -131,19 -50,16 -106,29 -125,29 -19,0 -52,6 -72,14 -63,24 -193,45 -273,43 -61,-1 -87,3 -140,25 -60,25 -74,26 -157,21 -70,-4 -103,-2 -142,11 -72,23 -236,22 -335,-4 -72,-18 -80,-18 -119,-3 -57,21 -129,24 -207,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16766"
+         d="m 5860,11419 c -25,-55 -25,-64 -1,-88 17,-17 24,-18 49,-9 24,10 37,7 87,-17 32,-16 72,-42 88,-58 24,-23 35,-28 60,-23 17,3 36,11 44,17 19,16 16,53 -5,72 -28,25 -87,47 -110,40 -18,-4 -22,-1 -22,21 0,20 -5,26 -22,26 -12,0 -34,11 -48,25 -15,14 -43,28 -63,32 -36,5 -37,4 -57,-38 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317"
+         id="path16768"
+         d="m 3265,11240 c -27,-5 -70,-17 -95,-26 -25,-9 -65,-20 -90,-23 -43,-6 -45,-7 -42,-36 2,-17 10,-41 19,-54 14,-21 20,-23 68,-17 28,3 71,13 95,21 51,18 114,19 173,3 40,-10 48,-9 82,12 36,22 41,23 193,16 87,-4 177,-12 202,-17 32,-7 67,-7 121,2 73,12 78,11 108,-10 33,-24 49,-24 108,0 29,12 37,10 88,-15 66,-32 238,-78 260,-70 12,5 15,18 12,55 -2,27 -6,52 -9,54 -6,6 -138,42 -198,54 -25,5 -99,12 -165,16 -66,4 -131,12 -144,17 -16,6 -52,3 -109,-8 -84,-17 -86,-17 -126,4 -35,19 -58,22 -156,22 -63,0 -128,0 -145,-2 -16,-1 -68,1 -115,4 -47,4 -107,2 -135,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path16770"
+         d="m 2905,11159 c -91,-20 -125,-32 -140,-49 -12,-13 -26,-17 -55,-13 -32,4 -40,2 -49,-16 -10,-18 -9,-21 9,-21 17,0 20,-4 15,-20 -8,-26 5,-26 89,0 49,16 71,18 85,10 33,-17 65,-11 115,20 l 48,31 -19,32 c -21,35 -38,40 -98,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path16772"
+         d="m 4619,11076 c -34,-74 30,-106 208,-106 63,0 123,-5 134,-10 10,-6 26,-25 35,-42 16,-30 16,-31 80,-25 71,5 75,3 166,-80 48,-44 75,-51 121,-34 28,11 44,60 29,86 -13,24 -172,95 -212,95 -21,0 -50,10 -73,25 -26,18 -54,27 -95,30 -31,2 -111,22 -177,44 -142,49 -200,53 -216,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d643;fill-opacity:1;stroke-width:27.17825317"
+         id="path16774"
+         d="m 2500,11031 c -19,-11 -43,-28 -53,-39 -16,-17 -23,-19 -43,-10 -19,9 -32,8 -60,-6 -20,-9 -63,-19 -97,-23 -45,-4 -74,-14 -104,-35 -47,-31 -161,-88 -179,-88 -23,0 -150,-46 -174,-63 -13,-9 -34,-17 -45,-17 -12,0 -57,-18 -102,-39 -44,-22 -113,-48 -152,-59 -43,-12 -85,-32 -104,-49 -18,-16 -66,-39 -110,-52 -43,-14 -91,-37 -109,-53 l -33,-28 30,-25 c 46,-39 65,-39 129,-6 36,20 73,31 98,31 63,0 78,13 78,69 0,26 3,50 6,53 3,4 22,-5 41,-18 47,-32 58,-31 120,12 40,28 70,38 135,50 63,10 109,27 192,69 59,30 117,55 128,55 10,0 35,9 56,19 20,10 98,40 172,66 130,45 319,135 341,162 9,10 7,13 -10,13 -12,0 -24,7 -27,15 -9,21 -80,19 -124,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d68220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16776"
+         d="m 6105,11010 c -8,-14 3,-30 21,-30 8,0 14,9 14,20 0,21 -24,28 -35,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4720d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16778"
+         d="m 6182,10998 c -7,-7 -12,-17 -12,-23 0,-22 56,-64 125,-95 38,-17 78,-38 87,-47 17,-15 48,-12 48,4 0,4 -16,19 -36,32 -22,15 -37,35 -41,53 -5,28 -6,28 -25,11 -17,-15 -21,-15 -28,-3 -6,8 -10,22 -10,31 0,10 -16,23 -40,33 -48,19 -53,19 -68,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16780"
+         d="m 3515,10983 c -88,-9 -195,-15 -237,-14 -52,1 -106,-6 -160,-20 -103,-26 -232,-49 -276,-49 -27,0 -45,-11 -93,-57 -55,-52 -61,-55 -85,-45 -54,25 -117,11 -189,-43 -20,-15 -52,-25 -93,-30 -38,-4 -86,-19 -120,-36 -39,-20 -66,-27 -84,-23 -19,4 -32,-1 -47,-17 -15,-17 -31,-22 -55,-21 -24,2 -84,-19 -198,-68 -89,-40 -190,-78 -223,-87 -66,-17 -124,-43 -171,-78 -16,-13 -49,-29 -73,-36 -41,-12 -68,-40 -56,-58 10,-17 77,-33 116,-28 21,3 52,15 68,26 17,12 99,47 183,77 84,30 176,63 203,73 28,11 68,25 90,33 33,11 44,22 64,63 l 23,49 14,-26 c 19,-37 39,-41 108,-19 33,10 97,30 141,43 70,21 80,27 80,47 0,21 6,24 50,26 70,3 196,50 218,80 16,22 27,25 77,25 32,0 62,5 65,11 14,22 54,28 92,15 35,-12 42,-11 108,20 99,46 154,58 228,50 34,-4 73,-7 87,-8 37,-1 147,29 176,48 23,15 28,15 62,1 63,-27 290,-38 467,-23 49,4 85,1 120,-10 27,-8 86,-19 130,-23 78,-8 114,-20 185,-61 23,-13 53,-20 88,-20 55,0 124,-16 220,-51 29,-10 63,-19 76,-19 13,0 45,-10 72,-21 41,-19 55,-20 87,-12 37,10 41,9 66,-19 21,-23 43,-33 111,-48 47,-10 140,-39 208,-64 68,-25 131,-46 140,-46 9,0 40,-14 67,-30 28,-16 57,-30 66,-30 9,0 34,-13 56,-29 22,-16 55,-32 74,-36 19,-4 77,-20 130,-36 53,-16 103,-29 112,-29 37,0 28,25 -26,76 -48,45 -70,57 -164,88 -59,20 -116,36 -127,36 -10,0 -34,14 -53,30 -31,28 -53,35 -95,31 -9,-1 -47,17 -84,40 -64,39 -69,40 -81,23 -7,-10 -13,-21 -13,-26 0,-4 -7,-8 -15,-8 -8,0 -15,8 -15,18 0,27 -20,42 -56,42 -20,0 -45,11 -68,29 -41,33 -96,46 -148,36 -30,-6 -37,-3 -51,18 -21,32 -80,54 -181,67 -44,6 -94,19 -112,29 -18,11 -67,29 -109,40 -70,20 -78,20 -106,5 -29,-15 -32,-14 -53,4 -56,52 -126,71 -301,83 -77,5 -201,14 -275,19 -252,18 -275,18 -435,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d63e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16782"
+         d="m 5422,10858 c -17,-17 -14,-59 6,-86 12,-16 37,-27 83,-37 37,-7 103,-32 147,-54 54,-27 95,-41 120,-41 26,0 45,-7 57,-20 20,-22 55,-26 73,-8 7,7 12,29 12,49 0,40 -11,49 -63,49 -30,0 -187,53 -238,80 -19,11 -24,10 -35,-5 -12,-16 -14,-14 -27,17 -11,26 -26,39 -56,51 -49,20 -63,21 -79,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16784"
+         d="m 3620,10758 c -19,-5 -39,-13 -45,-18 -5,-4 -55,-10 -110,-14 -55,-4 -129,-14 -164,-23 -36,-8 -79,-13 -101,-9 -23,4 -66,-2 -116,-15 -43,-11 -87,-18 -98,-15 -34,9 -107,-13 -169,-51 -50,-30 -63,-34 -78,-25 -10,7 -25,12 -32,12 -7,0 -69,-33 -137,-74 -111,-66 -128,-80 -151,-123 -18,-33 -35,-51 -55,-58 -17,-5 -47,-24 -69,-42 -21,-18 -73,-46 -116,-63 -43,-18 -85,-40 -94,-50 -9,-10 -37,-23 -63,-30 -55,-13 -127,-53 -135,-75 -5,-11 -15,-13 -37,-8 -24,4 -40,-1 -73,-24 -64,-46 -261,-142 -300,-146 -19,-2 -47,-13 -61,-25 -15,-11 -63,-34 -108,-51 -44,-17 -93,-40 -109,-51 -15,-12 -70,-36 -120,-55 -75,-28 -137,-62 -188,-102 -3,-2 1,-9 7,-15 7,-7 12,-20 12,-31 0,-16 -5,-18 -38,-12 -33,5 -41,2 -71,-29 -31,-32 -33,-36 -16,-42 22,-9 113,21 229,75 44,21 104,44 131,51 67,17 96,33 142,75 22,20 53,37 73,41 51,8 89,27 138,68 31,26 54,36 77,36 43,0 84,15 115,44 14,13 51,31 82,40 32,10 72,28 90,41 51,38 119,72 167,85 70,19 204,85 230,114 14,14 49,37 78,51 33,15 81,52 128,99 60,60 82,76 105,76 20,0 35,8 49,29 12,16 44,38 73,50 29,12 65,28 79,36 14,8 35,12 47,8 33,-8 86,5 125,31 22,15 58,27 94,31 65,8 98,25 108,55 8,26 35,26 42,0 3,-11 13,-20 22,-20 23,0 81,37 81,52 1,7 7,-2 15,-19 15,-35 28,-39 72,-22 15,6 57,13 93,15 36,2 106,8 157,14 79,9 96,9 122,-5 42,-21 52,-19 111,20 29,19 56,35 61,35 5,0 15,-15 23,-34 20,-49 35,-54 63,-21 22,25 25,26 42,11 28,-25 74,-29 149,-12 67,15 73,15 104,-3 98,-56 349,-125 483,-134 24,-2 56,-14 79,-30 21,-15 57,-32 79,-39 38,-12 40,-11 68,20 23,26 34,31 54,26 15,-4 25,-13 25,-24 0,-9 9,-29 21,-44 26,-33 71,-35 93,-4 24,34 19,63 -15,92 -33,28 -64,32 -103,15 -21,-10 -29,-8 -54,13 -22,19 -46,26 -94,31 -62,6 -130,26 -333,97 -49,17 -119,35 -155,40 -36,4 -72,11 -81,15 -10,4 -28,-4 -48,-21 l -32,-27 -15,22 c -18,25 -37,27 -54,6 -19,-23 -36,-18 -78,20 l -39,34 -149,-6 c -96,-4 -162,-2 -184,5 -57,17 -113,21 -150,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3a20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16786"
+         d="m 6045,10601 c -6,-11 9,-23 19,-14 9,9 7,23 -3,23 -6,0 -12,-4 -16,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+         id="path16788"
+         d="m 6113,10584 c -18,-9 -33,-22 -33,-30 0,-16 49,-54 106,-82 37,-19 43,-19 63,-6 25,18 44,10 36,-16 -4,-14 4,-21 35,-34 53,-21 57,-21 86,11 23,25 23,27 8,45 -10,10 -30,18 -45,18 -18,0 -45,15 -80,45 -46,39 -100,65 -134,65 -5,0 -25,-8 -42,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16790"
+         d="m 3630,10509 c -41,-5 -95,-7 -120,-4 -25,2 -74,-3 -110,-11 -38,-10 -116,-17 -190,-18 -110,-2 -132,-5 -186,-29 -34,-14 -102,-33 -152,-41 -71,-11 -108,-24 -164,-54 l -72,-40 35,-21 c 45,-28 88,-26 133,4 20,14 50,25 67,25 16,0 66,9 110,21 45,12 92,18 108,14 15,-3 41,-1 57,6 16,6 61,12 99,14 39,2 70,4 70,5 0,1 9,3 20,5 11,2 34,9 52,16 27,11 40,11 85,-4 34,-11 56,-13 62,-7 17,17 360,12 432,-6 66,-16 76,-14 136,28 14,10 21,9 40,-9 48,-43 86,-55 153,-48 46,5 72,2 99,-9 43,-18 236,-56 284,-56 19,0 47,-8 62,-17 24,-14 33,-15 55,-5 23,11 32,9 60,-8 25,-15 39,-18 57,-11 15,6 31,5 42,-1 9,-5 58,-13 107,-18 54,-5 100,-15 115,-25 15,-9 33,-13 45,-10 14,5 28,0 42,-13 13,-11 51,-24 95,-31 40,-7 78,-20 85,-28 34,-43 71,-72 100,-78 17,-4 82,-31 142,-60 61,-30 129,-58 152,-64 24,-5 67,-25 97,-45 93,-62 224,-106 338,-115 90,-7 103,-11 146,-41 37,-26 56,-33 89,-31 32,1 49,-5 73,-26 25,-20 36,-24 49,-16 27,17 26,52 -2,62 -13,5 -37,22 -53,38 -23,23 -42,31 -87,36 -76,9 -151,39 -336,132 -112,56 -161,75 -180,72 -32,-6 -169,44 -228,84 -24,15 -60,31 -80,35 -21,3 -81,26 -133,51 -116,54 -238,96 -258,88 -8,-3 -56,15 -106,40 -88,43 -97,45 -179,45 -79,0 -92,3 -129,27 -36,24 -54,29 -142,33 -79,4 -111,11 -144,28 -29,15 -59,23 -90,22 -56,-2 -122,11 -214,40 -45,14 -93,20 -145,20 -119,-1 -280,5 -353,12 -36,3 -99,2 -140,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d660;fill-opacity:1;stroke-width:27.17825317"
+         id="path16792"
+         d="m 2285,10444 c -12,-9 -31,-13 -46,-10 -14,3 -35,-1 -46,-9 -11,-8 -50,-21 -87,-29 -95,-22 -158,-52 -197,-92 -37,-38 -45,-41 -70,-18 -16,14 -20,14 -48,-1 -17,-8 -71,-29 -120,-45 -48,-15 -149,-58 -223,-94 -75,-36 -146,-66 -158,-66 -12,0 -38,-14 -58,-31 -24,-21 -42,-29 -58,-26 -16,3 -31,-4 -45,-19 -13,-13 -32,-24 -44,-24 -11,0 -41,-12 -66,-27 -25,-16 -54,-33 -65,-39 -22,-13 -29,-42 -14,-64 7,-12 12,-12 22,-2 7,7 38,12 74,12 75,0 109,11 149,50 39,37 74,50 140,50 68,0 96,11 154,59 59,49 76,57 133,65 55,8 273,116 305,151 26,29 85,55 125,55 17,0 47,9 67,19 63,33 173,81 186,81 24,0 57,34 50,53 -9,21 -33,22 -60,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16794"
+         d="m 6497,10444 c -14,-14 -7,-43 13,-54 10,-6 46,-19 80,-29 l 60,-19 v 22 c 0,30 -26,52 -78,66 -24,6 -49,13 -56,16 -6,2 -15,1 -19,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+         id="path16796"
+         d="m 5309,10403 c -7,-19 -7,-35 0,-50 9,-19 15,-21 63,-16 49,5 59,1 138,-42 85,-48 215,-95 238,-87 18,6 33,38 26,57 -8,19 -47,40 -94,49 -19,3 -62,20 -94,36 -32,17 -65,30 -73,30 -9,0 -28,11 -45,25 -24,21 -40,25 -89,25 -56,0 -60,-2 -70,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2069d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16798"
+         d="m 6187,10312 c -41,-45 -5,-82 90,-94 59,-7 74,-14 137,-61 39,-30 94,-66 121,-82 28,-16 65,-44 83,-62 38,-41 66,-40 70,1 5,43 -6,75 -35,102 -15,13 -31,34 -37,46 -7,13 -28,27 -52,34 -23,7 -54,20 -68,29 -15,10 -35,15 -48,12 -16,-4 -32,3 -59,28 -36,32 -70,46 -149,60 -28,5 -39,2 -53,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16800"
+         d="m 1250,10291 c -60,-6 -70,-10 -126,-57 -61,-50 -64,-58 -39,-91 1,-2 39,7 86,18 131,33 179,63 179,111 0,21 -5,28 -17,26 -10,0 -47,-4 -83,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#209cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16802"
+         d="m 3630,10242 c -60,-60 -33,-98 64,-88 47,5 73,2 102,-10 28,-12 51,-14 84,-9 25,4 65,7 89,6 29,-1 50,4 62,15 26,23 24,36 -10,69 -26,24 -39,28 -98,31 -37,2 -112,6 -165,10 l -98,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16804"
+         d="m 3437,10254 c -4,-4 -125,-10 -270,-14 -221,-5 -267,-9 -295,-24 -18,-9 -35,-23 -38,-31 -5,-11 -11,-11 -29,-3 -18,8 -36,8 -67,-1 -24,-6 -78,-13 -121,-15 -62,-3 -90,-9 -140,-34 -34,-17 -77,-34 -94,-37 -18,-4 -76,-31 -130,-61 -54,-29 -107,-54 -117,-54 -11,0 -38,-20 -62,-45 -33,-36 -52,-47 -90,-55 -77,-15 -206,-75 -234,-110 -16,-20 -34,-30 -51,-30 -15,0 -32,-6 -38,-14 -9,-10 -29,-14 -64,-13 -46,2 -57,-2 -92,-31 -22,-18 -85,-54 -140,-79 -55,-26 -131,-66 -169,-90 -37,-24 -98,-55 -135,-69 -71,-26 -287,-152 -315,-183 -24,-26 -17,-65 11,-69 12,-2 39,6 60,16 21,11 65,25 98,32 37,8 80,26 115,50 30,20 84,52 120,70 36,18 141,77 233,132 93,54 189,108 214,120 30,14 50,32 61,55 13,27 21,33 47,33 18,0 63,16 100,36 59,30 77,35 126,32 54,-2 59,-1 100,38 24,22 71,50 104,64 173,68 311,151 289,173 -3,3 -3,11 1,17 5,8 12,7 23,-3 24,-21 149,-4 224,30 47,21 68,25 110,20 39,-3 72,1 128,19 41,13 98,24 126,24 36,0 59,6 75,19 18,14 28,17 42,9 16,-8 119,-18 316,-31 30,-2 36,2 41,23 5,19 12,24 29,22 52,-8 -9,53 -64,64 -17,3 -33,2 -38,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6be20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16806"
+         d="m 4080,10219 c -6,-11 -8,-29 -5,-40 9,-27 62,-59 98,-59 15,0 45,-10 67,-22 34,-20 44,-21 89,-12 32,7 56,7 67,1 9,-5 48,-13 86,-17 38,-4 77,-15 86,-23 10,-9 29,-13 47,-10 23,3 43,-4 80,-29 131,-90 220,-142 282,-164 37,-13 74,-31 83,-39 9,-8 25,-15 35,-15 42,0 184,-51 225,-81 24,-18 73,-46 109,-62 91,-43 176,-92 244,-144 92,-69 116,-78 160,-59 49,20 57,43 25,70 -14,12 -51,42 -83,69 -32,26 -67,47 -80,47 -14,0 -37,15 -56,35 -18,19 -49,40 -69,46 -19,6 -73,31 -120,54 -47,24 -140,62 -205,85 -136,48 -241,99 -367,176 -48,30 -111,63 -139,74 -29,10 -64,30 -78,43 -22,21 -39,25 -120,31 -58,4 -99,2 -106,-4 -8,-7 -30,-1 -71,20 -59,30 -83,35 -206,44 -60,5 -69,3 -78,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16808"
+         d="m 5853,10225 c -36,-15 -42,-35 -17,-59 19,-20 159,-85 197,-93 16,-3 67,-27 114,-54 47,-26 109,-53 137,-60 28,-6 72,-22 97,-35 26,-13 68,-29 95,-35 26,-7 63,-23 82,-35 41,-28 98,-48 117,-40 39,15 -14,98 -71,112 -16,3 -50,19 -75,35 -25,16 -55,29 -65,29 -11,0 -42,14 -70,32 -27,17 -82,46 -123,65 -41,19 -86,42 -100,52 -14,10 -51,21 -81,24 -35,4 -72,17 -104,37 -61,38 -92,44 -133,25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16810"
+         d="m 4885,10142 c -11,-12 30,-42 58,-42 19,0 38,-10 56,-29 16,-17 41,-33 57,-37 44,-10 210,-71 294,-109 41,-19 98,-39 125,-46 29,-7 70,-28 99,-51 27,-21 58,-38 70,-38 12,0 43,-18 70,-40 35,-29 57,-40 82,-40 23,0 34,-5 34,-15 0,-8 19,-23 43,-33 23,-11 68,-42 100,-71 32,-28 67,-51 77,-51 12,0 26,-13 35,-30 9,-16 20,-30 25,-30 6,0 29,-17 53,-38 54,-49 229,-155 290,-176 75,-25 180,-82 207,-111 14,-15 39,-34 55,-42 17,-9 46,-29 65,-44 19,-16 50,-32 69,-35 18,-4 35,-13 38,-21 3,-8 42,-42 87,-76 44,-34 95,-77 112,-95 22,-24 38,-33 55,-30 22,3 24,7 21,48 -5,60 -30,103 -70,115 -18,6 -47,25 -64,42 -18,16 -59,49 -90,72 -32,23 -58,46 -58,51 0,10 -122,69 -183,89 -19,7 -60,36 -90,65 -69,67 -124,104 -207,140 -36,16 -85,41 -110,56 -25,15 -61,31 -80,35 -50,11 -126,51 -134,71 -18,48 70,52 159,7 33,-17 96,-45 140,-63 110,-45 273,-139 280,-160 8,-26 42,-45 120,-67 39,-11 78,-24 88,-28 15,-6 17,-1 17,48 0,66 -8,73 -135,127 -44,19 -115,55 -158,81 -42,26 -101,53 -130,59 -28,7 -77,24 -107,37 -39,17 -65,22 -88,18 -19,-4 -51,0 -75,8 -23,8 -73,19 -112,25 -55,8 -99,26 -210,83 -77,39 -158,84 -179,100 -23,17 -53,29 -70,29 -17,0 -45,8 -63,18 -133,73 -245,128 -283,138 -25,6 -79,27 -120,47 -65,30 -88,36 -167,40 -51,2 -95,2 -98,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16812"
+         d="m 3260,10080 c -95,-30 -190,-50 -284,-60 -102,-10 -131,-19 -196,-55 -14,-8 -70,-25 -125,-40 -108,-28 -178,-57 -239,-98 -25,-18 -52,-27 -77,-27 -21,0 -41,-5 -44,-10 -4,-6 -33,-24 -65,-40 -33,-16 -75,-44 -95,-61 -29,-26 -41,-30 -66,-25 -34,7 -94,-16 -103,-39 -8,-22 10,-27 54,-14 22,7 43,9 47,5 4,-3 -17,-31 -46,-60 -53,-54 -63,-86 -26,-86 25,0 125,79 144,113 27,51 48,67 87,67 26,0 46,8 71,30 27,24 43,30 79,30 33,0 52,6 68,21 25,24 131,69 164,69 54,0 142,65 142,106 0,27 48,16 62,-13 17,-36 57,-41 101,-15 17,11 51,25 74,31 23,6 51,23 61,36 15,19 29,25 58,25 45,0 198,27 236,41 15,6 29,17 32,25 7,17 -20,44 -44,44 -10,0 -24,2 -32,4 -7,2 -24,1 -38,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d64b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16814"
+         d="m 3935,10028 c -38,-6 -89,-9 -112,-9 -197,4 -253,3 -288,-9 -19,-6 -44,-23 -55,-37 -18,-24 -27,-26 -78,-24 -46,1 -70,-4 -120,-29 -35,-16 -61,-34 -58,-39 3,-5 26,-12 50,-15 36,-6 57,-2 108,20 61,26 67,26 193,20 102,-5 143,-3 188,9 72,19 102,19 225,0 54,-8 138,-17 187,-19 50,-3 107,-12 127,-20 20,-9 72,-20 115,-25 43,-5 102,-20 133,-34 30,-13 82,-30 115,-37 33,-7 87,-29 120,-48 32,-20 75,-38 95,-42 28,-4 38,-13 52,-41 21,-45 32,-54 93,-72 28,-9 84,-29 125,-46 41,-17 87,-33 102,-36 14,-3 46,-21 70,-40 24,-19 81,-54 128,-76 47,-23 98,-50 113,-61 16,-11 55,-33 88,-49 32,-16 59,-33 59,-39 0,-9 63,-54 149,-107 20,-13 52,-23 74,-23 32,0 41,-5 65,-40 31,-45 75,-70 122,-70 27,0 43,-11 89,-59 32,-34 79,-71 111,-87 30,-15 98,-59 150,-99 209,-158 267,-198 308,-216 24,-11 67,-39 95,-63 29,-24 66,-51 84,-59 17,-9 52,-41 78,-71 51,-61 180,-146 258,-172 95,-32 103,7 18,84 -33,28 -63,52 -68,52 -4,0 -42,33 -84,73 -42,41 -116,100 -165,132 -48,32 -99,72 -113,89 -54,66 -102,106 -143,117 -24,6 -58,24 -76,40 -18,16 -68,47 -112,69 -43,22 -81,44 -84,49 -11,17 -262,181 -277,181 -9,0 -26,12 -40,26 -31,34 -119,94 -189,129 -30,15 -111,62 -180,105 -263,162 -423,253 -493,280 -40,15 -85,35 -102,44 -16,9 -36,16 -43,16 -7,0 -59,24 -115,54 -56,30 -139,66 -185,81 -57,19 -89,35 -103,54 -26,33 -57,50 -92,51 -15,0 -46,12 -68,27 -36,24 -52,27 -123,28 -57,1 -98,8 -139,24 -37,14 -93,24 -155,28 -72,4 -103,11 -121,25 -13,10 -26,17 -30,17 -3,-1 -37,-6 -76,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16816"
+         d="m 3424,9795 c -40,-7 -88,-18 -107,-24 -26,-9 -56,-9 -114,-2 -136,18 -210,17 -234,-5 -14,-12 -43,-20 -88,-25 -54,-5 -77,-12 -112,-37 -30,-21 -64,-34 -104,-41 -61,-9 -183,-62 -230,-99 -14,-11 -45,-23 -68,-27 -67,-12 -162,-59 -188,-95 -21,-28 -28,-31 -61,-27 -38,5 -55,-3 -116,-55 -18,-15 -40,-28 -50,-28 -22,0 -87,-35 -134,-72 -21,-16 -66,-40 -100,-54 -60,-24 -64,-24 -91,-9 -28,17 -28,16 -64,-21 -34,-36 -39,-38 -97,-39 -52,-1 -69,-6 -107,-32 -24,-17 -78,-46 -119,-65 -41,-19 -92,-49 -112,-65 -21,-17 -55,-33 -77,-37 -38,-6 -95,-40 -345,-208 -142,-96 -166,-116 -166,-140 0,-17 7,-15 74,21 40,23 79,41 86,41 6,0 82,28 168,62 152,60 242,107 271,141 7,9 30,21 51,27 21,6 71,32 113,59 41,27 95,58 121,70 26,11 59,29 74,39 16,11 50,21 82,24 46,4 65,11 106,44 27,21 72,49 99,61 80,35 175,74 238,96 36,12 78,38 108,65 45,41 55,45 115,50 51,4 69,10 87,28 12,13 29,24 37,24 8,0 42,14 75,30 33,16 74,30 90,30 17,0 58,13 93,30 68,32 240,85 340,105 35,7 71,19 80,28 9,8 43,22 75,32 50,16 65,16 110,5 45,-10 68,-10 152,5 72,12 124,15 187,10 59,-4 94,-3 109,5 17,10 29,9 58,-3 27,-12 87,-17 246,-20 166,-3 229,-9 300,-25 50,-11 123,-26 163,-31 40,-6 130,-33 200,-60 214,-82 228,-86 258,-76 63,23 56,70 -13,90 -23,7 -65,24 -94,39 -29,14 -62,26 -73,26 -12,0 -44,11 -72,24 -54,25 -264,77 -379,94 -135,20 -342,30 -470,23 -33,-2 -87,0 -120,4 -57,7 -63,6 -94,-20 l -33,-28 -24,26 c -14,15 -28,27 -32,26 -4,0 -39,-7 -78,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d3d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16818"
+         d="m 6720,9650 c -36,-36 -26,-47 75,-80 52,-16 104,-30 115,-30 19,0 20,2 6,28 -44,84 -150,128 -196,82 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path16820"
+         d="m 1825,9635 c -16,-8 -52,-30 -78,-49 l -48,-35 26,-17 c 24,-16 29,-15 112,13 48,16 91,37 97,46 28,43 -47,72 -109,42 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620be;fill-opacity:1;stroke-width:27.17825317"
+         id="path16822"
+         d="m 3550,9609 c -50,-12 -329,-49 -367,-49 -18,0 -73,-13 -123,-30 -50,-16 -102,-30 -116,-30 -13,0 -44,-10 -67,-22 -23,-12 -85,-32 -137,-45 -67,-16 -111,-34 -148,-59 -34,-24 -75,-41 -119,-50 -125,-27 -232,-65 -291,-105 -34,-22 -80,-43 -107,-48 -31,-6 -58,-19 -79,-40 -24,-23 -41,-31 -69,-31 -45,0 -118,-27 -171,-64 -22,-14 -65,-34 -95,-42 -31,-9 -83,-31 -116,-49 -34,-18 -86,-40 -115,-48 -91,-27 -208,-100 -277,-173 l -63,-67 -59,7 c -59,7 -60,7 -86,-28 -15,-20 -39,-37 -56,-41 -59,-13 -245,-110 -302,-156 -31,-27 -77,-60 -102,-75 -29,-16 -45,-33 -45,-45 0,-27 27,-35 49,-15 10,9 35,16 61,16 31,0 53,7 77,26 18,14 48,30 66,36 17,6 75,39 127,73 70,46 124,72 208,100 89,30 117,44 133,67 12,16 30,28 43,28 13,0 43,16 68,35 26,20 63,38 89,43 27,5 82,33 139,69 52,33 106,64 120,68 14,4 54,23 90,43 36,20 104,55 151,79 47,23 94,52 104,63 13,15 26,19 44,15 30,-6 156,39 246,90 36,20 91,39 135,48 55,10 92,25 138,55 64,41 155,69 194,59 17,-5 97,31 170,76 11,8 28,7 57,-3 39,-12 44,-12 71,8 16,12 44,22 62,22 19,0 73,14 120,30 76,27 105,31 260,39 201,10 650,4 691,-9 24,-8 32,-5 53,15 57,57 19,89 -106,91 -160,3 -454,19 -500,28 -8,2 -31,-1 -50,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20b1d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16824"
+         d="m 1520,9485 c -28,-25 -63,-53 -78,-62 -15,-10 -52,-40 -83,-68 -35,-31 -76,-57 -110,-69 -30,-10 -92,-43 -138,-73 -46,-29 -97,-57 -115,-60 -50,-10 -87,-32 -154,-95 -36,-33 -76,-61 -93,-65 -22,-4 -34,-15 -44,-39 -8,-19 -26,-39 -40,-46 -25,-11 -26,-13 -9,-25 30,-22 59,-15 91,22 23,25 40,35 61,35 17,0 43,10 59,23 15,13 42,27 58,31 17,4 57,25 90,45 33,21 98,57 144,80 46,23 95,50 108,61 13,10 38,22 56,25 18,4 59,16 91,26 33,10 69,19 81,19 11,0 59,15 106,34 46,19 102,37 124,41 58,11 111,40 167,93 35,33 45,48 36,54 -23,14 -64,9 -82,-11 -10,-11 -45,-29 -77,-40 -33,-11 -73,-31 -88,-44 -19,-16 -52,-28 -100,-35 -39,-7 -86,-20 -106,-29 -19,-9 -38,-13 -42,-8 -5,4 -3,10 3,12 7,2 43,27 82,56 39,29 86,61 104,72 35,22 49,62 26,76 -33,22 -77,9 -128,-36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6205c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16826"
+         d="m 4395,9525 c -5,-2 -22,-6 -37,-9 -34,-8 -37,-26 -5,-26 12,0 39,-11 59,-25 20,-14 45,-25 54,-25 9,0 58,-14 108,-31 64,-22 117,-33 179,-37 83,-5 87,-4 87,16 0,44 -109,96 -234,112 -39,5 -95,14 -125,20 -55,10 -68,11 -86,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8fd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16828"
+         d="m 5890,9463 c 0,-14 -7,-34 -15,-43 -9,-10 -13,-23 -10,-31 7,-17 188,-121 207,-118 28,3 36,-2 62,-41 26,-39 74,-71 129,-84 15,-4 46,-24 68,-46 22,-21 71,-56 107,-76 37,-20 81,-47 97,-59 17,-12 54,-34 83,-49 120,-61 330,-202 382,-257 35,-37 60,-53 110,-69 86,-28 110,-45 110,-76 0,-28 19,-39 54,-30 53,13 35,65 -30,86 -21,7 -40,23 -49,40 -8,16 -34,42 -58,59 -23,16 -59,48 -80,71 -25,27 -70,56 -131,85 -60,29 -96,52 -103,67 -6,14 -46,41 -104,71 -105,55 -129,72 -129,97 0,18 -30,50 -48,50 -6,0 -24,11 -40,25 -16,13 -58,37 -93,52 -35,15 -91,42 -124,59 -33,18 -87,46 -120,63 -33,18 -71,46 -84,62 -34,44 -141,119 -168,119 -18,0 -23,-6 -23,-27 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620cf;fill-opacity:1;stroke-width:27.17825317"
+         id="path16830"
+         d="m 4935,9434 c -5,-1 -23,-5 -38,-8 -22,-5 -28,-12 -25,-29 2,-16 26,-34 93,-69 50,-25 115,-55 145,-65 30,-10 75,-30 99,-45 25,-16 51,-28 59,-28 14,0 66,-24 297,-135 61,-29 121,-56 135,-60 14,-4 45,-22 69,-39 81,-58 96,-66 128,-66 26,0 37,-7 60,-41 20,-30 41,-47 75,-59 26,-10 58,-26 71,-36 14,-11 73,-57 133,-105 60,-47 138,-105 174,-129 36,-24 79,-56 97,-71 18,-15 63,-46 100,-69 37,-22 87,-56 111,-75 24,-19 52,-35 62,-35 11,0 27,-12 37,-27 39,-57 261,-247 331,-282 32,-16 96,-52 142,-80 84,-50 85,-51 104,-31 27,27 11,58 -56,108 -29,22 -87,74 -128,116 -47,48 -82,76 -96,76 -24,0 -80,35 -135,85 -51,45 -180,135 -240,166 -28,14 -59,40 -69,57 -19,31 -94,92 -113,92 -5,0 -31,19 -57,43 -114,102 -164,140 -237,179 -43,23 -97,57 -121,75 -23,19 -69,45 -102,59 -66,26 -129,64 -295,174 -60,40 -155,95 -210,122 -54,27 -106,55 -115,62 -8,7 -47,20 -86,29 -39,9 -93,30 -120,46 -27,17 -87,42 -134,56 -47,14 -96,29 -110,34 -14,4 -29,7 -35,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16832"
+         d="m 3911,9382 c -37,-20 -76,-81 -62,-95 16,-16 124,-26 151,-13 44,20 39,86 -10,111 -37,19 -38,19 -79,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16834"
+         d="m 3519,9378 c -121,-10 -126,-12 -141,-38 -8,-15 -27,-29 -41,-32 -21,-4 -27,0 -31,19 -4,12 -11,23 -16,23 -5,0 -56,-13 -112,-30 -109,-31 -133,-49 -123,-90 8,-32 4,-30 61,-31 56,-2 105,16 151,55 19,16 34,22 38,16 9,-15 62,-12 98,6 26,14 47,15 137,8 197,-16 271,-4 278,43 7,51 -91,68 -299,51 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#25d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16836"
+         d="m 4091,9346 c -4,-6 -11,-19 -14,-28 -5,-15 0,-18 35,-18 29,0 54,-8 79,-26 34,-23 40,-24 77,-13 37,11 47,9 109,-16 52,-22 84,-28 135,-27 38,0 70,-4 74,-9 9,-15 84,-11 84,5 0,26 -12,46 -27,46 -8,0 -53,16 -101,36 -79,33 -93,36 -151,30 -53,-5 -68,-2 -84,11 -15,14 -39,18 -113,19 -57,0 -98,-4 -103,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+         id="path16838"
+         d="m 6940,9321 c -14,-28 -13,-31 15,-31 25,0 33,-14 15,-25 -18,-11 -11,-32 15,-43 26,-12 85,-16 85,-7 0,23 -46,86 -75,104 -44,26 -42,25 -55,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path16840"
+         d="m 2930,9258 c -14,-5 -78,-25 -143,-43 -64,-18 -136,-44 -160,-57 -23,-14 -53,-25 -67,-26 -36,-2 -180,-70 -187,-88 -3,-8 -18,-14 -37,-14 -17,0 -54,-9 -82,-19 -28,-11 -76,-23 -105,-27 -40,-5 -114,-36 -284,-120 -126,-63 -237,-114 -246,-114 -9,0 -38,-18 -64,-39 -33,-27 -68,-45 -114,-57 -36,-9 -120,-45 -186,-80 -66,-34 -144,-69 -173,-79 -29,-9 -63,-28 -75,-40 -12,-13 -77,-51 -145,-84 -175,-87 -391,-242 -408,-293 -12,-39 11,-42 78,-11 129,61 282,163 363,241 70,68 84,77 106,71 29,-7 129,30 164,61 30,26 59,39 112,50 68,12 209,68 241,94 15,13 41,28 59,34 18,6 58,28 90,50 32,21 76,45 98,52 22,7 67,30 101,51 34,22 119,60 190,85 71,24 154,58 184,74 30,15 72,31 92,35 20,4 58,18 84,31 29,15 65,24 91,24 45,0 74,10 106,38 19,17 28,20 251,78 142,36 186,52 186,65 0,11 -69,69 -83,68 -7,0 -23,-5 -37,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16842"
+         d="m 4738,9230 c -34,-21 -22,-53 31,-82 27,-16 57,-28 67,-28 11,0 57,-14 104,-30 46,-17 94,-30 106,-30 12,0 36,-11 53,-26 16,-14 58,-36 91,-50 34,-14 79,-36 99,-50 21,-13 73,-38 117,-55 43,-17 99,-41 124,-54 25,-13 72,-36 105,-50 33,-14 76,-41 95,-59 19,-19 51,-39 71,-45 20,-7 69,-36 109,-66 40,-30 93,-62 119,-71 25,-10 62,-32 81,-50 20,-18 51,-35 71,-39 28,-5 44,-17 67,-50 16,-23 55,-59 86,-80 31,-20 56,-41 56,-45 0,-5 20,-29 44,-53 31,-32 59,-50 95,-61 37,-11 65,-29 99,-64 31,-32 61,-52 83,-57 42,-9 55,-19 85,-67 16,-25 53,-55 120,-94 54,-32 145,-101 207,-157 62,-54 132,-113 157,-130 25,-16 75,-61 111,-98 72,-75 104,-89 141,-65 33,22 28,76 -7,76 -27,0 -39,13 -54,62 -15,45 -138,156 -243,219 -36,22 -117,86 -178,142 -134,122 -168,147 -196,147 -13,0 -43,20 -71,48 -26,26 -82,67 -123,92 -41,24 -114,82 -161,127 -71,68 -94,84 -128,89 -32,5 -48,16 -75,48 -18,23 -46,48 -62,56 -16,8 -51,34 -77,57 -26,23 -85,63 -130,89 -45,26 -108,66 -139,90 -32,23 -88,52 -125,65 -43,14 -81,35 -108,60 -23,22 -51,39 -61,39 -29,0 -178,64 -267,115 -44,25 -123,62 -176,84 -53,21 -130,53 -170,71 -82,35 -210,51 -243,30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16844"
+         d="m 7102,9188 c -7,-7 -12,-16 -12,-20 0,-13 37,-9 49,5 20,24 -14,38 -37,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6be;fill-opacity:1;stroke-width:27.17825317"
+         id="path16846"
+         d="m 3697,9162 c -46,-13 -64,-14 -88,-5 -23,9 -59,8 -152,-3 -156,-17 -152,-17 -280,-66 -90,-35 -107,-46 -105,-62 5,-30 33,-43 55,-24 12,10 29,14 49,11 34,-5 271,40 305,57 16,9 26,8 44,-4 33,-22 225,-22 285,-1 23,8 58,15 77,15 37,0 49,16 39,54 -5,20 -13,24 -63,29 -32,3 -69,8 -83,11 -14,3 -51,-3 -83,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+         id="path16848"
+         d="m 4182,9133 c -9,-15 -14,-16 -44,-5 -51,18 -82,15 -106,-11 l -22,-24 22,-11 c 13,-7 48,-11 79,-9 47,2 61,-2 91,-25 47,-36 79,-43 115,-25 25,13 33,13 62,1 42,-18 72,-18 96,0 17,12 21,10 40,-18 16,-24 30,-32 65,-37 73,-11 281,-79 338,-112 29,-16 85,-40 125,-52 40,-13 95,-32 122,-44 28,-11 67,-23 88,-26 26,-4 42,-14 54,-33 24,-39 43,-52 77,-52 16,0 48,-9 70,-19 23,-10 57,-22 77,-25 21,-4 43,-13 49,-22 7,-8 54,-34 104,-59 96,-47 293,-185 362,-254 23,-23 51,-41 63,-41 14,0 28,-11 39,-32 24,-45 67,-88 89,-88 26,0 185,-158 208,-206 10,-21 35,-63 56,-93 22,-30 39,-59 39,-65 1,-16 150,-166 201,-201 24,-17 97,-93 162,-169 70,-80 144,-155 178,-179 37,-27 65,-55 75,-78 12,-26 66,-78 177,-170 87,-74 168,-145 179,-159 36,-46 192,-170 202,-160 17,17 -27,91 -106,178 -43,47 -89,104 -101,126 -13,25 -39,50 -63,63 -22,12 -70,58 -107,102 -37,44 -115,123 -174,177 -60,53 -115,109 -124,124 -9,14 -45,50 -80,79 -143,118 -439,440 -439,476 0,15 47,-10 67,-35 13,-15 59,-54 103,-86 44,-32 90,-73 101,-91 11,-18 24,-33 29,-33 12,0 190,-151 190,-162 0,-5 22,-18 48,-29 34,-14 60,-36 91,-75 24,-31 53,-60 66,-66 12,-5 32,-26 43,-47 29,-50 184,-200 260,-250 35,-24 68,-53 74,-66 13,-30 31,-37 52,-22 15,11 12,20 -27,93 -63,117 -83,141 -142,175 -59,33 -71,45 -109,111 -16,29 -49,64 -84,89 -31,23 -93,78 -137,123 -103,105 -218,200 -308,254 -40,24 -102,73 -139,108 -48,47 -88,74 -145,100 -43,19 -91,48 -108,64 -16,15 -47,33 -67,39 -20,7 -42,19 -49,28 -8,8 -52,41 -99,73 -47,31 -105,78 -130,104 -25,26 -73,63 -107,82 -34,19 -113,72 -177,118 -82,59 -148,97 -228,131 -62,27 -135,65 -163,85 -27,20 -72,42 -100,49 -27,6 -66,23 -86,35 -19,13 -71,32 -115,41 -55,12 -96,29 -137,56 -33,21 -78,44 -100,50 -23,6 -69,20 -102,30 -33,10 -114,23 -179,29 -106,9 -125,14 -175,43 -49,28 -65,32 -131,32 -41,1 -82,5 -92,9 -11,5 -19,2 -26,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16850"
+         d="m 2865,9024 c -16,-8 -38,-24 -48,-35 -12,-13 -31,-19 -61,-19 -39,0 -191,-48 -306,-97 -25,-11 -91,-32 -148,-48 -115,-31 -140,-46 -144,-90 l -3,-30 57,2 c 47,2 90,16 225,74 109,46 188,74 224,78 37,4 71,16 100,35 33,22 60,31 115,36 70,7 164,47 164,69 0,15 -67,41 -107,41 -21,0 -51,-7 -68,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16852"
+         d="m 3820,8954 c -36,-7 -95,-13 -131,-14 -36,0 -80,-5 -97,-11 -24,-8 -43,-7 -86,5 -51,15 -60,15 -143,-4 -159,-36 -174,-40 -204,-62 -28,-21 -31,-22 -73,-6 -37,14 -47,14 -67,2 -54,-31 -90,-44 -121,-44 -53,0 -106,-19 -142,-50 -20,-18 -40,-27 -52,-24 -11,3 -57,-13 -104,-35 -47,-22 -128,-51 -180,-65 -52,-14 -144,-43 -205,-64 -108,-38 -110,-39 -113,-72 -5,-52 45,-68 96,-31 15,10 51,24 81,30 81,17 199,59 229,81 15,11 65,29 112,41 47,11 99,29 116,40 17,10 40,19 51,19 11,0 82,21 157,46 91,30 162,47 209,50 40,3 108,15 152,26 65,16 123,21 310,25 165,3 243,9 277,19 27,9 61,13 80,9 72,-14 73,56 3,90 -38,18 -66,18 -155,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2020d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16854"
+         d="m 4111,8908 c -15,-43 -14,-55 9,-78 16,-16 33,-20 83,-20 34,0 103,-8 152,-17 50,-9 110,-16 134,-15 24,1 49,-2 56,-8 7,-6 36,-13 64,-17 47,-5 51,-4 62,21 11,22 10,29 -4,43 -9,10 -29,18 -44,19 -16,1 -35,2 -43,3 -9,0 -39,16 -68,35 -45,29 -58,32 -101,28 -40,-3 -154,11 -268,34 -16,3 -23,-3 -32,-28 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16856"
+         d="m 7205,8800 c 28,-12 37,-12 30,0 -3,6 -16,10 -28,9 -21,0 -21,-1 -2,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c220d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16858"
+         d="m 4765,8793 c -50,-6 -67,-19 -63,-52 2,-19 10,-27 28,-29 14,-2 45,-9 70,-17 229,-70 290,-90 319,-102 24,-10 37,-11 44,-4 20,20 43,11 60,-24 9,-19 23,-35 30,-35 7,0 31,-13 53,-29 21,-15 57,-33 79,-39 140,-40 212,-70 250,-108 41,-40 170,-124 192,-124 7,0 75,-63 152,-140 76,-77 143,-140 147,-140 5,0 54,-51 109,-112 55,-61 164,-176 242,-254 78,-78 174,-185 213,-236 93,-120 122,-152 154,-173 24,-16 28,-16 52,-1 14,10 28,24 31,31 5,15 -53,89 -142,179 -28,28 -73,80 -99,116 -49,65 -108,130 -199,219 -26,25 -51,60 -55,76 -6,21 -25,41 -61,65 -28,19 -61,49 -71,66 -11,17 -45,48 -76,69 -30,21 -69,58 -85,82 -16,23 -56,60 -87,82 -32,21 -64,46 -71,54 -7,9 -36,31 -64,48 -60,38 -208,142 -250,176 -30,24 -76,30 -94,12 -7,-7 -16,0 -30,24 -17,27 -44,46 -139,92 -233,113 -330,150 -447,170 -22,3 -50,18 -67,35 -31,30 -37,32 -125,23 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64320;fill-opacity:1;stroke-width:27.17825317"
+         id="path16860"
+         d="m 3557,8719 c -10,-6 -28,-9 -38,-6 -11,3 -39,-3 -62,-14 -51,-23 -90,-24 -120,-4 -21,13 -26,13 -57,-9 -23,-15 -57,-25 -98,-29 -82,-9 -250,-52 -326,-84 -94,-40 -197,-73 -225,-73 -14,0 -46,-14 -71,-30 -32,-21 -57,-30 -86,-30 -27,0 -50,-7 -65,-20 -13,-11 -55,-29 -92,-40 -96,-30 -360,-162 -407,-204 -42,-38 -80,-60 -123,-70 -19,-5 -34,-19 -48,-49 -16,-32 -36,-51 -85,-80 -36,-21 -88,-57 -117,-81 -29,-23 -97,-76 -152,-118 -55,-42 -118,-94 -140,-117 -21,-23 -45,-41 -52,-41 -27,0 -60,-24 -82,-59 -23,-37 -53,-60 -281,-214 -69,-46 -140,-103 -158,-126 -26,-33 -39,-41 -65,-41 -38,0 -46,-5 -192,-120 -60,-48 -132,-99 -160,-113 -27,-14 -62,-38 -76,-54 -33,-34 -88,-143 -82,-160 8,-23 43,-14 53,12 5,14 36,41 70,62 171,106 362,247 414,306 47,54 71,71 168,119 62,31 124,59 138,63 14,4 41,20 60,34 19,15 49,35 65,45 17,11 58,46 91,80 34,34 103,86 154,116 65,38 135,94 232,185 77,72 151,137 164,145 14,8 27,25 30,37 8,30 29,45 104,76 36,15 101,54 145,88 86,64 145,99 170,99 8,0 32,15 52,33 21,18 59,47 85,65 41,29 54,32 116,32 58,0 79,5 127,30 31,17 68,30 81,30 13,0 41,9 61,20 21,11 50,20 65,20 15,0 57,16 94,35 43,23 79,35 105,35 22,0 53,7 69,15 15,8 61,20 102,26 49,7 80,18 96,32 18,17 37,22 80,23 32,0 98,8 147,17 79,15 249,21 412,15 18,-1 44,5 58,12 22,12 33,11 80,-4 36,-11 100,-19 184,-21 118,-4 130,-3 146,15 18,20 17,20 -34,20 -45,0 -57,4 -79,28 -23,24 -41,30 -113,42 -94,14 -133,9 -165,-21 -20,-19 -21,-19 -59,1 -43,22 -99,26 -141,10 -21,-8 -37,-7 -66,5 -45,17 -76,19 -101,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7ed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16862"
+         d="m 2035,8708 c -16,-5 -52,-16 -80,-25 -81,-24 -307,-138 -352,-177 -23,-20 -64,-67 -91,-104 -27,-37 -62,-74 -78,-82 -16,-8 -90,-67 -164,-131 -155,-133 -220,-177 -319,-216 -52,-21 -76,-37 -93,-63 -13,-19 -44,-46 -69,-60 -25,-14 -65,-41 -90,-61 -24,-20 -55,-39 -69,-42 -14,-3 -33,-19 -42,-34 -9,-16 -69,-73 -134,-128 -64,-55 -132,-116 -151,-135 -70,-73 -76,-83 -66,-99 18,-29 44,-24 87,16 22,22 65,54 94,73 29,18 73,57 99,87 48,57 82,78 180,115 46,17 74,38 138,103 65,66 89,84 128,95 32,8 54,22 68,42 11,16 46,46 77,66 244,164 388,282 520,426 33,37 68,59 155,101 63,29 129,66 148,82 19,17 54,39 79,50 25,11 58,34 73,50 26,28 27,32 12,47 -18,18 -18,18 -60,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317"
+         id="path16864"
+         d="m 4368,8632 c -16,-9 -28,-20 -28,-23 0,-16 85,-69 100,-63 34,16 102,0 275,-61 82,-30 156,-49 200,-53 48,-5 82,-15 109,-31 39,-25 183,-60 247,-61 26,0 43,-8 64,-30 20,-20 42,-31 74,-36 35,-5 57,-17 93,-51 26,-24 68,-52 93,-63 25,-11 81,-54 127,-98 94,-89 118,-105 176,-122 37,-12 40,-15 35,-40 -4,-25 2,-32 66,-74 50,-34 92,-74 146,-142 42,-52 88,-102 101,-111 14,-9 39,-37 56,-62 52,-76 140,-180 252,-298 58,-62 106,-117 106,-123 0,-6 35,-46 79,-88 43,-42 86,-93 96,-112 21,-41 361,-397 387,-406 10,-3 36,-29 57,-58 30,-40 49,-55 80,-65 23,-6 63,-30 89,-52 94,-79 225,-170 238,-165 9,3 14,22 14,49 0,49 -11,63 -77,96 -23,12 -75,56 -115,98 -106,112 -123,127 -230,209 -53,41 -114,95 -135,121 -21,26 -52,62 -70,81 -18,18 -35,41 -38,52 -3,10 -34,45 -68,77 -34,32 -82,83 -106,113 -25,30 -81,94 -125,141 -45,47 -97,104 -116,127 -92,108 -436,464 -502,520 -41,35 -83,77 -92,94 -10,16 -33,36 -50,43 -18,8 -82,63 -143,124 -124,123 -199,176 -305,217 -38,14 -84,39 -102,54 -20,17 -65,37 -124,54 -52,14 -119,40 -150,56 -64,34 -97,37 -131,14 -21,-15 -24,-15 -49,9 -36,35 -105,64 -172,73 -30,4 -81,19 -115,34 -113,51 -263,66 -317,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16866"
+         d="m 3650,8505 c -117,-29 -272,-47 -344,-40 -66,6 -76,4 -140,-25 -46,-21 -95,-34 -145,-40 -42,-4 -89,-15 -105,-23 -16,-9 -52,-21 -80,-28 -28,-6 -66,-25 -84,-40 -26,-23 -42,-29 -78,-29 -52,0 -120,-33 -129,-61 -7,-20 10,-59 26,-59 5,0 38,14 72,32 66,33 182,69 232,72 17,1 44,11 62,22 18,11 76,30 130,42 102,22 345,48 361,38 5,-3 41,5 80,18 56,19 95,25 186,27 284,6 421,0 499,-21 36,-9 53,-10 75,-1 24,10 36,8 86,-15 46,-21 67,-25 101,-21 35,5 46,3 61,-14 26,-29 68,-49 102,-49 16,0 69,-20 118,-45 48,-25 98,-45 112,-45 30,0 52,-12 132,-70 36,-26 92,-61 126,-78 33,-17 75,-45 94,-62 19,-18 59,-41 90,-52 36,-14 73,-39 109,-75 39,-37 63,-53 82,-53 28,0 118,-65 199,-143 25,-24 57,-51 72,-60 15,-9 67,-63 117,-119 49,-57 128,-148 176,-203 48,-55 101,-123 117,-151 16,-29 56,-82 88,-119 33,-38 60,-74 60,-82 0,-8 28,-44 63,-82 153,-168 214,-241 272,-331 34,-52 115,-160 181,-240 65,-80 144,-179 173,-220 30,-41 75,-98 100,-126 26,-28 65,-76 88,-107 24,-31 62,-70 85,-87 23,-17 48,-43 55,-58 20,-41 62,-96 83,-107 10,-5 39,-38 65,-73 29,-40 60,-70 83,-80 20,-10 58,-30 84,-45 45,-27 48,-28 77,-12 34,17 39,30 16,39 -9,3 -22,21 -30,40 -20,48 -64,95 -138,150 -34,25 -77,68 -95,96 -18,27 -46,57 -62,65 -18,9 -30,24 -30,35 0,11 -19,41 -42,68 -100,114 -211,252 -254,316 -15,22 -56,72 -93,111 -136,148 -197,219 -216,256 -25,47 -139,178 -176,202 -15,10 -31,27 -34,38 -4,11 -26,44 -49,72 -23,29 -57,73 -74,100 -18,26 -57,65 -85,86 -41,29 -63,57 -96,120 -33,61 -56,90 -91,115 -26,18 -72,69 -102,112 -61,86 -108,138 -165,181 -21,15 -66,55 -100,88 -34,33 -66,65 -72,70 -6,6 -34,35 -63,65 -36,38 -83,71 -147,105 -66,34 -106,63 -135,97 -31,37 -53,51 -92,63 -56,16 -97,44 -198,134 -38,33 -74,61 -81,61 -6,0 -30,14 -52,30 -28,20 -66,36 -113,46 -40,8 -89,23 -109,33 -20,10 -70,21 -111,25 -49,5 -94,16 -129,33 -46,22 -63,25 -121,21 -53,-4 -72,-2 -84,10 -10,10 -46,18 -108,23 -51,4 -123,14 -160,23 -41,10 -100,15 -155,14 -48,-2 -106,0 -128,4 -24,4 -62,2 -95,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16868"
+         d="m 1348,8433 c -23,-20 -89,-58 -146,-84 -56,-26 -144,-77 -195,-112 -50,-35 -123,-80 -162,-100 -80,-42 -286,-198 -360,-272 -27,-28 -70,-63 -95,-77 -25,-15 -56,-35 -69,-45 -23,-19 -23,-20 -7,-51 27,-52 52,-43 154,52 66,62 102,88 134,97 23,7 53,21 66,33 12,11 39,29 59,40 20,12 58,50 83,86 26,36 57,70 71,77 13,6 69,34 124,61 55,27 115,53 133,57 18,3 58,29 90,56 31,27 83,63 116,81 108,61 154,115 110,132 -34,13 -64,4 -106,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317"
+         id="path16870"
+         d="m 1941,8440 c -19,-16 -51,-35 -70,-41 -70,-23 -113,-51 -200,-132 -48,-45 -121,-106 -162,-136 -69,-50 -89,-61 -162,-90 -19,-7 -34,-26 -48,-58 -28,-65 -48,-84 -146,-139 -46,-26 -109,-70 -140,-97 -31,-27 -77,-58 -102,-69 -25,-10 -66,-39 -91,-63 -39,-38 -144,-108 -232,-154 -27,-14 -48,-49 -48,-80 0,-15 -10,-19 -50,-23 -56,-6 -83,-25 -110,-79 -20,-38 -77,-94 -107,-103 -18,-6 -78,-94 -69,-103 13,-13 95,26 131,62 22,23 68,60 103,84 34,23 74,59 88,80 18,27 39,44 72,56 89,33 183,88 243,141 33,30 68,54 79,54 10,0 31,10 47,23 15,12 48,36 73,51 25,16 55,39 67,50 11,12 86,68 166,126 97,70 150,116 163,139 11,21 46,53 84,78 36,24 106,81 155,127 50,46 131,111 180,145 135,92 169,125 161,156 -8,33 -32,32 -75,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2054d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16872"
+         d="m 3770,8300 c -8,-5 -34,-10 -57,-10 -100,0 -337,-65 -385,-105 -15,-13 -65,-44 -111,-69 -67,-36 -95,-46 -132,-46 -36,0 -54,-6 -83,-29 -43,-33 -91,-51 -139,-51 -41,0 -64,-11 -124,-62 -46,-39 -68,-49 -252,-116 -64,-23 -112,-48 -140,-72 -23,-20 -60,-41 -82,-48 -22,-6 -69,-29 -105,-50 -36,-22 -75,-43 -88,-47 -27,-8 -44,-44 -30,-62 17,-21 48,-15 83,16 21,18 50,32 77,36 24,3 86,28 138,54 52,27 136,64 185,82 51,19 109,49 135,70 56,45 93,64 156,80 27,7 67,22 89,35 22,12 60,28 84,34 24,6 85,31 135,54 50,24 163,67 251,96 88,29 169,57 180,63 18,9 150,35 300,58 83,13 220,6 310,-17 54,-14 70,-14 95,-4 34,14 39,11 110,-62 41,-42 57,-45 120,-23 64,23 95,20 108,-11 9,-17 35,-36 88,-60 78,-35 104,-41 104,-24 0,6 7,10 15,10 8,0 15,-7 15,-15 0,-48 33,-75 110,-91 21,-4 54,-26 90,-58 30,-29 76,-60 101,-70 54,-20 137,-101 195,-191 20,-33 93,-118 162,-190 68,-71 145,-159 170,-195 75,-107 133,-171 186,-205 53,-34 146,-137 146,-160 0,-8 18,-34 40,-60 38,-43 113,-163 127,-202 11,-32 275,-396 327,-453 56,-60 80,-96 159,-240 44,-81 58,-98 93,-114 30,-14 47,-32 67,-70 15,-28 54,-85 87,-126 33,-41 88,-121 121,-176 34,-56 85,-129 115,-163 29,-34 66,-83 81,-109 29,-51 216,-253 244,-264 10,-4 36,-32 58,-62 55,-74 71,-82 138,-66 47,12 56,11 70,-2 14,-15 13,-18 -11,-33 -44,-29 -28,-75 26,-75 21,0 31,8 43,31 9,17 14,36 12,42 -13,34 -158,214 -181,225 -28,13 -66,66 -66,94 0,10 -16,26 -37,38 -97,52 -148,95 -173,146 -30,61 -69,111 -172,222 -43,45 -90,106 -104,135 -36,69 -130,193 -225,294 -42,45 -91,106 -108,136 -17,29 -40,62 -52,73 -12,10 -49,55 -82,99 -34,44 -85,108 -113,141 -28,34 -64,84 -79,110 -16,27 -45,70 -66,96 -21,25 -80,113 -130,195 -102,164 -125,195 -229,303 -40,41 -84,98 -98,125 -17,34 -74,98 -178,200 -215,211 -250,244 -277,256 -26,12 -37,55 -37,149 0,44 -2,49 -32,61 -18,7 -66,35 -106,62 -39,27 -100,59 -133,73 -39,15 -81,42 -115,74 -36,34 -61,50 -79,50 -15,0 -49,12 -76,28 -48,26 -50,26 -79,10 -29,-16 -29,-16 -49,17 -25,43 -54,58 -193,96 -193,53 -220,58 -313,59 -71,0 -100,4 -130,20 -33,17 -59,20 -160,20 -66,0 -127,-5 -135,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317"
+         id="path16874"
+         d="m 5143,8273 c -10,-25 109,-123 149,-123 30,0 248,-160 442,-323 178,-150 291,-262 340,-337 25,-37 79,-108 120,-156 41,-49 108,-132 148,-184 43,-56 87,-102 107,-112 21,-10 40,-31 51,-55 10,-21 49,-68 87,-104 39,-37 87,-95 108,-130 57,-95 125,-175 313,-368 121,-123 175,-185 186,-215 24,-61 174,-255 226,-291 27,-19 49,-44 55,-63 6,-17 28,-44 52,-61 22,-16 50,-43 62,-59 20,-28 93,-71 149,-87 18,-5 22,-2 22,17 0,13 -11,39 -25,58 -13,18 -30,49 -36,69 -16,48 -21,54 -101,107 -42,28 -85,68 -109,101 -22,30 -47,57 -55,60 -8,3 -38,39 -67,81 -66,94 -62,88 -82,145 -13,37 -44,77 -123,160 -58,62 -120,135 -138,162 -22,35 -51,63 -94,89 -57,36 -120,104 -120,131 0,7 -10,20 -21,31 -12,10 -57,65 -101,121 -43,56 -98,119 -121,140 -24,21 -57,61 -74,88 -18,28 -53,67 -78,88 -25,21 -51,51 -58,67 -16,38 -251,298 -343,380 -40,36 -92,87 -115,114 -24,27 -77,76 -118,108 -41,32 -80,67 -88,77 -7,10 -28,22 -46,25 -25,5 -49,23 -90,70 -68,77 -132,121 -206,142 -31,9 -80,25 -109,35 -66,23 -91,24 -99,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path16876"
+         d="m 3145,8270 c -22,-3 -56,-16 -75,-27 -19,-12 -64,-29 -100,-39 -36,-9 -94,-32 -130,-50 -36,-18 -84,-38 -107,-44 -47,-12 -65,-42 -40,-67 18,-18 66,-10 96,17 12,10 41,21 64,24 65,10 193,50 287,89 93,40 119,68 85,93 -20,15 -20,15 -80,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62082;fill-opacity:1;stroke-width:27.17825317"
+         id="path16878"
+         d="m 2410,8195 c -19,-14 -39,-25 -44,-25 -5,0 -37,-18 -70,-39 -34,-22 -83,-50 -111,-61 -82,-35 -92,-41 -106,-66 -10,-19 -21,-24 -51,-24 -31,0 -47,-8 -81,-39 -23,-21 -57,-46 -75,-55 -18,-10 -47,-37 -65,-62 -30,-43 -180,-150 -284,-203 -23,-11 -61,-43 -84,-71 -24,-28 -65,-67 -92,-86 -27,-19 -56,-47 -64,-62 -9,-15 -37,-37 -62,-49 -73,-35 -234,-200 -288,-296 -24,-42 -23,-51 8,-67 16,-9 27,-3 72,38 28,26 64,53 79,60 15,6 35,24 44,39 28,45 197,213 214,213 9,0 29,14 45,30 16,17 61,51 100,75 39,24 77,55 85,69 7,15 19,26 26,26 7,0 49,27 93,60 64,47 81,65 81,85 0,18 7,26 27,31 46,12 143,75 214,140 37,35 81,70 96,78 15,8 44,30 62,50 27,27 43,36 69,36 24,0 42,8 62,29 21,21 36,27 55,24 21,-5 27,0 36,25 7,20 26,40 55,57 28,17 44,33 44,45 0,28 -46,25 -90,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ad;fill-opacity:1;stroke-width:27.17825317"
+         id="path16880"
+         d="m 3940,8100 c -19,-5 -73,-11 -120,-14 -47,-2 -113,-11 -147,-19 -35,-8 -72,-13 -84,-10 -12,4 -32,-3 -51,-17 -17,-12 -53,-25 -84,-29 -43,-6 -60,-14 -88,-43 -25,-25 -48,-38 -78,-43 -23,-4 -58,-18 -78,-31 -19,-12 -80,-34 -135,-47 -141,-35 -255,-81 -322,-131 -86,-65 -166,-101 -278,-126 -109,-24 -126,-31 -168,-66 -15,-13 -48,-32 -72,-43 -24,-10 -48,-28 -54,-39 -7,-13 -25,-21 -59,-26 -51,-7 -213,-84 -327,-155 -33,-21 -82,-50 -109,-66 -36,-20 -53,-38 -67,-70 -14,-33 -26,-45 -48,-50 -25,-5 -159,-92 -202,-131 -10,-9 -21,-29 -24,-45 -5,-21 -18,-35 -47,-50 -47,-24 -216,-196 -300,-306 -33,-43 -81,-98 -106,-124 -64,-62 -226,-249 -242,-278 -7,-13 -76,-88 -154,-165 -79,-78 -171,-176 -205,-218 -35,-42 -78,-89 -97,-103 -19,-14 -34,-33 -34,-42 0,-9 -23,-38 -50,-65 -52,-51 -61,-79 -37,-112 18,-24 79,-13 110,20 12,14 37,34 55,45 21,14 42,40 57,74 17,39 30,55 53,63 16,5 42,27 58,49 15,21 76,88 135,148 59,61 124,137 144,169 21,33 81,105 134,160 53,56 122,135 153,178 31,42 65,79 76,82 10,4 34,28 52,54 18,26 49,64 69,85 20,21 74,88 121,150 59,78 94,115 115,122 17,5 41,24 54,40 54,66 142,143 197,172 33,17 84,45 114,63 30,17 119,67 197,110 79,43 180,108 225,144 66,52 90,66 118,66 34,0 55,10 239,113 46,26 93,47 105,47 11,0 51,6 88,14 54,11 77,23 113,54 42,37 99,68 266,146 31,14 61,26 68,26 6,0 48,19 94,42 59,29 96,42 132,43 89,4 210,23 253,40 27,11 59,15 94,13 29,-3 82,2 118,10 75,16 150,11 230,-16 35,-12 64,-16 80,-11 14,4 59,7 100,8 72,1 76,0 93,-26 34,-56 33,-56 55,-44 16,8 25,6 47,-10 14,-12 44,-25 65,-30 22,-5 60,-22 85,-38 25,-16 82,-44 127,-62 53,-22 100,-50 132,-80 60,-54 86,-69 120,-69 18,0 30,-9 40,-29 9,-16 47,-52 85,-80 39,-28 78,-62 87,-76 9,-14 25,-25 36,-25 11,0 28,-5 38,-10 21,-11 99,-122 142,-201 36,-68 122,-182 163,-218 19,-16 51,-34 71,-40 42,-11 74,-37 74,-59 0,-8 33,-49 73,-92 59,-61 79,-91 101,-147 15,-39 42,-88 60,-109 18,-21 51,-71 74,-111 50,-86 84,-127 134,-163 38,-28 138,-164 138,-189 0,-7 16,-31 35,-52 21,-23 41,-61 51,-96 22,-76 41,-112 77,-146 24,-22 28,-33 23,-57 -4,-22 1,-39 19,-66 14,-20 25,-45 25,-55 0,-29 147,-395 199,-493 29,-57 66,-109 102,-145 31,-31 64,-72 74,-91 10,-19 39,-69 65,-110 26,-41 50,-86 53,-100 6,-24 57,-94 148,-202 22,-27 45,-63 51,-80 30,-87 122,-191 189,-213 59,-20 144,-17 144,5 0,8 -9,16 -20,18 -27,5 -45,21 -55,48 -6,14 -24,27 -52,35 -32,10 -43,19 -43,34 0,17 6,20 38,19 30,-1 47,-10 76,-38 40,-39 57,-43 86,-22 31,23 5,65 -72,111 -36,22 -81,55 -99,73 -19,17 -41,32 -49,32 -23,0 -79,54 -142,138 -32,42 -85,111 -119,152 -33,41 -74,99 -90,129 -16,30 -41,62 -56,70 -18,11 -31,30 -39,60 -9,31 -29,61 -66,97 -29,29 -53,60 -53,69 0,21 -65,170 -89,204 -10,14 -28,60 -41,101 -39,133 -170,484 -188,507 -9,12 -44,54 -77,95 -33,40 -73,98 -90,129 -16,31 -53,76 -81,100 -100,86 -167,183 -205,297 -13,40 -36,81 -59,106 -20,23 -65,78 -99,124 -44,59 -81,95 -129,127 -66,43 -156,147 -195,222 -10,18 -41,48 -69,67 -69,46 -164,152 -208,233 -46,83 -160,184 -289,254 -53,28 -122,68 -153,89 -31,21 -72,43 -91,49 -20,7 -41,18 -47,26 -7,8 -37,24 -68,35 -31,12 -62,26 -69,31 -6,6 -49,14 -95,19 -87,10 -152,26 -304,79 -100,34 -189,45 -244,31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16882"
+         d="m 2516,8020 c -38,-16 -83,-43 -100,-59 -18,-18 -43,-31 -56,-31 -49,0 -103,-22 -144,-59 -48,-44 -142,-109 -203,-139 -23,-12 -45,-32 -48,-44 -10,-32 -130,-140 -227,-205 -43,-29 -84,-53 -89,-53 -5,0 -28,-17 -52,-38 -23,-21 -62,-52 -87,-69 -67,-46 -140,-113 -140,-129 0,-7 -21,-25 -47,-39 -73,-40 -151,-97 -169,-125 -9,-14 -37,-46 -62,-72 -25,-26 -57,-68 -71,-95 -17,-31 -50,-66 -98,-103 -39,-30 -87,-76 -106,-101 -20,-25 -58,-63 -86,-84 C 678,6534 613,6459 537,6349 488,6279 442,6234 344,6159 272,6104 182,6002 109,5893 80,5850 43,5798 26,5776 l -30,-39 24,-19 24,-19 23,29 c 12,16 41,37 63,46 22,8 45,25 52,37 7,11 34,32 60,45 34,17 59,41 90,86 23,35 125,146 227,248 137,137 198,204 231,259 25,41 72,102 106,135 34,34 73,80 88,103 15,22 51,57 79,76 91,61 210,176 239,232 20,39 37,57 65,70 21,9 57,37 81,61 24,24 89,74 145,110 56,36 122,85 147,109 25,23 76,57 113,75 55,25 74,41 98,78 16,25 29,54 29,64 0,36 31,78 78,104 26,15 76,48 112,74 36,26 92,62 125,80 33,19 74,43 90,55 17,13 47,25 67,28 63,9 177,59 184,79 7,22 -20,68 -39,67 -6,0 -43,-13 -81,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7ad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16884"
+         d="m 372,8014 c -26,-18 -20,-34 12,-34 27,0 51,24 41,40 -9,14 -27,13 -53,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20add6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16886"
+         d="m 3965,7869 c -22,-4 -67,-9 -100,-9 -155,-1 -254,-19 -428,-76 -290,-94 -362,-126 -492,-214 -33,-23 -96,-65 -140,-94 -44,-29 -93,-70 -108,-90 -15,-20 -55,-54 -88,-76 -33,-23 -71,-60 -86,-83 -35,-55 -49,-66 -101,-79 -33,-8 -54,-23 -90,-65 -36,-41 -66,-64 -127,-93 -62,-29 -90,-50 -125,-91 -24,-30 -71,-77 -104,-104 -33,-28 -89,-84 -124,-125 -35,-41 -90,-104 -121,-140 -32,-36 -86,-112 -122,-168 -35,-57 -100,-149 -144,-205 -45,-56 -93,-120 -108,-142 -15,-22 -56,-70 -92,-107 -39,-40 -68,-78 -71,-96 -4,-20 -30,-51 -80,-96 -40,-37 -95,-97 -121.00004,-134 -26,-37 -61,-83 -78,-102 -34,-39 -117,-159 -155,-224 -61,-104 -149,-233 -190.99996,-280 -25,-28 -66,-85 -92,-126 -25,-41 -84,-118 -130,-171 -46,-52 -97,-120 -114,-150 -17,-30 -38,-61 -47,-68 -9,-7 -16,-26 -16,-40 0,-15 -7,-36 -15,-47 -21,-28 -18,-34 18,-34 37,0 60,20 72,60 10,34 24,50 45,50 30,0 178,159 211,227 16,34 43,71 59,83 20,14 33.99996,37 43.99996,73 11,36 28,64 57,92 24,24 57,73 81,123 30,61 53,93 89,124 33,28 63,68 95,127 26,47 61,102 78.00004,122 17,20 58,73 91,119 33,45 97,116 143,158 47,42 100,101 120,132 19,30 61,81 94,112 74,71 158,199 167,253 7,44 40,97 114,181 26,30 47,63 47,74 0,11 29,47 66,82 36,35 77,82 91,105 32,56 105,120 223,198 94,63 133,97 163,145 9,14 55,52 102,85 47,33 113,80 146,105 34,25 84,60 112,77 28,18 60,46 70,63 60,95 546,346 793,409 282,72 318,76 455,56 60,-9 113,-14 118,-11 9,6 68,-14 114,-40 15,-8 68,-19 118,-25 51,-5 118,-20 152,-33 34,-13 73,-27 87,-31 36,-11 142,-75 165,-101 11,-12 54,-49 95,-83 175,-141 303,-266 361,-350 31,-46 80,-105 107,-130 50,-46 148,-189 183,-267 10,-22 28,-49 40,-60 12,-10 40,-57 61,-104 22,-47 51,-99 64,-116 13,-18 36,-67 52,-110 16,-44 43,-101 60,-128 23,-36 32,-62 32,-92 0,-23 9,-63 19,-90 11,-27 28,-76 39,-109 11,-33 24,-73 30,-90 46,-137 54,-170 49,-205 -3,-28 2,-53 19,-90 23,-49 23,-54 13,-183 -5,-73 -7,-146 -4,-164 4,-21 1,-34 -8,-40 -31,-18 -39,-52 -27,-104 13,-54 10,-82 -14,-144 -9,-25 -15,-74 -16,-130 0,-97 -4,-111 -35,-116 -12,-3 -21,-14 -23,-29 -7,-59 -24,-90 -60,-111 -20,-12 -60,-46 -88,-75 -46,-48 -54,-53 -82,-48 -24,5 -38,0 -69,-24 -45,-35 -195,-95 -238,-95 -16,1 -61,-6 -98,-15 -45,-9 -90,-12 -128,-8 -35,3 -78,1 -104,-6 -34,-9 -50,-9 -72,1 -15,7 -67,17 -115,21 -61,6 -96,14 -115,28 -16,11 -80,44 -143,75 -67,32 -127,68 -143,86 -24,26 -36,31 -73,31 -41,0 -48,4 -119,76 -61,62 -76,83 -81,116 -5,28 -21,57 -55,95 -27,30 -54,71 -60,91 -7,20 -23,59 -35,87 -13,27 -24,62 -24,76 0,18 -8,29 -25,37 -18,8 -25,20 -25,39 -1,16 -7,39 -15,53 -9,15 -14,53 -15,96 0,55 -4,77 -19,96 -31,39 -34,69 -11,120 17,39 21,73 24,184 4,130 5,139 36,200 19,36 35,86 38,113 l 4,49 34,-14 c 46,-19 91,-17 143,6 66,30 158,27 269,-10 50,-16 99,-30 108,-30 9,0 28,-9 43,-19 15,-11 46,-27 68,-36 43,-17 68,-55 61,-92 -6,-30 -35,-26 -95,14 -32,22 -98,59 -148,84 -77,38 -99,44 -150,44 -115,-1 -123,-8 -156,-126 -24,-86 -24,-132 0,-250 11,-52 22,-129 26,-172 9,-98 25,-128 150,-274 161,-189 166,-193 216,-193 23,0 69,-7 100,-16 46,-13 65,-14 90,-5 18,6 49,11 69,11 24,0 43,7 55,20 19,21 55,27 55,10 0,-5 11,-17 25,-26 23,-15 26,-14 57,9 18,14 70,39 114,56 88,34 137,73 178,144 25,43 29,76 29,254 0,69 -21,113 -53,113 -23,0 -27,-12 -50,-156 -12,-77 -29,-137 -49,-180 -28,-60 -32,-64 -63,-64 -18,0 -61,-10 -95,-22 l -62,-23 -28,21 c -15,12 -30,30 -31,40 -6,31 -32,44 -87,44 -69,0 -245,27 -303,46 -96,32 -164,94 -216,198 -29,56 -29,58 -22,178 4,67 14,137 21,155 16,38 37,48 120,57 68,8 146,-13 212,-58 21,-14 46,-26 55,-26 19,0 58,-33 58,-49 0,-5 -7,-16 -15,-24 -22,-23 -85,-4 -160,47 -90,62 -174,70 -214,23 -16,-19 -11,-47 9,-57 8,-5 53,-31 100,-58 162,-96 207,-107 284,-71 82,38 91,55 94,186 l 4,114 -41,83 c -31,62 -43,98 -48,150 -5,55 -12,75 -33,100 -15,17 -41,52 -58,78 -34,49 -56,69 -137,121 -41,27 -50,37 -47,58 1,15 -4,32 -13,39 -8,7 -15,16 -15,21 0,15 40,10 46,-6 4,-9 27,-27 53,-42 25,-14 68,-39 94,-56 37,-23 55,-28 82,-24 31,5 34,3 45,-26 6,-17 22,-43 36,-58 l 25,-26 -28,-8 c -80,-20 -68,-76 43,-197 38,-40 42,-50 37,-80 -3,-24 1,-47 16,-76 25,-49 27,-89 5,-120 -12,-18 -14,-38 -8,-102 5,-59 2,-96 -11,-149 -15,-64 -19,-70 -47,-76 -37,-8 -44,-27 -31,-77 9,-32 8,-41 -3,-45 -22,-8 -41,14 -53,62 -6,24 -17,47 -23,52 -17,11 -116,32 -154,32 -21,1 -49,16 -90,49 -118,93 -165,103 -172,34 -3,-26 8,-42 76,-114 43,-46 82,-97 86,-112 6,-26 10,-28 39,-21 18,4 41,7 52,6 11,-1 34,-2 50,-4 17,-1 43,-12 59,-24 48,-38 151,-27 204,21 13,11 35,42 48,68 13,25 35,55 49,67 20,15 25,26 20,41 -3,11 4,68 16,126 21,100 22,111 9,222 -7,64 -16,167 -20,227 -12,182 -59,312 -130,359 -26,17 -48,42 -60,69 -10,23 -30,57 -44,76 -30,40 -33,59 -10,68 10,4 14,13 10,29 -15,58 43,32 101,-46 21,-28 50,-56 65,-63 26,-11 28,-16 28,-73 0,-49 5,-68 25,-95 48,-65 68,-121 76,-209 4,-47 15,-107 23,-135 9,-27 19,-99 22,-160 4,-60 12,-123 20,-139 12,-25 12,-31 -6,-54 -15,-19 -20,-40 -20,-89 0,-48 -7,-83 -29,-136 -16,-40 -36,-94 -46,-120 -9,-27 -35,-68 -56,-93 -44,-51 -44,-52 -23,-82 40,-58 132,0 164,105 10,34 26,76 35,92 8,17 15,49 15,73 0,28 8,55 23,77 45,69 47,76 41,117 -3,23 -1,73 5,112 15,96 -7,272 -53,417 -19,61 -39,143 -45,183 -12,76 -37,137 -77,185 -13,16 -24,38 -24,50 -1,39 -37,104 -73,131 -20,15 -44,42 -55,60 -10,17 -49,66 -86,109 -54,62 -75,79 -109,88 -23,6 -52,22 -65,35 -13,13 -32,24 -44,24 -11,0 -47,18 -80,40 -50,33 -69,40 -107,39 -25,0 -54,-4 -65,-8 -20,-8 -167,26 -228,53 -36,15 -42,15 -105,-5 -38,-11 -102,-33 -143,-49 -41,-15 -109,-33 -150,-39 -94,-15 -157,-44 -240,-110 -36,-29 -78,-55 -93,-58 -15,-3 -32,-13 -37,-23 -5,-9 -43,-41 -86,-70 -56,-39 -81,-63 -94,-92 -9,-21 -31,-49 -47,-61 -17,-12 -42,-36 -56,-52 -58,-70 -187,-258 -211,-309 -41,-86 -66,-87 -41,-2 21,68 8,90 -46,81 -37,-6 -39,-6 -31,15 5,14 26,29 57,41 58,22 92,52 100,89 4,17 40,61 95,114 51,48 92,97 96,112 4,15 25,46 48,68 23,23 55,58 72,79 22,26 39,37 58,37 17,0 42,14 69,39 70,64 126,99 168,106 39,7 117,48 173,93 16,12 42,22 58,22 16,0 48,11 71,24 37,21 59,25 190,31 133,7 150,6 167,-10 17,-15 31,-17 103,-11 101,8 177,-12 282,-76 42,-25 90,-45 120,-50 79,-12 104,-27 139,-83 20,-31 46,-57 64,-64 18,-7 36,-25 43,-43 7,-16 36,-48 66,-70 30,-23 55,-51 58,-64 3,-13 8,-36 11,-51 3,-14 14,-38 25,-51 10,-14 19,-35 19,-48 0,-13 11,-35 25,-50 31,-34 125,-273 125,-320 0,-19 9,-53 21,-75 22,-45 68,-250 69,-314 0,-22 0,-78 0,-124 0,-66 5,-94 20,-123 37,-72 52,-178 51,-379 0,-57 -33,-162 -67,-214 -19,-29 -63,-55 -91,-55 -10,0 -36,-9 -57,-19 -21,-11 -60,-24 -87,-30 -28,-6 -62,-17 -77,-25 -15,-8 -50,-17 -77,-21 -28,-4 -57,-11 -65,-15 -9,-5 -67,-4 -130,1 -110,8 -224,35 -282,65 -43,22 -188,154 -188,171 0,8 -18,31 -41,51 -41,37 -72,89 -109,181 -27,69 -38,407 -15,472 21,57 19,102 -4,123 -30,27 -62,16 -95,-32 -29,-40 -30,-49 -38,-185 -5,-78 -5,-169 -2,-202 8,-79 97,-348 138,-416 32,-53 33,-54 87,-59 l 54,-5 30,-57 c 42,-79 71,-107 118,-115 23,-3 54,-19 73,-35 37,-33 108,-58 163,-58 20,0 47,-7 60,-16 19,-14 29,-14 66,-4 28,8 65,10 99,6 42,-6 64,-3 92,10 31,15 41,15 71,5 29,-11 38,-10 59,4 14,9 28,23 31,31 3,9 19,14 42,14 28,0 47,8 74,33 21,18 57,38 80,44 59,16 95,48 119,102 10,25 32,58 49,73 l 29,27 -5,216 c -5,182 -8,220 -23,243 -13,20 -16,44 -14,113 3,64 -1,97 -12,121 -8,18 -22,80 -31,137 -8,57 -24,142 -35,188 -11,47 -20,97 -20,112 0,43 -19,92 -52,134 -18,23 -32,55 -35,80 -3,23 -14,59 -24,79 -11,21 -26,68 -35,105 -16,69 -87,213 -154,313 -42,62 -125,141 -191,183 -24,15 -66,43 -93,62 -30,22 -89,48 -158,69 -102,32 -114,34 -164,24 -48,-10 -62,-8 -132,15 -102,34 -152,40 -308,38 -116,-1 -137,-4 -195,-27 -35,-15 -103,-34 -151,-44 -48,-10 -127,-37 -176,-59 -49,-23 -96,-41 -105,-41 -9,0 -24,-12 -34,-26 -9,-15 -40,-37 -68,-50 -27,-12 -77,-48 -109,-79 -32,-32 -77,-65 -99,-75 -24,-11 -52,-35 -67,-57 -14,-21 -38,-44 -53,-51 -20,-10 -27,-21 -27,-41 0,-21 -10,-36 -36,-56 -20,-15 -42,-43 -50,-61 -8,-18 -65,-86 -128,-151 -63,-66 -151,-168 -195,-229 -43,-60 -91,-123 -105,-140 -15,-18 -33,-50 -41,-73 -7,-22 -32,-64 -53,-93 -58,-78 -91,-150 -118,-257 -16,-68 -29,-100 -44,-110 -11,-7 -20,-24 -20,-37 0,-13 -11,-39 -24,-58 -35,-52 -96,-231 -106,-313 -10,-75 -25,-115 -66,-168 -15,-20 -30,-68 -45,-143 -20,-100 -24,-112 -41,-106 -41,13 -66,-21 -104,-138 -31,-97 -37,-132 -44,-248 -4,-74 -13,-159 -20,-189 -7,-32 -9,-73 -5,-100 3,-25 7,-74 8,-108 2,-52 7,-68 34,-105 18,-23 53,-74 79,-111 25,-38 61,-85 79,-106 18,-20 37,-49 40,-64 4,-15 30,-51 57,-80 27,-28 59,-65 71,-82 25,-35 44,-50 106,-82 25,-13 64,-43 86,-67 22,-23 66,-57 98,-75 55,-32 215,-172 271,-238 32,-38 154,-125 241,-173 33,-19 78,-48 100,-65 22,-17 70,-48 106,-68 36,-20 101,-62 145,-93 43,-32 97,-70 119,-86 32,-22 57,-30 122,-38 44,-5 98,-17 120,-26 21,-10 50,-19 65,-20 15,-1 41,-12 57,-23 51,-37 110,-53 147,-41 98,33 39,105 -101,125 -57,8 -79,18 -115,50 -14,12 -39,25 -56,28 -44,8 -393,180 -440,217 -98,77 -133,102 -181,131 -29,17 -53,37 -53,43 0,21 -34,45 -84,60 -55,17 -86,41 -86,67 0,11 -45,53 -117,109 -65,50 -153,119 -195,154 -43,34 -100,74 -128,88 -60,31 -213,191 -259,271 -17,30 -45,71 -62,93 -17,21 -42,64 -55,94 -13,30 -40,69 -59,85 l -36,30 -1,120 c -1,66 3,201 8,300 8,146 13,187 29,219 26,51 40,47 38,-12 -1,-26 -2,-108 -2,-182 -1,-74 -6,-165 -12,-201 -14,-79 -8,-108 30,-151 16,-18 32,-47 35,-64 4,-18 16,-40 26,-49 11,-10 29,-42 40,-72 54,-145 110,-224 233,-328 56,-48 118,-95 137,-105 19,-10 60,-47 90,-81 71,-82 74,-85 210,-179 63,-43 146,-109 185,-145 83,-80 134,-116 197,-140 35,-13 63,-35 104,-82 62,-70 97,-93 145,-93 41,0 150,-58 230,-123 59,-47 68,-51 113,-49 40,2 53,-2 74,-23 20,-20 35,-25 77,-25 41,0 61,-6 99,-32 55,-36 113,-45 194,-30 45,8 59,7 90,-9 47,-24 73,-24 117,2 33,20 46,21 138,16 66,-4 115,-2 141,5 38,12 39,11 70,-25 35,-42 57,-46 93,-17 30,24 58,25 105,5 29,-11 82,-13 281,-11 224,4 249,6 279,24 23,13 39,17 53,12 35,-15 223,-11 253,4 15,7 53,17 86,21 32,4 102,20 155,36 75,22 116,29 186,29 73,0 99,5 141,24 30,14 62,22 76,19 14,-3 70,9 124,27 73,23 109,30 138,26 22,-4 44,-2 51,4 7,6 46,17 86,25 41,8 94,22 119,31 25,8 76,18 115,21 38,4 79,12 90,19 11,7 49,18 85,24 36,7 92,22 125,33 52,19 60,26 60,47 0,21 -4,25 -30,24 -35,-2 -197,-49 -234,-69 -23,-11 -30,-11 -56,3 -24,14 -55,17 -153,15 -156,-2 -213,-15 -258,-60 -28,-28 -37,-32 -53,-23 -28,14 -57,12 -71,-5 -7,-8 -27,-15 -44,-15 -17,0 -56,-7 -86,-15 -30,-8 -73,-15 -95,-15 -22,0 -62,-8 -90,-19 -27,-10 -74,-21 -104,-25 -30,-4 -67,-14 -83,-22 -16,-8 -33,-12 -38,-9 -5,3 -24,-2 -42,-11 -18,-10 -55,-18 -83,-20 -27,-1 -102,-5 -165,-8 -63,-3 -155,-12 -205,-20 -200,-33 -243,-36 -368,-25 -109,10 -128,9 -173,-6 -48,-16 -56,-16 -98,-2 -30,10 -64,14 -98,10 -38,-4 -84,2 -161,21 -60,14 -118,26 -129,26 -12,0 -59,-16 -106,-37 -77,-33 -88,-35 -116,-24 -17,7 -65,19 -107,26 -41,7 -95,23 -118,34 -23,12 -82,31 -130,41 -103,22 -142,37 -222,85 -32,20 -79,42 -106,50 -33,10 -61,28 -89,58 -26,27 -54,46 -74,50 -17,4 -53,26 -79,49 -29,26 -79,56 -128,76 -71,28 -88,41 -143,102 -34,39 -83,85 -108,102 -26,18 -55,42 -65,55 -10,12 -51,43 -91,68 -42,26 -96,71 -125,105 -29,33 -78,75 -109,93 -46,27 -60,41 -70,72 -7,22 -21,44 -30,49 -9,5 -53,44 -97,86 -44,42 -90,82 -102,88 -12,7 -24,25 -28,40 -3,16 -26,48 -50,72 -31,30 -45,52 -45,71 0,14 -14,57 -31,95 -34,75 -44,156 -55,435 -5,118 -3,141 12,170 21,41 22,115 1,155 -15,30 -14,33 34,130 63,125 229,567 229,608 0,9 11,42 24,74 13,31 29,84 35,117 17,96 77,227 127,280 28,28 44,54 44,70 0,39 115,133 136,112 12,-11 -62,-133 -107,-177 -56,-56 -69,-79 -69,-123 0,-26 -12,-50 -45,-93 -68,-87 -84,-166 -35,-172 43,-4 86,30 98,79 6,26 41,85 82,143 41,58 75,117 81,143 7,24 28,61 49,85 34,39 38,41 44,21 5,-14 -10,-55 -49,-133 -30,-62 -55,-119 -55,-126 0,-7 -16,-27 -35,-45 -29,-28 -35,-40 -35,-76 0,-32 -7,-50 -28,-75 -15,-18 -36,-45 -45,-60 -10,-15 -35,-37 -56,-47 -51,-27 -98,-82 -112,-133 -6,-23 -35,-90 -64,-148 -29,-58 -58,-126 -64,-150 -7,-25 -23,-67 -36,-95 -13,-28 -41,-131 -62,-230 -40,-195 -43,-257 -17,-380 8,-38 14,-102 13,-141 -2,-60 2,-77 20,-103 12,-16 35,-63 52,-103 16,-40 43,-90 59,-110 17,-20 30,-49 30,-64 0,-19 13,-38 46,-68 25,-22 55,-58 65,-79 11,-21 30,-42 43,-47 13,-5 68,-54 122,-110 55,-56 117,-114 139,-129 22,-14 47,-41 57,-59 24,-49 45,-69 107,-104 95,-53 132,-80 161,-123 27,-40 203,-159 375,-255 33,-19 86,-53 118,-76 31,-24 73,-48 92,-54 21,-7 42,-24 55,-46 19,-29 27,-34 60,-34 21,0 68,-11 104,-25 37,-14 83,-25 102,-25 41,0 301,-85 325,-106 21,-19 43,-18 62,4 26,28 21,47 -21,76 -29,20 -50,26 -88,26 -43,0 -58,6 -95,35 -27,20 -86,49 -149,70 -126,44 -138,50 -218,109 -48,36 -71,46 -101,46 -41,0 -91,30 -145,89 -17,17 -35,31 -41,31 -22,0 -110,52 -160,94 -27,24 -61,49 -75,56 -13,7 -33,24 -44,38 -11,13 -47,37 -80,52 -34,15 -72,40 -86,55 -14,15 -50,45 -81,66 -31,21 -71,57 -90,81 -50,66 -110,127 -156,159 -26,18 -46,42 -53,64 -12,38 -52,75 -80,75 -24,0 -128,114 -136,148 -11,45 -60,135 -88,161 -14,13 -35,49 -47,80 -17,46 -19,68 -14,122 6,56 3,73 -14,106 -37,74 -44,123 -31,220 6,48 20,108 32,133 12,27 23,83 28,142 7,71 16,109 34,145 14,26 30,73 36,103 15,70 97,240 116,240 11,0 12,-4 4,-19 -5,-11 -10,-29 -10,-39 0,-11 -11,-44 -25,-74 -14,-29 -25,-62 -25,-73 0,-11 -6,-32 -14,-46 -8,-16 -11,-46 -8,-81 3,-46 -1,-67 -22,-113 -36,-80 -50,-171 -42,-284 13,-189 24,-267 45,-319 11,-29 21,-65 21,-80 0,-18 11,-38 29,-56 20,-19 35,-52 52,-108 18,-65 35,-98 86,-167 36,-47 81,-101 101,-121 20,-20 49,-55 64,-77 15,-23 43,-49 63,-59 22,-10 50,-38 73,-72 51,-76 78,-102 102,-102 20,0 112,-72 171,-134 15,-15 46,-37 70,-48 24,-10 61,-33 83,-51 85,-68 179,-129 212,-139 20,-5 52,-24 72,-41 20,-18 49,-39 63,-46 15,-7 47,-33 72,-57 33,-31 57,-45 87,-50 22,-4 69,-24 104,-45 35,-21 81,-42 102,-47 23,-5 54,-23 74,-44 34,-34 38,-35 88,-30 48,4 56,2 92,-27 21,-17 63,-37 94,-45 30,-8 65,-20 78,-28 13,-7 37,-14 53,-15 17,-1 45,-5 62,-8 39,-9 76,-1 97,21 39,38 1,94 -63,94 -21,0 -86,16 -144,35 -58,19 -113,35 -122,35 -9,0 -53,16 -98,36 -45,20 -106,43 -134,51 -50,13 -154,79 -247,156 -57,46 -64,49 -125,56 -51,6 -57,9 -84,48 -23,36 -34,43 -60,43 -45,0 -91,31 -132,89 -38,52 -65,74 -105,84 -14,3 -53,38 -88,76 -36,40 -96,92 -142,122 -60,39 -91,68 -123,113 -23,33 -57,70 -75,83 -19,12 -57,55 -86,95 l -52,73 h -50 -49 l -7,65 c -6,49 -19,88 -57,160 -27,52 -63,131 -80,175 -18,44 -41,99 -52,121 -17,35 -19,52 -13,100 4,33 8,97 9,144 2,104 21,257 36,296 6,16 15,73 20,128 5,66 16,113 30,143 18,37 20,48 9,67 -10,19 -8,28 14,60 13,20 30,54 37,74 38,120 98,254 149,332 39,58 65,111 75,151 20,78 71,180 122,244 21,28 54,74 72,104 18,30 66,102 107,159 42,59 74,115 74,128 0,15 6,24 16,24 9,0 46,29 83,65 37,36 74,65 81,65 8,0 50,24 94,54 88,59 131,79 189,90 21,4 59,21 85,37 36,23 57,29 92,28 29,-1 78,10 138,31 89,32 95,32 147,20 29,-7 67,-10 84,-7 64,13 131,-10 241,-82 96,-64 145,-90 192,-105 9,-3 29,-23 43,-46 14,-22 30,-40 36,-40 15,0 -8,-27 -33,-41 -15,-8 -25,-4 -51,22 -18,17 -71,59 -118,93 -80,58 -95,65 -213,95 -82,21 -138,31 -155,26 -27,-7 -49,-8 -91,-4 -14,1 -38,-3 -55,-9 -71,-26 -224,-72 -270,-82 -27,-6 -59,-20 -70,-30 -11,-10 -62,-36 -113,-58 -136,-59 -301,-191 -344,-277 -12,-22 -36,-57 -54,-77 -18,-20 -36,-53 -40,-72 -3,-21 -18,-46 -33,-59 -50,-42 -79,-93 -210,-370 -134,-283 -205,-446 -267,-615 -31,-83 -34,-104 -32,-180 1,-54 -5,-121 -17,-177 -18,-90 -18,-91 3,-185 11,-52 28,-148 36,-213 10,-72 26,-141 41,-177 14,-33 25,-68 25,-77 0,-10 7,-29 16,-41 15,-22 23,-23 73,-4 11,4 11,1 2,-16 -14,-26 -14,-87 -1,-113 6,-10 21,-19 35,-19 44,0 55,-10 55,-52 0,-50 22,-92 60,-115 16,-9 32,-25 36,-35 3,-9 31,-44 63,-78 50,-54 60,-61 84,-55 25,7 29,3 48,-41 35,-84 40,-91 79,-113 21,-12 48,-37 59,-55 37,-60 71,-86 110,-86 30,0 48,-11 105,-61 63,-56 72,-60 103,-54 31,5 38,2 71,-33 20,-21 49,-43 63,-49 15,-6 46,-38 71,-70 36,-47 51,-60 83,-67 22,-4 58,-14 80,-22 23,-8 55,-14 72,-14 25,0 35,-7 52,-35 16,-28 40,-44 116,-80 103,-48 339,-126 383,-127 52,-2 99,41 86,77 -4,8 -25,27 -49,40 -35,21 -55,25 -119,25 -57,0 -87,5 -116,20 -21,11 -64,29 -95,41 -30,11 -68,31 -83,43 -15,13 -57,33 -93,45 -91,30 -139,63 -258,175 -113,107 -147,131 -272,192 -98,48 -108,58 -116,111 -8,48 -19,55 -61,37 -37,-15 -54,-11 -46,11 10,25 -17,56 -70,79 -30,13 -62,36 -72,52 -11,16 -49,58 -85,94 -37,36 -74,82 -82,102 -12,28 -24,39 -49,46 -31,8 -33,11 -33,54 0,33 -6,53 -21,70 -34,38 -54,71 -54,91 0,35 -31,84 -64,102 -29,16 -37,30 -69,124 -20,58 -39,131 -43,161 -3,30 -14,82 -24,116 -16,51 -17,73 -9,138 5,42 14,88 19,102 6,14 10,78 10,143 0,107 2,123 25,165 14,26 25,60 25,76 0,20 15,47 46,85 33,41 48,69 53,103 9,55 74,221 106,273 13,19 30,57 39,84 10,27 31,64 48,84 33,37 71,115 83,170 4,21 31,59 74,105 37,39 83,94 101,121 19,28 71,88 115,134 62,65 94,90 145,113 36,16 79,42 95,58 17,15 46,31 65,35 19,4 69,18 110,32 45,14 97,23 130,23 30,-1 80,6 110,15 70,20 110,15 251,-36 139,-49 161,-61 196,-102 15,-19 40,-42 56,-52 30,-19 35,-42 11,-52 -10,-4 -32,10 -62,39 -26,25 -57,51 -69,57 -59,30 -195,73 -256,81 -61,7 -73,6 -103,-12 -27,-16 -56,-21 -120,-23 -71,-2 -89,-6 -108,-24 -27,-25 -76,-41 -127,-41 -25,0 -42,-7 -60,-26 -13,-14 -50,-39 -82,-56 -32,-17 -67,-44 -78,-60 -11,-15 -27,-28 -36,-28 -22,0 -141,-118 -171,-170 -15,-24 -39,-56 -54,-70 -36,-34 -155,-253 -188,-350 -15,-43 -36,-90 -47,-106 -25,-35 -49,-105 -69,-197 -21,-101 -19,-123 14,-147 l 28,-21 -30,-62 -31,-62 3,-175 c 2,-110 8,-199 18,-240 8,-36 22,-115 30,-177 8,-61 20,-131 28,-155 15,-51 11,-75 -10,-57 -8,6 -14,20 -14,30 0,10 -9,36 -21,58 -11,22 -34,86 -52,143 -30,99 -31,111 -35,318 -3,179 0,228 14,290 10,41 18,93 18,115 1,33 -2,40 -20,43 -17,2 -31,-11 -62,-57 -62,-93 -65,-111 -58,-300 8,-196 8,-201 5,-288 -1,-55 4,-83 30,-148 34,-89 37,-105 18,-105 -29,0 -50,-26 -43,-53 5,-20 16,-29 46,-37 52,-14 93,-79 94,-151 1,-42 7,-55 51,-106 27,-32 66,-73 87,-91 30,-27 38,-41 38,-68 0,-35 28,-74 53,-74 20,0 43,-29 56,-72 12,-36 27,-48 62,-48 24,0 195,-172 220,-222 12,-24 28,-40 44,-43 14,-3 35,-7 48,-10 12,-3 57,-36 99,-73 47,-42 93,-73 118,-81 29,-8 45,-21 56,-44 53,-102 116,-157 183,-157 16,0 42,-10 58,-24 45,-38 144,-83 229,-105 44,-11 99,-27 123,-35 40,-15 46,-15 92,6 42,17 54,19 76,9 19,-9 29,-9 39,0 21,17 18,24 -31,79 -24,27 -49,58 -54,68 -5,10 -46,40 -90,66 -65,38 -87,46 -110,41 -24,-5 -33,-1 -52,23 -32,39 -109,81 -249,135 -63,25 -142,56 -175,71 -33,14 -68,26 -77,26 -16,0 -162,130 -293,260 -33,32 -73,64 -88,70 -25,9 -28,14 -22,38 8,41 -21,65 -68,57 -43,-8 -55,9 -64,88 -8,71 -16,83 -71,109 l -47,23 v 60 c 0,61 -10,87 -63,167 -20,32 -23,45 -18,90 7,64 7,58 -2,188 -5,58 -11,112 -15,120 -4,8 -11,127 -16,265 -9,247 -9,250 15,322 13,41 24,84 24,96 0,29 86,294 104,322 8,12 28,35 44,52 19,18 33,45 37,69 7,41 60,124 131,209 24,28 48,63 53,78 8,19 18,27 36,27 28,0 65,32 65,55 0,9 9,15 23,15 12,0 36,9 52,20 17,11 45,20 63,20 28,0 35,5 47,34 18,43 62,73 84,57 69,-48 104,-46 116,8 8,36 18,45 75,65 63,22 82,20 195,-19 55,-19 112,-35 126,-35 40,0 63,-22 55,-53 -6,-25 -8,-25 -63,-20 -42,5 -69,14 -98,36 -35,25 -46,28 -85,22 -25,-3 -62,-5 -82,-5 -45,1 -66,-9 -119,-57 -33,-30 -46,-35 -96,-37 -44,-2 -78,-12 -143,-44 -128,-63 -250,-161 -250,-201 0,-23 -53,-104 -106,-161 -19,-21 -34,-51 -39,-75 -3,-22 -28,-74 -55,-115 -60,-94 -80,-153 -80,-234 0,-58 -3,-68 -34,-105 -40,-48 -53,-113 -42,-214 4,-34 9,-105 12,-157 2,-52 13,-142 24,-200 11,-58 26,-162 35,-233 17,-135 22,-154 54,-202 30,-43 28,-89 -4,-103 -38,-17 -22,-46 21,-37 29,5 35,2 48,-23 8,-16 20,-50 27,-76 8,-34 18,-50 35,-56 37,-15 180,-161 192,-198 17,-49 80,-131 105,-137 12,-2 35,-6 51,-7 23,-2 31,-9 37,-31 11,-41 25,-55 98,-93 36,-19 77,-41 91,-49 14,-8 43,-19 66,-25 22,-5 60,-23 85,-39 160,-104 174,-111 210,-111 28,0 50,-10 90,-40 30,-23 114,-70 187,-105 73,-36 148,-76 167,-91 29,-22 63,-31 208,-56 151,-25 181,-28 242,-19 39,6 128,13 198,16 87,4 157,14 215,29 196,53 281,79 357,110 44,19 117,46 163,61 46,15 106,43 135,62 29,19 76,46 106,59 29,13 71,39 91,58 22,19 61,41 91,50 30,8 96,42 148,76 62,39 105,60 125,60 16,0 59,15 95,34 36,18 141,59 232,90 174,59 255,70 327,45 64,-22 97,34 47,81 -21,20 -30,22 -74,16 -37,-5 -59,-2 -80,9 -39,20 -80,19 -103,-1 -10,-10 -37,-17 -67,-18 -34,-1 -73,-14 -132,-43 -46,-22 -103,-43 -126,-46 -23,-3 -55,-14 -71,-26 -60,-42 -168,-93 -204,-96 -27,-2 -49,-13 -76,-37 -29,-26 -51,-37 -89,-42 -60,-8 -94,-32 -129,-92 -23,-39 -30,-44 -61,-44 -22,0 -64,-16 -117,-45 -44,-24 -106,-51 -137,-58 -30,-8 -96,-35 -145,-59 -108,-54 -186,-84 -239,-93 -22,-4 -56,-16 -75,-28 -26,-16 -53,-22 -110,-23 -123,-3 -248,-18 -261,-31 -9,-9 -18,-9 -31,-2 -30,16 -266,35 -279,22 -8,-8 -27,0 -67,27 -107,70 -284,174 -422,247 -36,19 -76,45 -90,58 -14,13 -61,46 -105,74 -59,38 -90,51 -117,51 -20,0 -40,5 -43,10 -4,6 -23,17 -43,26 -20,8 -56,35 -79,59 -23,24 -78,71 -122,104 -44,34 -95,83 -112,109 -18,26 -54,70 -80,99 -26,29 -54,73 -63,99 -8,25 -44,85 -80,132 -87,119 -105,150 -113,208 -3,27 -12,58 -19,69 -20,31 -74,190 -74,217 0,14 11,35 25,48 14,13 25,32 25,42 0,16 -6,19 -32,16 l -33,-3 -2,73 c -2,52 2,84 14,110 14,30 18,79 23,247 l 5,210 32,55 c 18,31 35,75 39,99 4,24 17,55 29,69 30,36 45,67 45,90 0,11 12,37 26,58 15,21 31,53 36,70 15,55 242,253 265,231 10,-11 -30,-66 -108,-147 -61,-64 -94,-109 -130,-179 -27,-51 -49,-99 -49,-106 0,-7 -7,-18 -16,-26 -28,-23 -55,-88 -75,-181 -11,-50 -27,-104 -35,-120 -10,-19 -13,-40 -9,-57 8,-29 26,-233 25,-268 -8,-161 9,-345 39,-439 11,-32 29,-93 41,-134 25,-85 45,-118 108,-177 24,-23 41,-47 37,-53 -13,-21 17,-78 76,-146 33,-38 68,-84 78,-102 9,-18 35,-43 57,-56 28,-15 49,-40 74,-85 33,-60 38,-65 83,-76 31,-8 62,-25 85,-48 20,-20 50,-39 66,-43 16,-4 57,-33 93,-65 43,-39 80,-63 116,-75 78,-25 143,-60 188,-101 36,-33 50,-38 118,-47 42,-6 122,-9 178,-8 71,2 115,-2 147,-13 31,-11 62,-14 90,-10 31,5 52,2 75,-9 30,-16 33,-15 86,9 41,20 63,24 90,19 23,-4 49,-1 75,10 22,9 57,16 78,16 52,0 234,46 285,71 23,12 53,30 66,40 13,11 33,19 44,19 22,0 187,81 224,110 12,10 42,42 66,71 33,40 57,59 93,72 56,20 65,27 155,123 57,61 73,88 128,213 51,117 64,157 70,221 5,45 4,98 -1,122 -5,24 -12,114 -17,200 -6,123 -11,162 -24,176 -26,29 -56,105 -66,168 -5,33 -44,142 -86,244 -42,102 -89,229 -105,283 -16,55 -41,117 -55,139 -18,28 -30,62 -35,105 -8,59 -42,131 -72,149 -4,3 -8,26 -8,52 0,111 -62,253 -130,298 -23,16 -40,35 -43,52 -18,92 -48,164 -90,215 -25,31 -48,69 -51,85 -4,16 -25,46 -47,68 -32,31 -43,37 -57,28 -38,-24 -19,-129 27,-154 17,-8 92,-131 114,-184 4,-11 24,-42 44,-70 19,-27 40,-66 45,-85 9,-35 25,-74 106,-256 23,-49 44,-112 48,-140 3,-27 17,-77 30,-109 13,-33 24,-64 24,-70 0,-6 14,-40 30,-74 17,-35 30,-74 30,-86 0,-37 78,-290 116,-377 44,-99 46,-107 86,-279 25,-111 31,-160 34,-280 2,-80 6,-157 9,-172 5,-20 2,-29 -13,-37 -25,-13 -37,-45 -58,-151 -9,-47 -21,-94 -27,-105 -20,-40 -193,-207 -244,-237 -60,-34 -98,-75 -120,-130 -11,-28 -29,-46 -70,-70 -30,-18 -71,-43 -91,-55 -20,-13 -53,-23 -73,-23 -20,0 -56,-11 -80,-23 -24,-13 -80,-32 -124,-42 -44,-9 -100,-24 -125,-32 -50,-17 -64,-19 -241,-29 -84,-4 -147,-3 -190,5 -35,6 -122,16 -194,21 -119,8 -138,12 -225,49 -52,21 -113,54 -135,73 -21,18 -51,38 -66,45 -88,37 -287,209 -303,261 -4,10 -21,25 -39,34 -17,8 -59,40 -93,69 -34,30 -71,62 -83,71 -11,10 -21,26 -21,36 0,10 -18,44 -39,74 -103,147 -181,282 -219,379 -41,104 -41,106 -33,184 9,76 8,80 -14,101 -34,32 -37,67 -25,279 19,351 30,401 123,573 48,89 87,143 186,257 108,123 127,141 131,122 9,-35 42,-28 62,13 38,76 86,88 157,40 29,-20 56,-30 81,-30 37,0 38,-1 42,-40 3,-37 2,-40 -27,-46 -35,-7 -78,-36 -117,-76 -15,-17 -37,-28 -52,-28 -40,0 -31,17 24,45 73,37 82,96 16,118 -45,15 -75,0 -161,-83 -46,-44 -95,-82 -111,-86 -64,-15 -83,-32 -100,-90 -9,-30 -28,-70 -43,-87 -30,-35 -57,-104 -97,-247 -24,-86 -27,-115 -31,-316 -5,-216 -4,-223 20,-290 14,-38 30,-96 37,-129 6,-33 22,-85 35,-115 13,-30 26,-76 30,-103 6,-47 23,-82 100,-211 30,-51 47,-68 73,-77 32,-10 34,-14 29,-44 -7,-42 9,-65 76,-109 29,-20 68,-54 86,-77 22,-27 54,-50 96,-69 75,-34 95,-59 95,-120 0,-51 13,-70 47,-70 31,0 72,-22 102,-54 14,-14 33,-26 44,-26 10,0 51,-13 90,-29 40,-15 104,-35 142,-44 39,-9 99,-26 135,-37 44,-14 88,-21 135,-20 39,1 106,-6 149,-15 l 79,-16 46,24 c 38,20 57,23 108,19 44,-3 71,0 94,12 18,9 48,16 67,16 23,0 44,8 58,21 21,20 24,20 46,5 31,-22 40,-21 122,18 39,18 91,42 115,52 83,35 112,74 76,104 -21,18 -148,-12 -223,-52 -39,-21 -71,-30 -111,-32 -43,-1 -62,-7 -79,-24 -25,-25 -40,-29 -143,-37 -48,-3 -87,-1 -105,6 -30,12 -95,17 -254,22 -58,1 -104,7 -119,16 -20,11 -33,11 -79,0 -52,-12 -57,-12 -95,10 -25,15 -57,24 -81,24 -46,-1 -70,9 -106,43 -14,13 -53,32 -88,43 -73,22 -142,69 -121,82 7,4 52,6 99,4 73,-2 96,-8 165,-40 44,-20 107,-41 140,-46 33,-5 81,-16 107,-25 25,-8 66,-14 90,-14 23,1 61,-5 83,-14 56,-21 351,-22 455,-1 103,21 110,24 134,50 20,21 163,65 212,65 11,0 37,9 58,19 34,18 41,18 76,6 37,-13 40,-13 77,16 21,16 89,65 151,110 l 112,80 v 43 c 0,27 12,67 35,114 34,71 34,73 18,107 -15,32 -15,36 5,84 17,38 22,70 22,133 0,90 -20,248 -45,353 -8,37 -15,81 -15,99 0,34 -38,118 -56,123 -6,2 -21,-5 -34,-15 -23,-19 -23,-20 -12,-103 7,-46 12,-107 12,-136 0,-29 7,-77 14,-108 11,-41 12,-63 4,-86 -6,-16 -8,-47 -4,-69 4,-24 0,-51 -9,-74 -11,-26 -14,-52 -9,-86 8,-63 -2,-120 -22,-120 -9,0 -28,-13 -43,-28 -25,-24 -28,-36 -29,-91 -1,-71 -19,-101 -60,-101 -39,0 -91,-30 -120,-69 -14,-20 -29,-39 -32,-44 -3,-4 -20,-2 -37,4 -27,9 -36,7 -70,-15 -59,-39 -263,-124 -349,-146 -93,-24 -221,-26 -290,-5 -31,10 -68,13 -99,10 -27,-3 -84,-1 -125,6 -41,6 -106,15 -145,19 -102,12 -162,25 -230,50 -33,12 -82,29 -110,37 -27,8 -64,28 -80,44 -17,16 -58,42 -92,58 -34,17 -84,50 -112,75 -29,25 -63,53 -77,62 -20,14 -24,22 -19,46 8,36 -7,56 -51,64 -27,5 -38,14 -49,39 -7,19 -26,41 -42,51 -15,10 -29,19 -31,20 -2,1 4,16 13,34 16,30 15,33 -7,67 -13,19 -40,42 -61,52 -35,15 -40,23 -67,101 -18,50 -30,106 -30,135 0,29 -7,60 -15,72 -11,16 -15,46 -15,110 1,142 -6,225 -23,277 -19,55 -15,78 18,118 13,15 44,91 69,170 26,82 57,156 71,173 l 24,30 1,-57 c 0,-42 -7,-69 -27,-108 -19,-36 -29,-75 -34,-133 -4,-45 -15,-106 -24,-135 -16,-52 -16,-55 4,-102 15,-34 21,-70 21,-118 0,-49 12,-115 40,-223 33,-126 53,-180 113,-298 42,-84 82,-150 95,-159 13,-9 34,-39 47,-67 14,-33 39,-65 69,-89 25,-21 46,-45 46,-52 0,-26 39,-54 74,-54 26,0 40,-7 56,-27 11,-15 37,-38 58,-51 20,-14 48,-35 62,-47 20,-18 42,-24 110,-30 64,-5 94,-13 120,-30 29,-19 54,-24 140,-29 58,-4 141,-11 185,-17 131,-18 386,-12 407,9 6,6 24,12 38,12 56,0 131,31 169,70 27,28 41,36 52,29 26,-16 51,-9 90,26 21,19 61,46 88,59 27,14 52,30 56,36 3,5 19,10 35,10 42,0 57,21 65,94 4,40 14,75 26,90 10,13 19,38 19,55 0,18 14,58 30,91 28,55 30,68 30,163 0,60 6,127 15,162 13,49 14,67 3,107 -9,38 -9,64 1,123 20,119 6,317 -31,430 -16,50 -38,103 -49,118 -15,20 -22,50 -26,105 -4,54 -13,89 -29,117 -12,22 -41,91 -63,153 -22,63 -49,128 -60,145 -11,18 -29,59 -40,92 -12,33 -35,83 -53,110 -17,28 -47,79 -66,115 -19,36 -43,74 -53,85 -10,11 -27,45 -39,76 -24,67 -78,153 -143,228 -28,32 -57,82 -73,123 -22,58 -33,73 -68,95 -22,14 -58,45 -79,69 -26,30 -49,45 -73,50 -23,4 -40,15 -51,35 -21,35 -218,202 -292,246 -29,18 -75,39 -100,48 -26,8 -91,38 -144,65 -62,32 -110,50 -133,50 -19,0 -60,9 -91,20 -32,11 -70,20 -86,20 -16,0 -55,6 -86,14 -80,20 -150,26 -196,15 z m 436,-1657 c 15,-9 42,-37 60,-61 19,-25 47,-49 64,-54 40,-13 62,-33 74,-68 8,-24 7,-29 -5,-29 -22,0 -66,25 -89,50 -11,12 -51,36 -90,54 -38,18 -81,42 -94,53 -24,20 -25,21 -8,47 20,30 51,33 88,8 z M 3156,5353 c -10,-10 -19,5 -10,18 6,11 8,11 12,0 2,-7 1,-15 -2,-18 z m 4,-109 c 0,-8 -4,-14 -10,-14 -5,0 -10,9 -10,21 0,11 5,17 10,14 6,-3 10,-13 10,-21 z m 1464,-175 c 49,-17 64,-18 87,-8 37,15 61,5 57,-22 -5,-34 -31,-45 -70,-31 -20,7 -54,9 -84,6 -47,-6 -54,-4 -97,29 -36,28 -43,37 -29,40 38,10 81,6 136,-14 z M 4077,3370 c 71,-27 157,-67 192,-87 64,-38 196,-151 187,-161 -8,-7 -135,46 -170,72 -17,12 -47,29 -66,36 -69,28 -265,131 -277,147 -15,20 -17,43 -3,43 5,0 67,-22 137,-50 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16888"
+         d="m 5405,7720 c -9,-10 -15,-23 -14,-28 2,-5 51,-47 109,-93 182,-144 383,-358 527,-559 34,-47 90,-111 126,-142 56,-49 69,-68 92,-129 15,-39 49,-99 74,-133 26,-33 64,-88 84,-121 43,-69 140,-189 210,-257 30,-29 52,-62 59,-85 7,-25 32,-58 77,-103 37,-36 93,-105 125,-155 35,-53 92,-123 142,-170 64,-62 85,-89 93,-122 6,-23 26,-62 44,-87 135,-189 186,-252 288,-357 84,-86 123,-119 140,-119 13,0 44,17 69,39 l 45,39 -52,49 c -33,30 -53,58 -53,71 0,14 -14,31 -41,49 -23,16 -53,36 -68,45 -14,10 -35,18 -46,18 -14,1 -40,31 -88,103 -37,56 -93,139 -125,185 -84,121 -119,175 -126,198 -3,11 -19,27 -34,36 -27,16 -69,61 -137,144 -16,20 -42,41 -58,46 -20,8 -35,25 -51,62 -28,61 -69,117 -197,268 -53,62 -108,136 -123,163 -15,28 -53,84 -86,124 -33,41 -66,89 -74,105 -8,17 -40,55 -71,85 -32,29 -65,72 -75,95 -11,22 -35,57 -56,76 -20,19 -45,53 -55,76 -10,23 -38,61 -61,85 -24,25 -59,62 -79,84 -20,22 -49,52 -65,67 -16,15 -39,38 -52,50 -201,203 -260,256 -297,268 -22,7 -54,20 -72,30 -30,18 -32,18 -48,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d682;fill-opacity:1;stroke-width:27.17825317"
+         id="path16890"
+         d="m 3890,7679 c -14,-6 -61,-15 -105,-20 -135,-17 -305,-63 -360,-98 -27,-17 -81,-41 -120,-52 -38,-11 -86,-33 -105,-48 -19,-15 -50,-31 -68,-34 -18,-4 -62,-25 -99,-47 -37,-22 -72,-40 -79,-40 -18,0 -159,-107 -178,-134 -8,-14 -35,-34 -58,-44 -24,-11 -79,-53 -124,-94 -44,-41 -106,-94 -136,-117 -59,-44 -92,-86 -129,-164 -37,-75 -16,-78 81,-10 45,32 96,67 113,79 18,12 41,39 52,60 16,31 34,46 85,70 40,19 102,64 162,118 87,77 122,114 186,195 16,21 21,22 41,11 20,-10 27,-9 50,9 40,33 101,59 156,66 43,6 57,14 97,57 45,49 48,50 120,58 40,5 86,13 101,19 16,6 42,11 60,11 17,0 40,9 53,21 19,18 37,21 138,24 125,4 428,-25 463,-43 11,-6 36,-9 56,-5 30,4 42,1 67,-21 18,-14 44,-28 58,-31 68,-14 180,-48 214,-66 47,-24 84,-24 97,-1 16,31 -12,57 -96,92 -43,18 -100,44 -128,58 -29,15 -77,29 -115,33 -36,4 -92,14 -125,22 -58,15 -385,78 -395,76 -3,0 -16,-5 -30,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16892"
+         d="m 2565,7451 c -22,-10 -55,-32 -72,-50 -18,-17 -43,-31 -55,-31 -27,0 -91,-37 -189,-110 -42,-31 -112,-76 -155,-100 -43,-23 -102,-65 -131,-93 l -53,-50 -23,21 c -22,20 -34,21 -106,6 -13,-3 -51,-31 -85,-62 -34,-32 -81,-71 -105,-87 -24,-16 -50,-43 -58,-60 -8,-18 -32,-42 -54,-55 -21,-14 -64,-58 -96,-99 -32,-41 -82,-102 -111,-135 -29,-34 -103,-122 -164,-196 -62,-74 -151,-173 -199,-220 -103,-102 -166,-177 -203,-244 -33,-61 -73,-108 -206,-244 -58,-59 -117,-121 -131,-137 -14,-17 -38,-38 -52,-48 -15,-10 -27,-26 -27,-36 0,-10 -14,-36 -31,-57 -17,-22 -40,-58 -50,-82 -13,-31 -27,-46 -49,-53 -21,-8 -32,-19 -35,-37 -3,-15 -10,-46 -15,-70 -20,-85 -11,-112 36,-112 10,0 13,7 9,23 -4,18 3,27 46,52 77,45 113,86 157,178 33,68 63,108 164,217 159,171 191,211 235,290 25,43 85,115 182,215 261,269 521,581 521,624 0,32 236,262 317,309 39,23 74,42 78,42 16,0 -36,-67 -92,-120 -34,-32 -79,-82 -99,-110 -23,-33 -51,-58 -73,-67 -53,-22 -69,-40 -105,-118 -34,-71 -68,-123 -163,-244 -29,-36 -53,-72 -53,-79 0,-7 -51,-68 -113,-135 -173,-187 -253,-281 -293,-344 -79,-123 -90,-137 -125,-160 -22,-15 -45,-43 -60,-75 -15,-33 -49,-74 -95,-117 -42,-39 -79,-82 -88,-105 -9,-22 -37,-63 -61,-92 -25,-29 -52,-71 -60,-94 -8,-23 -34,-70 -58,-103 -129,-182 -171,-237 -182,-237 -23,0 -48,-39 -49,-77 -1,-32 3,-39 21,-41 15,-2 25,5 35,24 7,16 34,39 63,53 40,21 55,36 76,78 27,54 83,121 210,257 94,101 167,195 216,283 20,38 61,91 91,119 33,32 56,64 63,88 7,25 38,66 98,129 79,82 191,224 291,368 19,27 52,63 73,78 21,16 52,51 69,77 16,26 47,68 68,93 20,25 53,75 71,111 35,67 77,115 264,310 61,63 141,154 178,202 49,65 79,94 115,112 57,29 141,92 241,181 41,36 86,68 100,71 14,4 60,28 101,54 41,26 88,54 105,61 35,17 44,47 19,66 -24,17 -41,16 -89,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ad20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16894"
+         d="m 3865,7459 c -16,-5 -56,-12 -89,-14 -32,-2 -74,-10 -94,-16 -19,-6 -60,-17 -91,-24 -87,-19 -177,-53 -284,-106 -54,-27 -106,-49 -117,-49 -10,0 -47,-24 -81,-52 -65,-56 -166,-128 -398,-284 -97,-65 -167,-121 -215,-172 -39,-41 -101,-105 -137,-141 -37,-36 -80,-91 -97,-121 -17,-30 -69,-104 -116,-164 -47,-61 -102,-139 -123,-175 -21,-38 -73,-102 -123,-151 -92,-92 -211,-238 -252,-310 -14,-25 -38,-77 -52,-116 -20,-54 -38,-82 -71,-112 -30,-27 -45,-49 -45,-65 0,-13 -15,-44 -34,-69 -19,-24 -43,-58 -53,-76 -11,-17 -34,-48 -52,-69 -18,-21 -56,-81 -85,-133 -110,-200 -159,-277 -205,-325 -27,-27 -62,-71 -79,-96 -17,-25 -38,-51 -47,-59 -9,-7 -36,-43 -59,-79 -24,-36 -86,-109 -138,-162 -53,-53 -103,-110 -112,-127 -12,-24 -27,-34 -71,-47 -67,-19 -90,-40 -99,-91 -9,-47 -62,-117 -83,-110 -14,6 -66,-33 -149,-111 -35,-32 -37,-56 -6,-68 11,-4 28,8 54,36 35,38 41,41 70,33 70,-17 109,-10 139,24 16,18 29,42 29,55 0,33 11,43 52,51 32,6 44,16 77,64 21,31 99,118 172,192 74,74 145,151 158,170 14,19 37,47 51,62 15,16 90,133 167,260 77,128 175,283 217,343 43,61 103,151 133,200 30,50 72,110 93,135 28,34 38,57 42,93 4,32 14,57 30,75 14,15 48,61 76,103 30,45 67,86 88,100 25,15 44,38 59,74 14,30 48,77 82,111 33,32 83,100 112,149 29,50 71,108 92,131 22,22 42,54 45,70 6,31 34,72 99,144 22,25 58,67 79,93 21,27 70,71 108,99 40,29 78,67 93,92 33,57 51,72 105,86 24,7 70,25 102,41 32,16 67,29 78,29 12,0 29,15 44,38 43,65 60,79 100,86 31,6 55,24 125,95 74,76 93,90 136,100 28,7 82,30 121,52 45,24 85,39 106,39 22,0 42,7 53,20 11,12 31,20 50,20 18,0 50,7 71,16 26,11 75,17 144,19 58,2 117,6 132,10 15,4 50,1 77,-6 42,-11 56,-10 89,3 36,14 40,14 61,-3 16,-13 40,-19 76,-19 31,0 71,-8 96,-20 24,-11 56,-20 70,-20 55,0 183,-41 276,-88 54,-27 119,-57 145,-67 43,-16 49,-22 59,-59 13,-49 40,-81 92,-107 20,-11 37,-26 37,-35 0,-8 25,-42 56,-74 59,-62 62,-69 105,-300 6,-30 21,-67 34,-82 26,-31 40,-71 50,-141 3,-26 24,-81 45,-120 21,-40 46,-100 55,-133 9,-32 32,-108 51,-168 22,-69 34,-125 33,-155 -1,-25 6,-66 15,-91 11,-30 18,-83 20,-155 2,-60 8,-128 14,-150 23,-85 11,-359 -19,-447 -19,-58 -62,-103 -111,-117 -47,-15 -135,-56 -158,-76 -8,-7 -32,-18 -52,-24 -20,-7 -67,-32 -104,-57 -59,-38 -75,-44 -120,-44 -41,0 -59,-5 -81,-24 -28,-24 -29,-24 -52,-5 -30,24 -62,24 -94,-1 -33,-26 -49,-25 -77,4 -17,19 -29,24 -51,19 -16,-3 -58,4 -98,16 -38,11 -76,21 -84,21 -7,0 -22,9 -31,19 -10,10 -33,22 -52,25 -24,5 -38,15 -49,35 -17,34 -89,99 -139,126 -28,15 -38,17 -48,7 -9,-9 -2,-30 32,-97 41,-80 48,-88 107,-121 34,-19 100,-66 145,-105 45,-38 88,-67 95,-65 7,3 36,8 65,12 29,3 79,18 110,31 l 57,25 29,-21 c 37,-26 53,-26 85,-1 20,16 30,18 52,10 73,-28 233,-1 325,54 30,18 71,39 91,45 19,6 50,27 68,45 24,25 45,36 79,41 46,7 102,51 102,80 0,8 11,27 25,44 16,19 29,50 35,85 5,30 16,69 26,88 21,40 24,215 5,262 -9,21 -9,37 -1,62 7,21 9,75 6,144 -5,91 -12,129 -41,214 -28,81 -35,118 -35,177 0,64 -8,98 -54,237 -30,89 -73,195 -96,236 -22,41 -48,99 -56,128 -9,29 -34,87 -55,128 -38,73 -48,110 -31,110 18,0 54,-49 73,-100 11,-29 31,-67 44,-84 13,-17 42,-72 65,-121 23,-49 52,-103 64,-120 13,-17 25,-50 28,-78 4,-30 19,-69 42,-106 25,-41 36,-71 36,-98 0,-21 9,-72 21,-113 11,-41 21,-90 21,-109 0,-23 10,-47 30,-72 31,-39 33,-61 13,-141 -5,-19 1,-43 19,-83 23,-48 26,-64 21,-113 -4,-31 -8,-106 -10,-167 -9,-265 -9,-264 -93,-445 -42,-91 -56,-103 -129,-115 -63,-11 -91,-25 -103,-54 -12,-29 -84,-71 -123,-71 -12,0 -35,-9 -52,-20 -16,-11 -41,-20 -54,-20 -14,0 -54,-14 -89,-32 -64,-31 -66,-31 -129,-18 -51,10 -73,10 -108,0 -47,-13 -80,-10 -131,10 -35,15 -72,8 -105,-19 -20,-16 -22,-23 -13,-38 17,-28 75,-44 118,-32 30,8 41,7 64,-9 52,-37 199,-50 329,-28 78,14 105,23 134,46 32,25 40,28 74,20 51,-12 108,7 214,71 188,113 188,113 226,284 15,66 29,124 32,129 7,11 24,151 28,231 2,33 10,87 19,120 22,83 21,250 -1,301 -9,22 -20,82 -24,134 -5,66 -15,114 -33,157 -14,34 -35,97 -47,140 -11,43 -33,112 -49,153 -16,41 -34,96 -40,122 -26,120 -217,453 -343,598 -22,25 -46,59 -54,75 -8,17 -34,42 -58,57 -28,17 -52,43 -67,71 -25,49 -134,167 -219,236 -95,77 -133,89 -303,95 -117,4 -152,8 -166,21 -10,9 -52,29 -93,44 -63,24 -97,29 -209,35 -73,3 -164,8 -203,11 -38,2 -83,0 -100,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a0;fill-opacity:1;stroke-width:27.17825317"
+         id="path16896"
+         d="m 790,7125 c -19,-20 -57,-49 -85,-64 -27,-16 -90,-66 -140,-111 -128,-118 -165,-146 -215,-168 -65,-28 -92,-61 -88,-108 3,-37 2,-38 -36,-46 -55,-12 -101,-50 -147,-120 -40,-63 -41,-88 -3,-102 18,-7 54,19 54,39 0,7 13,18 30,25 16,7 55,41 86,76 30,35 63,64 72,64 10,0 31,8 47,19 38,22 262,227 370,338 44,44 97,88 117,96 71,30 73,97 4,97 -24,0 -41,-9 -66,-35 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2058d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16898"
+         d="m 6984,7116 c -16,-13 -17,-18 -6,-35 6,-12 12,-34 12,-50 0,-43 268,-336 373,-409 42,-29 89,-68 104,-86 40,-48 149,-136 168,-136 24,0 55,19 55,34 0,34 -127,181 -271,312 -85,78 -207,196 -271,263 -64,66 -123,121 -131,121 -7,0 -22,-6 -33,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16900"
+         d="m 773,6890 c -61,-64 -112,-108 -139,-119 -33,-15 -48,-30 -68,-69 -16,-31 -38,-57 -61,-70 -19,-12 -35,-25 -35,-30 0,-5 -33,-34 -73,-65 -40,-31 -79,-68 -87,-81 -7,-14 -21,-28 -30,-31 -36,-11 -240,-261 -240,-294 0,-25 22,-42 40,-31 8,5 25,7 38,3 19,-4 33,5 75,48 29,30 74,70 101,89 33,23 58,51 73,83 13,26 30,47 36,47 18,0 167,145 212,205 42,56 168,187 246,255 28,25 59,60 68,79 15,32 15,33 -12,57 -16,13 -32,24 -38,24 -5,0 -53,-45 -106,-100 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62076;fill-opacity:1;stroke-width:27.17825317"
+         id="path16902"
+         d="m 2192,6779 c -75,-57 -232,-216 -266,-269 -16,-25 -42,-54 -60,-65 -54,-35 -239,-295 -234,-330 5,-36 40,-28 96,20 28,26 52,54 52,64 0,23 78,125 111,145 15,8 29,28 32,43 4,20 48,67 148,158 232,212 245,228 212,260 -21,22 -32,18 -91,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3ad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16904"
+         d="m 2760,6768 c -11,-13 -67,-72 -126,-133 -58,-60 -110,-119 -114,-131 -5,-13 -21,-25 -39,-29 -38,-8 -147,-137 -168,-196 -7,-22 -34,-65 -60,-97 -53,-65 -89,-120 -161,-245 -39,-68 -61,-95 -95,-117 -28,-18 -66,-57 -99,-105 -29,-42 -67,-96 -85,-120 -17,-25 -34,-64 -38,-87 -6,-32 -20,-55 -61,-98 -30,-32 -54,-66 -54,-78 0,-11 -17,-42 -37,-69 -20,-26 -54,-82 -76,-123 -35,-68 -94,-156 -310,-465 -47,-66 -77,-121 -89,-164 -12,-37 -38,-88 -65,-125 -25,-33 -56,-82 -69,-108 -13,-27 -31,-48 -39,-48 -8,0 -27,-16 -42,-37 -45,-59 -145,-166 -175,-188 -15,-11 -41,-39 -57,-62 -17,-23 -63,-66 -103,-96 -40,-30 -93,-76 -118,-102 -25,-25 -58,-54 -75,-62 -16,-9 -47,-29 -68,-46 -29,-22 -41,-27 -50,-18 -13,13 -47,15 -47,2 0,-10 79,-91 89,-91 4,0 31,19 61,41 30,23 88,57 129,76 119,55 251,190 251,257 v 30 l 33,-32 c 18,-18 40,-32 49,-32 21,0 87,77 94,110 13,59 26,79 65,94 25,10 47,28 57,47 9,17 34,59 56,93 21,33 43,74 49,91 6,16 23,46 39,65 16,19 53,87 82,151 66,145 160,295 195,312 15,7 40,39 61,77 20,36 50,84 67,108 17,23 37,66 43,95 14,59 34,103 60,132 10,11 20,36 24,56 4,20 37,86 75,146 38,60 71,119 75,130 10,30 45,73 61,73 7,0 15,-6 18,-14 5,-13 -62,-173 -104,-246 -49,-87 -122,-249 -130,-289 -5,-25 -27,-73 -50,-107 -31,-49 -43,-78 -51,-131 -13,-91 -43,-192 -84,-284 -18,-42 -54,-158 -79,-258 -39,-156 -44,-188 -35,-219 5,-20 13,-88 17,-150 6,-110 6,-113 -19,-140 -30,-33 -44,-68 -58,-150 -17,-95 0,-130 79,-164 25,-10 63,-36 86,-57 36,-33 134,-81 165,-81 6,0 37,-24 69,-54 33,-31 72,-57 91,-61 19,-4 47,-24 69,-47 97,-106 110,-116 193,-148 46,-18 103,-46 128,-63 25,-17 68,-46 95,-65 60,-41 75,-62 44,-62 -12,0 -36,13 -54,29 -21,18 -49,31 -79,35 -30,5 -59,18 -80,37 -24,20 -44,29 -69,29 -30,0 -48,10 -104,60 -37,33 -71,67 -76,75 -5,9 -47,34 -94,55 -47,22 -130,70 -184,106 -59,40 -131,78 -181,96 -140,51 -153,53 -203,40 -25,-7 -61,-12 -80,-12 -20,0 -58,-11 -85,-25 -27,-14 -65,-25 -84,-25 -57,0 -98,-69 -60,-101 13,-10 27,-10 76,0 51,10 66,10 110,-5 46,-15 52,-15 94,1 45,17 45,17 84,-10 35,-25 44,-26 102,-20 l 63,7 43,-51 c 24,-28 51,-51 61,-51 10,0 46,-18 80,-40 34,-22 72,-40 86,-40 13,0 36,-11 52,-24 15,-13 57,-38 93,-56 36,-18 80,-44 98,-58 18,-14 51,-27 76,-29 30,-4 52,-14 67,-29 12,-13 31,-24 40,-24 10,0 42,-11 71,-24 29,-13 78,-31 108,-40 70,-23 133,-55 250,-129 95,-60 155,-87 192,-87 11,0 34,-11 52,-25 18,-13 54,-34 82,-46 27,-12 61,-30 76,-40 14,-11 35,-19 46,-19 24,0 72,37 72,55 0,21 -55,62 -107,79 -45,15 -92,43 -174,107 -19,14 -59,36 -89,49 -104,46 -146,80 -270,212 -68,73 -136,138 -151,145 -53,22 -260,156 -279,180 -10,13 -36,35 -57,49 -21,14 -56,43 -78,64 -52,50 -140,93 -171,86 -35,-9 -87,17 -119,57 -14,20 -46,47 -69,61 -24,14 -58,42 -75,61 -31,35 -32,39 -25,98 4,34 8,64 10,66 10,11 52,-44 64,-82 9,-32 34,-63 101,-129 49,-49 98,-88 108,-88 23,0 51,31 51,58 0,11 -31,57 -70,102 -38,45 -75,91 -81,103 -7,12 -24,36 -38,54 -74,91 -69,76 -60,208 5,66 12,170 15,230 4,84 11,123 29,165 13,30 48,132 79,226 30,94 85,233 121,309 39,83 72,168 81,210 17,81 30,119 56,157 10,15 26,50 34,78 8,28 29,66 46,83 38,40 51,72 43,109 -9,38 127,335 195,428 26,36 64,97 83,137 21,41 49,80 67,93 17,12 46,52 65,90 28,55 49,80 109,129 83,68 266,271 266,296 0,14 -36,35 -61,35 -5,0 -18,-10 -29,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a020d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16906"
+         d="m 2215,6624 c -27,-30 -79,-83 -114,-118 -35,-35 -75,-82 -90,-104 -35,-53 -296,-336 -414,-449 -53,-50 -102,-104 -111,-121 -9,-17 -29,-38 -45,-48 -15,-9 -36,-30 -46,-46 -9,-16 -36,-43 -58,-59 -23,-17 -55,-50 -72,-73 -16,-24 -65,-83 -109,-132 -67,-77 -119,-147 -307,-424 -17,-25 -45,-70 -62,-100 -18,-30 -46,-64 -63,-75 -17,-11 -38,-36 -47,-55 -9,-19 -30,-54 -47,-76 -33,-43 -35,-76 -5,-88 24,-9 107,71 153,148 24,39 58,87 77,106 18,19 43,54 54,76 12,23 39,57 61,77 22,19 51,59 65,89 14,30 48,76 76,103 28,28 53,61 56,77 4,19 25,45 61,74 62,51 81,73 110,129 32,63 76,110 95,102 15,-6 14,-10 -8,-43 -14,-21 -25,-51 -25,-70 0,-28 -7,-38 -46,-65 -50,-34 -120,-134 -214,-302 -29,-54 -74,-122 -99,-151 -50,-57 -120,-147 -190,-241 -121,-165 -233,-265 -296,-265 -41,0 -102,-52 -157,-133 -23,-33 -65,-87 -95,-119 -29,-32 -53,-62 -53,-67 0,-72 112,-76 148,-6 25,49 187,195 215,195 15,0 29,9 37,25 7,14 18,25 23,25 20,0 151,138 169,178 11,25 54,77 97,120 43,43 81,89 84,103 4,15 27,54 51,87 25,33 57,84 71,112 14,27 54,87 89,133 35,45 100,136 146,202 45,66 98,137 117,159 48,52 73,111 73,172 0,49 3,55 72,135 39,46 106,120 148,164 86,91 221,254 296,355 27,38 69,87 92,108 28,26 42,47 42,64 0,27 31,101 55,132 14,18 12,37 -3,35 -4,-1 -29,-25 -57,-55 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8720d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16908"
+         d="m 4735,6610 c -4,-6 -3,-14 0,-20 9,-15 35,-12 35,4 0,17 -27,29 -35,16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16910"
+         d="m 7350,6240 c -11,-20 -1,-80 17,-106 8,-11 86,-71 174,-134 27,-20 59,-50 70,-68 23,-38 99,-78 111,-59 21,33 -2,69 -151,236 -121,134 -195,179 -221,131 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6ba20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16912"
+         d="m 6152,6148 c -7,-7 -12,-26 -12,-42 0,-36 39,-125 63,-144 9,-8 21,-30 28,-50 6,-20 31,-74 56,-120 29,-55 45,-98 47,-127 2,-25 10,-55 18,-68 9,-12 25,-58 37,-100 12,-43 37,-109 56,-147 66,-131 113,-262 120,-335 4,-38 18,-126 31,-195 37,-196 46,-318 29,-376 -27,-93 -57,-179 -81,-229 -13,-28 -24,-56 -24,-62 0,-6 -11,-24 -23,-40 -13,-15 -27,-48 -31,-73 -10,-64 -28,-86 -87,-105 -28,-10 -68,-32 -88,-50 -20,-18 -108,-81 -196,-140 -117,-79 -187,-119 -258,-147 -54,-21 -108,-44 -120,-52 -12,-8 -53,-27 -92,-42 -38,-15 -80,-34 -93,-42 -20,-13 -33,-13 -91,-2 -60,11 -71,11 -100,-4 -18,-10 -54,-19 -79,-22 -26,-2 -68,-12 -94,-21 -40,-14 -55,-15 -98,-5 -28,7 -73,12 -98,12 -26,0 -79,9 -117,21 -101,30 -123,33 -140,19 -34,-28 -4,-90 43,-90 11,0 65,-9 119,-19 85,-16 121,-18 268,-11 150,6 180,11 259,37 84,28 91,29 117,14 26,-15 31,-14 76,6 211,94 312,136 356,147 28,7 58,23 69,35 16,21 48,38 214,117 33,16 61,38 77,63 20,31 35,41 74,50 34,8 57,22 79,47 28,33 38,37 120,51 97,15 160,40 243,97 46,31 60,36 90,31 29,-5 52,2 119,35 86,41 144,51 183,30 31,-17 78,14 79,51 0,29 -72,96 -117,108 -47,13 -73,48 -73,99 0,33 -81,195 -118,234 -16,17 -28,46 -33,79 -5,32 -21,72 -42,104 -19,28 -44,70 -56,93 -23,45 -60,63 -86,42 -22,-18 -18,-44 21,-155 19,-55 39,-116 43,-135 4,-19 22,-59 40,-89 18,-30 53,-95 77,-144 25,-48 63,-108 84,-131 53,-57 52,-72 -6,-79 -37,-4 -54,-13 -90,-48 -32,-31 -47,-40 -55,-32 -8,8 -6,20 8,44 23,43 27,246 4,272 -37,45 -85,4 -96,-79 -4,-33 -13,-86 -21,-119 -7,-33 -14,-77 -14,-98 0,-30 -5,-39 -22,-46 -13,-5 -32,-19 -43,-31 -24,-27 -104,-80 -121,-80 -14,0 -25,25 -19,43 3,6 18,19 34,28 33,19 92,106 110,161 7,20 9,52 6,70 -5,24 3,57 29,126 45,116 46,161 7,234 -17,31 -30,71 -30,89 0,52 -17,184 -36,284 -21,105 -96,338 -125,388 -11,19 -34,72 -51,117 -16,46 -41,102 -54,125 -14,23 -25,51 -25,61 0,11 -15,46 -34,77 -19,31 -37,75 -41,97 -4,24 -21,57 -40,80 -26,31 -34,49 -33,79 1,86 -86,173 -130,129 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16914"
+         d="m 6695,5676 c -17,-26 -13,-42 21,-96 12,-19 29,-60 38,-90 8,-31 27,-66 40,-79 14,-13 31,-40 37,-60 19,-60 59,-132 109,-201 26,-36 55,-80 64,-98 9,-18 34,-50 55,-70 21,-21 42,-55 49,-79 9,-29 28,-56 65,-88 28,-26 57,-60 63,-75 7,-15 39,-58 73,-95 34,-37 61,-71 61,-76 0,-5 11,-9 25,-9 17,0 46,-19 89,-59 73,-68 104,-86 164,-96 29,-5 48,-15 59,-31 8,-13 22,-24 29,-24 21,0 17,34 -6,55 -11,10 -25,35 -30,56 -16,57 -41,81 -91,88 l -44,6 -5,52 c -4,45 -10,55 -40,77 -19,15 -47,31 -61,38 -15,6 -34,24 -43,39 -9,15 -38,44 -65,64 -32,22 -54,48 -61,69 -6,18 -24,46 -42,62 -17,16 -47,54 -66,84 -20,30 -84,121 -144,202 -112,152 -194,283 -229,365 -38,88 -83,116 -114,69 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67a20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16916"
+         d="m 7752,5320 c 1,-13 9,-25 16,-28 17,-5 15,23 -4,39 -14,11 -15,10 -12,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64f20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16918"
+         d="m 3960,5055 c 0,-16 6,-25 15,-25 9,0 15,9 15,25 0,16 -6,25 -15,25 -9,0 -15,-9 -15,-25 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16920"
+         d="m 7687,5041 -17,-28 48,-47 c 26,-25 57,-53 70,-62 37,-26 39,8 2,61 -17,25 -36,59 -42,75 -13,38 -39,39 -61,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a9d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16922"
+         d="m 55,4951 c -3,-5 -1,-12 5,-16 5,-3 10,1 10,9 0,18 -6,21 -15,7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d66020;fill-opacity:1;stroke-width:27.17825317"
+         id="path16924"
+         d="m 1507,4790 c -14,-11 -35,-46 -47,-78 -12,-31 -30,-70 -40,-87 -9,-16 -23,-48 -30,-70 -7,-22 -23,-58 -36,-80 -12,-22 -36,-75 -53,-118 -16,-43 -41,-93 -54,-110 -13,-18 -27,-42 -31,-55 -4,-12 -18,-34 -30,-50 -54,-65 -96,-149 -96,-191 0,-39 -2,-43 -37,-57 -70,-27 -87,-39 -95,-70 -6,-24 -28,-43 -111,-97 -57,-37 -123,-87 -147,-111 -34,-36 -47,-43 -64,-36 -14,5 -32,1 -56,-11 -19,-11 -40,-19 -46,-19 -6,0 -19,-9 -29,-20 -11,-12 -45,-35 -76,-52 -41,-21 -63,-40 -74,-65 -13,-27 -21,-33 -36,-28 -38,12 -70,-45 -33,-59 30,-11 55,-6 88,19 18,14 62,37 96,51 35,14 83,41 108,60 45,34 53,37 124,49 22,3 56,22 85,46 26,22 81,58 120,80 104,58 168,111 210,177 21,31 52,73 69,93 17,20 39,61 49,90 23,71 46,116 84,163 17,22 34,50 38,64 3,13 21,46 39,74 29,43 34,58 34,112 0,52 5,69 36,116 19,30 39,73 45,95 6,22 22,63 36,91 18,36 24,59 19,78 -8,31 -24,33 -59,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620ba;fill-opacity:1;stroke-width:27.17825317"
+         id="path16926"
+         d="m 2447,4526 c -6,-15 1,-26 15,-26 11,0 10,27 -1,34 -5,3 -11,0 -14,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16928"
+         d="m 3414,4439 c -10,-17 13,-36 27,-22 12,12 4,33 -11,33 -5,0 -12,-5 -16,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path16930"
+         d="m 7641,4176 c -22,-26 10,-63 44,-50 18,7 20,35 3,52 -16,16 -33,15 -47,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20bad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16932"
+         d="m 167,4050 -42,-39 31,-1 c 33,0 57,20 68,58 11,33 -9,27 -57,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6208f;fill-opacity:1;stroke-width:27.17825317"
+         id="path16934"
+         d="m 1326,3997 c -56,-68 -76,-122 -76,-204 0,-63 -3,-74 -22,-87 -12,-9 -33,-16 -46,-16 -37,0 -74,-25 -128,-87 -40,-45 -70,-67 -135,-99 -46,-23 -109,-60 -139,-83 -30,-23 -73,-47 -95,-53 -22,-7 -55,-23 -74,-35 -19,-13 -38,-23 -43,-23 -11,0 -2,-50 12,-63 4,-5 29,1 55,12 26,12 61,21 77,21 16,0 55,14 88,30 33,17 70,30 83,30 14,0 36,14 54,35 18,20 41,35 53,35 13,0 50,20 84,44 76,54 111,71 159,80 41,8 61,31 71,84 3,18 15,45 26,60 13,18 27,68 41,147 11,66 23,135 26,152 5,31 -9,63 -28,63 -4,0 -24,-19 -43,-43 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#204bd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16936"
+         d="m 7562,3918 c 3,-7 13,-15 22,-16 12,-3 17,1 14,10 -3,7 -13,15 -22,16 -12,3 -17,-1 -14,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62071;fill-opacity:1;stroke-width:27.17825317"
+         id="path16938"
+         d="m 7249,3865 c -3,-2 -61,-20 -129,-40 -133,-37 -224,-79 -348,-157 -42,-27 -88,-51 -102,-54 -14,-3 -32,-8 -41,-10 -9,-2 -71,-41 -139,-85 -123,-80 -194,-120 -240,-134 -13,-4 -47,-23 -73,-41 -27,-19 -60,-34 -74,-34 -14,0 -37,-7 -51,-15 -15,-9 -65,-26 -112,-39 -47,-13 -143,-45 -215,-70 -71,-25 -141,-46 -155,-46 -14,0 -44,-9 -65,-20 -32,-17 -51,-20 -95,-15 -30,4 -76,2 -101,-4 -63,-14 -213,-16 -328,-4 -53,6 -107,7 -123,2 -34,-9 -67,1 -119,37 -57,39 -93,12 -59,-44 35,-57 57,-64 228,-75 110,-6 175,-6 218,2 35,6 99,8 150,5 73,-5 96,-3 129,11 22,10 65,21 95,25 30,4 69,12 85,18 17,6 71,16 120,22 50,6 133,24 185,41 52,16 118,37 147,46 28,8 58,13 67,10 8,-3 32,6 53,20 21,15 65,35 97,45 36,11 111,52 185,102 176,116 206,131 294,157 61,17 89,32 131,69 32,28 75,54 107,64 29,10 83,33 121,52 54,27 79,34 125,34 67,0 150,27 164,53 15,27 2,54 -33,66 -31,11 -91,15 -99,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63e20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16940"
+         d="m 7372,3710 c -101,-49 -148,-65 -263,-90 -55,-12 -116,-33 -153,-53 -33,-19 -73,-37 -87,-41 -15,-3 -51,-22 -80,-42 -54,-36 -75,-47 -239,-119 -47,-21 -93,-44 -102,-53 -25,-21 -22,-49 5,-67 30,-19 45,-14 262,87 88,42 198,88 245,103 96,31 129,51 150,90 13,24 18,26 60,20 45,-5 58,-1 111,37 13,9 65,28 114,43 50,14 92,30 93,36 2,5 15,23 30,40 21,25 23,32 11,40 -28,18 -77,8 -157,-31 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20a5d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16942"
+         d="m 7425,3506 c -22,-13 -60,-27 -85,-31 -25,-4 -84,-22 -132,-41 -48,-19 -93,-34 -100,-34 -7,0 -26,-9 -43,-20 -16,-11 -44,-20 -61,-20 -22,0 -41,-10 -66,-34 -45,-44 -106,-75 -191,-97 -43,-11 -79,-28 -102,-48 -36,-32 -49,-35 -185,-51 -47,-5 -118,-19 -158,-30 -39,-11 -92,-20 -117,-20 -26,0 -92,-15 -151,-35 -57,-19 -114,-35 -126,-35 -12,0 -69,-16 -127,-36 -77,-27 -131,-38 -210,-45 -58,-5 -151,-18 -206,-29 -136,-26 -309,-34 -349,-15 -25,12 -160,30 -286,38 -51,4 -35,-68 23,-103 26,-16 51,-20 134,-20 57,0 122,5 147,12 39,10 46,9 71,-10 33,-26 69,-28 120,-6 28,11 54,14 94,9 38,-4 72,-1 106,9 28,9 76,16 107,16 60,0 309,40 417,67 35,8 88,26 118,39 29,13 67,24 84,24 16,0 53,12 81,26 44,22 61,25 112,22 69,-6 96,2 139,38 22,19 37,23 57,19 33,-7 94,16 130,49 14,13 41,27 60,31 113,22 245,74 420,164 41,21 89,41 105,45 106,24 171,51 212,89 73,67 42,114 -42,63 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16944"
+         d="m 7302,3239 c -27,-18 -39,-20 -65,-12 -28,8 -43,3 -132,-43 -55,-29 -125,-60 -155,-69 -30,-9 -98,-36 -150,-60 -107,-49 -159,-65 -210,-65 -22,0 -51,-11 -78,-29 -46,-32 -100,-46 -204,-56 -38,-4 -115,-24 -180,-47 -62,-22 -151,-46 -198,-54 -47,-8 -122,-24 -166,-34 -89,-21 -316,-45 -340,-36 -8,3 -34,-1 -57,-9 -23,-8 -76,-15 -118,-15 -62,0 -81,-4 -102,-21 -20,-15 -31,-18 -44,-10 -10,5 -52,9 -94,8 -55,-2 -81,2 -101,15 -20,13 -40,16 -104,11 -89,-6 -124,-22 -124,-57 0,-63 110,-99 238,-78 48,8 76,8 108,0 37,-10 52,-9 111,10 60,20 81,22 164,16 86,-6 101,-5 135,14 33,17 63,21 189,26 126,4 172,11 292,40 78,19 159,42 180,51 27,11 52,14 90,9 59,-7 119,9 223,61 46,23 90,36 145,43 62,7 99,19 161,51 45,22 88,41 96,41 9,0 21,7 28,14 6,8 34,22 61,31 67,23 495,231 504,246 4,6 1,15 -6,20 -23,15 -62,10 -97,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9320d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16946"
+         d="m 460,3179 c 0,-5 5,-7 10,-4 6,3 10,8 10,11 0,2 -4,4 -10,4 -5,0 -10,-5 -10,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d320d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16948"
+         d="m 360,3171 c 0,-12 29,-35 36,-28 11,10 -5,37 -21,37 -8,0 -15,-4 -15,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16950"
+         d="m 1135,3139 c -38,-11 -74,-24 -80,-29 -8,-6 -30,-2 -64,12 -46,20 -55,21 -84,8 -17,-7 -53,-12 -78,-11 -51,2 -195,-21 -246,-39 -30,-11 -33,-16 -33,-51 0,-26 7,-46 20,-59 25,-25 31,-25 63,0 13,11 51,26 84,34 33,7 68,18 79,23 12,7 44,7 89,2 42,-6 91,-5 122,1 41,7 60,6 87,-5 20,-8 57,-15 83,-15 26,-1 59,-7 73,-15 14,-8 39,-14 56,-15 18,0 51,-9 75,-20 24,-11 64,-20 88,-20 35,0 58,-9 105,-39 57,-38 221,-109 348,-152 32,-10 110,-50 174,-89 109,-65 166,-90 205,-90 19,0 206,-97 214,-111 4,-5 21,-9 38,-9 18,0 74,-20 126,-45 52,-24 130,-52 174,-61 44,-10 81,-23 84,-31 9,-24 60,-43 115,-43 32,0 108,-16 193,-41 109,-32 166,-43 260,-49 82,-6 155,-19 230,-40 61,-16 132,-32 158,-34 36,-3 63,-14 103,-41 l 54,-38 144,5 c 160,5 176,10 176,63 0,43 -21,61 -52,44 -31,-16 -226,-13 -253,5 -11,7 -51,16 -89,19 -45,4 -83,15 -113,32 -25,14 -62,25 -82,25 -20,0 -60,11 -89,25 -34,16 -72,25 -101,25 -27,0 -74,9 -106,20 -32,11 -65,20 -73,20 -8,0 -38,11 -66,24 -42,20 -77,26 -200,34 -142,10 -153,12 -220,47 -39,19 -90,37 -113,39 -29,2 -54,13 -85,39 -23,19 -72,45 -108,56 -35,12 -76,32 -90,46 -14,13 -47,33 -75,45 -27,12 -58,29 -69,38 -11,11 -35,17 -65,17 -37,0 -60,8 -102,34 -99,63 -183,108 -309,166 -69,32 -141,71 -160,86 -33,27 -170,88 -289,130 -59,21 -125,25 -164,10 -20,-8 -29,-5 -48,15 -26,28 -24,28 -114,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620a5;fill-opacity:1;stroke-width:27.17825317"
+         id="path16952"
+         d="m 7318,3046 c -32,-7 -65,-19 -75,-28 -17,-15 -121,-46 -250,-73 -34,-8 -71,-19 -82,-25 -25,-13 -27,-42 -6,-60 28,-23 146,6 228,58 22,13 67,29 101,36 84,18 166,60 166,86 0,23 -4,23 -82,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path16954"
+         d="m 456,3015 c -38,-35 -23,-52 29,-35 28,9 35,16 33,33 -4,31 -30,32 -62,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16956"
+         d="m 917,2941 c -26,-11 -67,-19 -90,-18 -43,1 -157,-43 -157,-61 0,-5 10,-24 23,-43 17,-25 30,-34 51,-34 28,0 38,10 50,48 7,21 35,18 160,-19 44,-13 97,-24 118,-24 40,0 151,-38 202,-70 25,-15 43,-18 86,-13 49,5 66,1 147,-35 51,-22 108,-53 128,-70 53,-47 100,-58 168,-38 76,22 85,21 101,-18 12,-28 20,-34 57,-40 63,-10 117,-37 178,-89 42,-36 66,-49 110,-57 31,-6 77,-15 104,-20 26,-6 101,-36 166,-69 66,-32 134,-62 152,-66 18,-4 76,-25 129,-46 52,-21 149,-54 215,-73 66,-19 140,-42 164,-52 38,-15 50,-16 93,-4 49,12 51,12 75,-14 32,-35 147,-86 193,-86 29,0 45,7 68,31 l 30,30 21,-30 c 23,-32 133,-91 170,-91 57,0 99,104 49,118 -13,3 -47,18 -77,34 -55,29 -141,48 -141,32 0,-5 -7,-17 -15,-28 -14,-18 -16,-17 -61,13 -71,46 -145,70 -242,77 -48,4 -98,12 -112,19 -14,7 -45,16 -70,20 -25,4 -92,28 -150,53 -58,25 -148,58 -201,73 -53,15 -139,49 -190,75 -52,26 -159,69 -238,96 -122,41 -150,55 -183,88 -51,50 -163,97 -281,116 -77,12 -109,24 -196,71 -139,74 -215,101 -328,118 -56,8 -108,23 -127,35 -63,38 -131,58 -266,75 -21,3 -54,-3 -83,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+         id="path16958"
+         d="m 397,2904 c -9,-10 2,-24 19,-24 8,0 14,7 14,15 0,15 -21,21 -33,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#208fd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16960"
+         d="m 7349,2854 c -11,-14 -10,-15 11,-12 13,1 25,9 28,16 5,17 -23,15 -39,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6c220;fill-opacity:1;stroke-width:27.17825317"
+         id="path16962"
+         d="m 470,2830 c 0,-33 35,-60 78,-60 46,0 71,17 74,50 3,25 2,25 -74,28 -73,3 -78,1 -78,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16964"
+         d="m 790,2694 c -45,-19 -43,-17 -27,-55 28,-67 46,-74 173,-71 95,2 122,-1 169,-19 31,-12 68,-19 81,-16 13,2 27,1 30,-4 2,-5 36,-18 74,-29 38,-11 72,-25 75,-30 3,-6 19,-10 34,-10 16,0 48,-11 72,-24 24,-14 86,-36 137,-49 51,-14 103,-32 115,-40 13,-8 64,-25 114,-37 58,-14 111,-34 143,-55 60,-38 83,-47 305,-116 94,-28 210,-70 259,-91 49,-22 144,-55 210,-74 278,-82 354,-103 416,-119 36,-9 88,-28 117,-42 58,-29 95,-26 113,8 19,35 -8,63 -77,77 -33,7 -101,33 -151,58 -61,31 -110,48 -153,54 -73,10 -248,71 -290,101 -29,20 -109,46 -184,58 -23,4 -62,22 -88,40 -27,18 -105,52 -175,76 -70,23 -176,66 -237,94 -65,31 -163,67 -240,87 -71,19 -168,53 -215,76 -66,33 -100,43 -157,48 -44,3 -78,11 -90,22 -10,9 -43,24 -73,33 -30,9 -68,21 -85,27 -88,29 -109,31 -180,19 -60,-10 -77,-9 -108,4 -45,18 -62,18 -107,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16966"
+         d="m 696,2610 c 12,-12 28,-20 35,-18 9,3 0,12 -21,22 l -35,18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b1d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16968"
+         d="m 7090,2599 c -25,-14 -51,-19 -90,-18 -30,1 -74,-3 -97,-10 -23,-6 -54,-9 -68,-5 -14,4 -42,-1 -66,-10 -23,-9 -75,-21 -116,-26 -41,-5 -89,-16 -106,-24 -18,-8 -73,-18 -124,-21 -75,-6 -98,-12 -124,-31 -24,-17 -46,-24 -79,-24 -26,0 -91,-13 -146,-30 -64,-19 -119,-29 -154,-28 -40,1 -67,-5 -100,-22 -34,-17 -72,-25 -155,-31 -238,-19 -514,-30 -585,-24 -42,4 -102,2 -135,-4 -33,-6 -71,-11 -85,-11 -14,1 -85,2 -157,3 -117,2 -133,1 -133,-14 0,-30 65,-71 132,-83 24,-4 50,-1 78,10 34,14 47,15 61,6 26,-16 60,-15 87,4 19,13 28,13 56,3 28,-10 43,-10 74,0 34,11 43,11 72,-4 27,-14 39,-15 77,-5 25,6 109,15 187,20 77,4 156,14 173,20 27,10 41,9 78,-6 43,-16 48,-16 81,-1 19,10 60,17 92,17 31,1 84,7 117,15 33,8 76,15 95,15 19,0 55,10 80,21 29,13 82,24 147,30 122,11 150,20 185,62 25,30 27,31 45,15 16,-15 34,-17 118,-12 83,4 119,12 215,46 130,46 282,94 321,102 14,3 38,15 54,27 26,21 26,23 9,36 -25,18 -73,15 -114,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16970"
+         d="m 519,2459 c -11,-6 -11,-11 -2,-20 12,-12 43,-6 43,10 0,14 -25,20 -41,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cbd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16972"
+         d="m 795,2461 -30,-7 31,-31 c 42,-43 100,-58 153,-39 40,13 42,13 59,-11 13,-18 33,-28 72,-35 30,-5 75,-20 102,-34 26,-13 58,-24 71,-24 14,0 41,-7 60,-15 20,-8 46,-15 58,-15 12,0 66,-18 121,-40 54,-22 122,-42 151,-46 29,-4 76,-20 105,-35 30,-16 70,-31 90,-34 21,-4 53,-15 72,-24 19,-10 53,-24 75,-31 22,-7 45,-16 51,-21 5,-4 20,-6 31,-3 29,8 87,-12 150,-53 38,-24 79,-39 145,-52 52,-10 131,-30 176,-45 46,-14 90,-26 98,-26 9,0 31,-12 50,-26 25,-19 52,-28 101,-34 45,-5 114,-25 201,-60 134,-52 134,-52 216,-45 80,6 82,6 120,-24 25,-20 50,-31 71,-31 19,0 50,-12 76,-30 55,-37 91,-39 118,-4 39,49 30,60 -76,94 -54,18 -125,43 -158,58 -48,20 -79,26 -155,28 -105,2 -107,3 -201,57 -50,28 -84,39 -139,46 -55,7 -86,18 -129,44 -40,25 -64,34 -83,30 -17,-3 -37,2 -55,15 -15,10 -37,22 -48,25 -115,32 -246,77 -319,109 -49,22 -107,42 -130,45 -45,5 -91,22 -246,94 -65,30 -132,53 -175,60 -38,6 -104,26 -146,45 -42,19 -82,34 -88,34 -6,0 -45,12 -87,26 -55,19 -86,25 -114,20 -29,-5 -49,-1 -80,15 -36,19 -51,21 -114,15 -53,-5 -84,-2 -115,9 -45,16 -85,17 -136,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317"
+         id="path16974"
+         d="m 690,2441 c 0,-21 26,-36 36,-20 9,15 -3,39 -21,39 -8,0 -15,-9 -15,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6207a;fill-opacity:1;stroke-width:27.17825317"
+         id="path16976"
+         d="m 7135,2376 c -11,-8 -81,-21 -155,-30 -74,-9 -166,-26 -205,-37 -38,-11 -112,-26 -164,-35 -52,-8 -102,-19 -111,-24 -9,-5 -34,-6 -57,-3 -43,6 -139,-18 -178,-43 -19,-12 -31,-13 -69,-3 -41,10 -55,9 -131,-15 -46,-14 -121,-42 -165,-61 -45,-19 -88,-35 -95,-35 -42,0 -119,-25 -145,-47 -34,-28 -38,-53 -12,-76 26,-24 51,-21 123,13 34,16 83,32 108,36 25,4 59,17 74,30 44,37 121,56 257,66 159,10 177,11 220,3 25,-4 91,7 225,40 157,38 205,54 273,92 63,34 92,44 117,41 24,-3 36,1 44,14 7,11 23,18 41,18 31,0 56,30 46,56 -7,17 -15,17 -41,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path16978"
+         d="m 3934,2336 c -10,-25 29,-61 79,-74 23,-5 62,-18 86,-27 32,-11 57,-14 85,-9 23,4 74,7 114,5 71,-2 212,29 212,48 0,4 -6,16 -14,27 -13,17 -28,19 -128,21 -199,3 -342,10 -385,18 -35,6 -44,5 -49,-9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63a20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16980"
+         d="m 916,2277 c -18,-13 -18,-15 -2,-39 15,-24 30,-33 116,-72 19,-8 64,-34 100,-56 51,-33 72,-40 100,-37 24,2 56,-6 105,-29 38,-17 135,-48 215,-67 174,-43 268,-75 375,-130 45,-22 98,-41 120,-43 22,-1 70,-14 106,-28 36,-13 107,-29 158,-35 97,-11 135,-27 181,-77 l 25,-27 -55,7 c -30,4 -87,18 -126,32 -39,13 -87,24 -107,24 -41,0 -162,41 -222,75 -22,13 -60,26 -85,30 -25,4 -63,16 -84,27 -28,14 -52,19 -82,15 -27,-3 -50,1 -62,9 -11,7 -58,18 -105,24 -106,13 -333,82 -405,122 -37,21 -60,28 -77,24 -14,-4 -25,-10 -25,-15 0,-5 26,-33 58,-62 68,-62 192,-129 240,-129 18,0 43,-7 56,-16 13,-8 64,-24 113,-34 48,-11 129,-31 178,-45 50,-14 124,-34 165,-46 88,-23 180,-67 194,-91 8,-13 6,-22 -7,-35 -16,-16 -20,-16 -79,14 -35,17 -81,37 -103,44 -22,6 -57,20 -77,30 -54,28 -92,4 -67,-43 17,-31 2,-34 -29,-6 -36,34 -58,44 -112,53 -25,4 -60,16 -78,27 -18,11 -64,24 -102,29 -39,5 -85,16 -102,26 -18,9 -49,18 -68,19 -19,2 -81,9 -137,17 -57,7 -103,10 -103,5 0,-9 32,-24 70,-32 14,-3 30,-15 35,-28 6,-13 35,-36 68,-52 l 58,-29 22,21 21,22 30,-34 c 24,-25 43,-35 79,-40 27,-4 67,-14 90,-23 23,-8 74,-19 112,-24 115,-14 179,-32 223,-62 50,-35 107,-44 177,-27 49,12 56,11 87,-7 18,-12 44,-24 58,-28 14,-4 56,-23 94,-41 52,-25 74,-31 87,-23 13,7 27,3 56,-16 62,-40 66,-45 52,-61 -16,-20 -28,-18 -79,16 -50,33 -90,38 -114,14 -24,-23 -21,-30 36,-90 51,-54 54,-55 95,-49 36,5 43,3 53,-15 6,-12 10,-42 8,-68 -3,-45 -2,-47 37,-65 45,-22 64,-43 65,-72 0,-32 57,-143 86,-170 14,-13 43,-28 63,-31 40,-7 106,-38 116,-54 4,-6 23,3 46,22 l 39,32 -22,23 c -12,13 -39,28 -59,33 -33,9 -41,18 -63,66 l -25,55 -45,-6 c -40,-6 -46,-5 -61,19 -31,48 2,59 76,27 25,-11 80,-27 123,-36 74,-15 82,-15 123,0 l 44,17 52,-35 53,-34 34,24 c 31,22 43,24 100,20 69,-5 100,4 100,29 0,23 38,8 77,-29 l 32,-30 48,29 c 39,24 49,36 51,61 4,44 -24,59 -83,44 -48,-12 -223,-14 -294,-3 -36,6 -48,13 -61,37 -9,17 -34,38 -58,49 -49,23 -52,33 -14,47 29,11 68,8 117,-9 17,-6 59,-18 95,-27 79,-21 97,-28 132,-57 l 28,-22 42,35 c 38,30 50,34 116,38 103,5 155,-5 197,-39 27,-21 44,-28 63,-24 18,3 39,-3 62,-17 l 35,-22 -35,-10 c -24,-6 -55,-5 -100,4 -113,23 -190,8 -174,-34 3,-9 28,-33 54,-52 36,-27 55,-34 73,-30 17,5 26,2 31,-10 9,-25 -1,-35 -35,-35 -17,0 -39,-5 -50,-10 -25,-14 -25,-62 1,-85 27,-24 25,-32 -11,-50 -50,-26 -62,-15 -54,53 6,50 4,61 -15,85 -26,33 -78,37 -104,8 -13,-14 -15,-29 -10,-73 6,-51 5,-56 -21,-76 -15,-12 -33,-22 -40,-22 -15,0 -45,-33 -45,-49 0,-7 16,-33 36,-57 l 37,-45 22,21 c 30,28 57,27 50,-3 -10,-40 44,-73 136,-81 69,-6 77,-5 94,15 19,20 19,22 2,51 -22,39 -22,71 3,93 24,22 25,38 5,69 -14,21 -13,25 30,71 l 45,49 30,-22 c 24,-18 34,-20 50,-12 25,14 40,41 40,77 1,37 49,90 81,89 15,-1 25,5 27,18 5,25 -16,37 -53,30 -23,-4 -35,0 -50,16 -26,29 -13,49 53,79 57,27 62,39 32,66 -17,15 -26,17 -48,9 -21,-8 -35,-6 -65,9 -36,19 -45,19 -123,7 -74,-11 -88,-10 -129,6 -34,13 -80,18 -168,19 -177,3 -292,18 -365,49 -40,17 -71,24 -87,20 -26,-6 -155,32 -155,46 0,15 17,21 65,22 35,0 53,-6 82,-28 35,-26 46,-29 123,-30 47,-1 98,-7 113,-13 40,-16 89,-14 116,5 29,21 137,13 181,-13 26,-15 36,-16 90,-5 55,12 65,11 130,-11 l 69,-25 33,24 c 21,16 45,24 74,24 50,0 71,19 54,49 -18,35 -67,54 -117,46 -35,-5 -49,-3 -65,11 -25,23 -100,23 -195,0 -64,-16 -77,-16 -175,-2 -58,9 -130,16 -159,16 -126,1 -364,55 -427,97 -19,14 -78,35 -130,49 -126,33 -188,61 -213,95 l -20,29 h 26 c 36,0 165,-30 195,-45 14,-7 40,-27 58,-45 31,-30 36,-31 88,-24 44,5 64,2 107,-16 28,-12 64,-31 78,-41 21,-15 37,-18 72,-13 37,5 53,2 81,-15 39,-25 63,-22 91,10 18,19 19,19 52,-13 30,-29 40,-33 96,-34 63,-2 87,7 87,33 0,14 -79,53 -109,53 -10,0 -40,11 -66,25 -28,15 -77,30 -119,35 -39,5 -108,20 -151,33 -161,49 -192,57 -208,57 -10,0 -59,18 -110,39 -87,37 -273,91 -315,91 -10,0 -27,9 -38,21 -31,34 -69,49 -127,49 -63,0 -128,18 -228,64 -111,50 -334,132 -423,155 -43,11 -103,32 -133,46 -30,15 -83,32 -118,40 -35,7 -68,16 -73,19 -6,3 -45,11 -88,17 -44,6 -93,19 -111,29 -18,11 -49,22 -70,26 -21,4 -50,13 -65,20 -34,18 -69,18 -92,1 z m 1316,-703 c 30,5 42,2 55,-14 20,-23 76,-43 183,-65 41,-9 104,-29 140,-46 40,-19 91,-34 134,-39 49,-6 74,-13 83,-26 19,-26 -3,-35 -82,-36 -59,-1 -75,4 -192,60 -83,40 -147,63 -181,68 -55,6 -232,85 -232,103 0,7 9,7 28,0 15,-6 44,-8 64,-5 z m 383,-302 c 6,-4 18,-19 28,-34 15,-25 16,-28 2,-28 -13,0 -45,16 -74,37 -5,3 20,33 28,33 3,0 11,-4 16,-8 z m 249,-45 c 52,-13 73,-33 63,-61 -4,-10 -18,-16 -39,-16 -41,0 -178,40 -178,52 0,12 59,37 85,37 11,-1 42,-6 69,-12 z m -202,-94 c 16,-18 48,-77 48,-88 0,-10 -52,-5 -79,9 -47,25 -55,41 -36,70 20,30 45,33 67,9 z m 206,-65 c 21,-21 13,-35 -31,-52 -52,-20 -57,-20 -57,-2 0,16 48,66 64,66 7,0 17,-5 24,-12 z m 142,-57 c 0,-11 -29,-35 -35,-29 -10,9 7,38 21,38 8,0 14,-4 14,-9 z m 910,-110 c 0,-5 -7,-14 -15,-21 -12,-10 -15,-10 -15,2 0,8 3,18 7,21 9,10 23,9 23,-2 z M 3660,631 c 14,-28 12,-63 -6,-89 -17,-25 -41,-28 -67,-8 -17,13 -17,17 15,65 18,28 36,51 40,51 4,0 12,-9 18,-19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d698;fill-opacity:1;stroke-width:27.17825317"
+         id="path16982"
+         d="m 751,2262 c -13,-25 1,-44 30,-40 18,2 25,10 27,31 3,23 0,27 -22,27 -14,0 -30,-8 -35,-18 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d647;fill-opacity:1;stroke-width:27.17825317"
+         id="path16984"
+         d="m 5489,2156 c -2,-3 -48,-7 -102,-10 -54,-3 -106,-10 -115,-15 -9,-4 -82,-11 -160,-14 -87,-4 -149,-11 -158,-18 -19,-15 -18,-53 1,-69 25,-20 334,6 536,45 41,9 89,13 105,9 33,-6 60,15 51,40 -9,24 -140,50 -158,32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6920d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16986"
+         d="m 4500,2095 c -44,-9 -55,-15 -55,-31 0,-25 58,-54 108,-54 21,0 51,-7 67,-15 27,-14 33,-14 59,-1 21,11 47,14 92,10 70,-6 131,15 137,48 7,39 -74,55 -243,48 -11,-1 -40,1 -65,3 -25,2 -70,-2 -100,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+         id="path16988"
+         d="m 875,2067 c -4,-13 -5,-39 -3,-58 3,-30 7,-34 39,-40 21,-3 51,-18 69,-32 36,-31 40,-32 63,-14 16,11 16,14 -3,44 -10,18 -32,40 -47,49 -15,9 -47,30 -70,46 l -42,29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16990"
+         d="m 6947,2072 c -39,-13 -54,-14 -78,-5 -21,8 -39,9 -57,2 -14,-6 -36,-8 -48,-5 -14,4 -49,-7 -96,-29 -61,-30 -80,-35 -116,-30 -33,5 -50,2 -75,-14 -22,-14 -37,-17 -47,-11 -8,6 -25,10 -37,10 -33,0 -147,-57 -177,-89 -26,-27 -31,-28 -94,-23 -56,4 -70,1 -82,-13 -13,-15 -12,-19 4,-31 10,-7 24,-24 30,-36 7,-13 20,-22 32,-22 41,4 140,27 231,55 53,16 107,29 121,29 14,0 36,10 50,23 20,18 38,23 115,27 78,5 98,10 132,33 22,14 67,32 100,40 68,16 183,86 162,99 -15,9 -11,10 -70,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64b20;fill-opacity:1;stroke-width:27.17825317"
+         id="path16992"
+         d="m 6136,2029 c -69,-11 -160,-59 -164,-85 -5,-34 19,-35 133,-4 111,30 155,51 155,74 0,26 -34,31 -124,15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#be20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16994"
+         d="m 5365,1978 c -33,-10 -121,-26 -195,-34 -74,-9 -146,-21 -159,-27 -36,-18 -47,-41 -33,-71 17,-38 57,-34 129,14 l 60,41 42,-17 c 55,-22 137,-15 178,14 19,13 46,22 70,22 42,0 103,32 103,54 0,31 -107,33 -195,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6c2;fill-opacity:1;stroke-width:27.17825317"
+         id="path16996"
+         d="m 3986,1974 c -24,-23 -19,-57 12,-86 44,-41 66,-48 154,-48 92,0 116,10 120,50 4,32 -35,51 -127,60 -38,4 -84,14 -102,23 -39,21 -38,21 -57,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path16998"
+         d="m 4878,1925 c -7,-8 -181,-16 -317,-16 -93,1 -118,-3 -133,-16 -24,-21 -23,-58 2,-83 26,-26 54,-25 88,0 l 28,21 50,-21 c 32,-14 59,-19 79,-15 35,7 47,7 100,0 56,-8 139,37 143,78 4,36 -22,70 -40,52 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6c7;fill-opacity:1;stroke-width:27.17825317"
+         id="path17000"
+         d="m 5880,1870 c -8,-5 -58,-9 -110,-8 -72,2 -108,-2 -150,-16 -30,-11 -70,-19 -89,-17 -18,1 -75,-7 -125,-18 -50,-10 -128,-24 -173,-30 -45,-5 -97,-17 -114,-26 -21,-11 -43,-15 -65,-10 -24,4 -48,0 -82,-15 -26,-12 -77,-24 -114,-27 -37,-3 -69,-11 -71,-17 -3,-7 1,-27 9,-45 l 14,-34 78,7 c 42,4 118,11 168,14 76,6 97,11 130,34 36,25 52,29 180,38 77,5 162,17 189,26 28,9 104,20 170,24 66,5 147,15 180,23 57,13 60,15 63,47 2,18 0,36 -5,40 -14,14 -68,20 -83,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6207e;fill-opacity:1;stroke-width:27.17825317"
+         id="path17002"
+         d="m 777,1863 c -13,-12 -7,-32 12,-42 24,-14 55,8 45,32 -6,17 -44,24 -57,10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ba20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17004"
+         d="m 3461,1838 c 10,-40 61,-88 91,-88 12,0 40,-8 62,-19 69,-32 107,-41 167,-41 32,0 70,-5 85,-11 61,-22 111,20 77,65 -36,49 -130,84 -148,56 -12,-19 -64,-10 -112,19 -47,29 -133,51 -199,51 -32,0 -32,-1 -23,-32 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path17006"
+         d="m 6737,1803 c -13,-12 -7,-23 12,-23 26,0 35,16 15,24 -19,7 -19,7 -27,-1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17008"
+         d="m 6475,1759 c -63,-31 -138,-39 -176,-18 -16,8 -27,5 -55,-11 -21,-14 -64,-26 -111,-31 -42,-6 -85,-15 -96,-21 -11,-5 -79,-11 -151,-12 -122,-1 -134,-3 -161,-24 -27,-22 -37,-23 -95,-18 -48,5 -72,2 -94,-9 -15,-8 -38,-12 -51,-9 -14,3 -40,-3 -65,-16 -32,-16 -53,-20 -81,-16 -21,3 -50,1 -66,-5 -15,-6 -57,-13 -93,-15 -36,-2 -98,-10 -138,-19 -40,-8 -104,-15 -141,-15 -37,0 -93,-5 -124,-11 -44,-9 -78,-8 -169,4 -120,17 -172,20 -337,19 -62,-1 -109,-6 -117,-13 -23,-19 -16,-55 17,-83 35,-30 42,-31 97,-12 37,13 43,13 79,-6 32,-18 44,-19 78,-10 22,6 78,8 125,5 94,-6 267,10 317,29 27,10 38,9 65,-4 32,-15 36,-14 72,4 34,18 51,19 130,13 l 92,-7 52,35 c 46,32 55,34 81,24 23,-8 42,-7 88,6 32,9 99,19 148,22 192,12 250,21 277,39 23,15 32,16 63,6 30,-10 40,-9 62,5 16,11 36,15 54,11 21,-4 46,3 88,24 79,40 114,47 146,26 29,-19 54,-15 79,13 14,16 29,17 115,13 94,-4 99,-4 115,19 21,31 20,62 -2,82 -25,23 -47,20 -117,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17010"
+         d="m 4062,1768 c -21,-21 -14,-72 12,-97 21,-20 31,-22 73,-16 38,5 62,1 115,-19 62,-23 82,-26 250,-28 197,-3 221,1 238,48 14,35 2,57 -27,49 -13,-3 -43,0 -66,7 -23,6 -105,13 -182,14 -77,2 -153,3 -170,4 -16,0 -48,6 -70,14 -47,16 -130,36 -148,36 -7,0 -18,-5 -25,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#6020d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17012"
+         d="m 6667,1773 c -13,-12 -7,-23 13,-23 11,0 20,7 20,15 0,15 -21,21 -33,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2d20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17014"
+         d="m 799,1644 c -17,-21 0,-49 31,-49 31,0 48,28 31,49 -8,9 -21,16 -31,16 -10,0 -23,-7 -31,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d64f;fill-opacity:1;stroke-width:27.17825317"
+         id="path17016"
+         d="m 3662,1608 c -15,-15 -15,-30 0,-62 22,-49 51,-59 172,-57 116,2 139,10 134,45 -2,16 -11,22 -37,24 -19,2 -44,10 -57,18 -12,9 -53,20 -90,25 -37,5 -76,12 -88,15 -12,3 -27,-1 -34,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#203ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17018"
+         d="m 6280,1565 c -41,-8 -94,-14 -117,-14 -24,-1 -66,-10 -95,-21 -29,-11 -73,-20 -98,-20 -65,0 -162,-25 -177,-46 -31,-42 37,-85 97,-60 36,16 189,46 348,70 71,11 101,20 127,41 30,22 33,29 25,46 -12,22 -9,21 -110,4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17020"
+         d="m 6740,1525 c -7,-8 -8,-15 -2,-15 5,0 15,7 22,15 7,8 8,15 2,15 -5,0 -15,-7 -22,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a0d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17022"
+         d="m 6447,1501 c -17,-15 -51,-40 -74,-55 -24,-14 -43,-30 -43,-35 0,-16 -52,-23 -206,-30 -143,-6 -153,-8 -186,-33 -24,-18 -39,-24 -49,-17 -22,14 -83,11 -105,-6 -10,-8 -30,-15 -43,-15 -39,0 -187,-48 -201,-65 -7,-8 -9,-22 -6,-31 5,-14 18,-15 89,-9 45,3 106,13 136,21 29,8 65,12 80,9 20,-4 35,1 56,17 21,16 45,23 89,25 65,4 164,10 182,12 6,0 23,12 39,25 20,17 44,25 84,29 67,5 197,54 272,102 30,19 66,40 82,47 15,7 27,16 27,20 0,29 -88,16 -130,-19 l -30,-25 v 25 c 0,37 -26,40 -63,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path17024"
+         d="m 1181,1506 c -14,-17 9,-39 33,-30 19,7 20,16 4,32 -15,15 -23,15 -37,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62d20;fill-opacity:1;stroke-width:27.17825317"
+         id="path17026"
+         d="m 1027,1487 -37,-12 31,-33 c 32,-34 46,-37 62,-10 10,16 2,69 -11,67 -4,0 -24,-6 -45,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#a920d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17028"
+         d="m 908,1483 c 6,-2 18,-2 25,0 6,3 1,5 -13,5 -14,0 -19,-2 -12,-5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2060d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17030"
+         d="m 1375,1478 c -79,-19 -90,-24 -93,-42 -7,-36 15,-41 57,-12 l 40,28 42,-35 c 44,-38 133,-84 180,-94 16,-3 49,0 73,7 40,11 47,10 74,-10 21,-16 47,-23 89,-25 43,-2 74,-11 120,-35 44,-23 76,-33 114,-34 48,-1 54,2 68,26 15,26 14,28 -13,57 -41,43 -84,54 -170,46 -62,-5 -75,-4 -96,13 -14,11 -53,30 -86,44 -54,22 -65,23 -85,12 -35,-19 -46,-18 -137,20 -100,42 -125,47 -177,34 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65c20;fill-opacity:1;stroke-width:27.17825317"
+         id="path17032"
+         d="m 5627,1424 c -23,-12 -35,-13 -59,-5 -43,15 -81,14 -104,-4 -11,-8 -42,-14 -75,-15 -31,0 -92,-6 -135,-14 -44,-8 -110,-18 -149,-21 -38,-4 -95,-13 -125,-22 -30,-8 -90,-18 -133,-23 -94,-9 -104,-17 -83,-59 20,-38 32,-38 127,-5 65,23 79,25 117,15 61,-16 94,-14 153,9 31,13 93,24 159,29 60,5 122,16 139,24 21,11 48,14 84,11 45,-4 59,-1 105,26 36,21 52,37 50,48 -4,23 -36,25 -71,6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62093;fill-opacity:1;stroke-width:27.17825317"
+         id="path17034"
+         d="m 4125,1346 c -21,-15 -17,-60 6,-64 23,-4 48,24 42,47 -7,26 -27,33 -48,17 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c7d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17036"
+         d="m 4236,1342 c -3,-5 1,-37 9,-71 14,-60 14,-64 -7,-101 l -22,-38 42,-39 c 56,-50 60,-83 12,-99 -19,-6 -35,-17 -35,-24 0,-16 151,-53 182,-45 34,8 42,54 14,76 -12,10 -26,19 -33,21 -8,3 -6,18 5,53 30,87 17,115 -52,115 -42,0 -40,22 4,71 41,46 42,53 13,73 -24,17 -123,22 -132,8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17038"
+         d="m 4424,1294 c -33,-79 20,-134 82,-85 15,12 40,21 55,21 18,0 41,11 61,30 32,30 33,30 13,46 -12,9 -30,13 -45,9 -75,-17 -100,-17 -125,-1 -26,17 -26,17 -41,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#b620d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17040"
+         d="m 4694,1299 c -11,-18 13,-34 31,-19 8,7 15,16 15,21 0,13 -38,11 -46,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17042"
+         d="m 6486,1271 c -4,-5 -2,-12 3,-15 5,-4 12,-2 15,3 4,5 2,12 -3,15 -5,4 -12,2 -15,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#60d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17044"
+         d="m 6391,1256 c -10,-12 -8,-17 6,-25 24,-12 48,2 40,23 -8,20 -31,21 -46,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d64720;fill-opacity:1;stroke-width:27.17825317"
+         id="path17046"
+         d="m 6223,1220 c -47,-27 -57,-29 -116,-23 -41,3 -77,1 -98,-7 -36,-13 -144,-30 -219,-34 -25,-2 -76,-18 -115,-35 -62,-29 -77,-32 -134,-28 -53,4 -66,2 -82,-14 -36,-36 -12,-99 38,-99 27,0 131,36 161,56 20,13 39,15 97,9 57,-5 80,-3 104,9 23,12 35,14 54,5 18,-8 35,-6 78,10 29,12 71,21 92,21 23,0 52,9 76,25 24,16 66,31 111,38 41,7 75,17 77,23 4,12 -50,74 -64,74 -4,0 -31,-14 -60,-30 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317"
+         id="path17048"
+         d="m 5316,1223 c -4,-5 -35,-9 -69,-9 -99,-3 -219,-20 -261,-38 -30,-14 -45,-15 -68,-7 -42,15 -82,-5 -86,-41 -3,-29 2,-32 75,-43 60,-9 130,4 163,31 26,23 30,23 64,9 67,-28 152,-13 222,40 34,26 35,28 18,46 -18,19 -45,25 -58,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#32d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17050"
+         d="m 1457,1212 c -14,-6 -9,-14 35,-46 51,-38 55,-40 139,-42 53,-1 97,3 111,11 19,10 30,8 62,-7 24,-12 48,-17 63,-13 16,4 50,-3 92,-19 97,-36 222,-77 253,-83 22,-4 36,3 74,40 l 48,45 -32,16 c -21,11 -56,16 -107,16 -45,0 -87,6 -103,14 -55,28 -97,34 -138,20 -36,-13 -41,-12 -68,8 -25,18 -47,22 -130,25 -116,4 -208,10 -251,17 -16,3 -38,2 -48,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#202dd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17052"
+         d="m 4471,1161 c -16,-29 -13,-49 7,-60 22,-12 149,-31 204,-31 46,0 108,30 108,53 0,31 -22,36 -140,30 -99,-5 -120,-3 -142,11 -25,17 -27,17 -37,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#69d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17054"
+         d="m 5325,1053 c -11,-3 -67,-16 -124,-30 -74,-17 -118,-23 -150,-18 -41,6 -49,3 -70,-19 -30,-32 -51,-32 -108,-5 -34,16 -57,20 -99,17 -64,-5 -79,-17 -70,-53 10,-40 46,-49 149,-35 49,7 104,9 123,6 20,-4 43,-2 56,6 13,6 93,17 178,23 l 155,10 18,38 c 27,55 7,75 -58,60 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#3ed620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17056"
+         d="m 6505,1050 c 3,-5 13,-10 21,-10 8,0 12,5 9,10 -3,6 -13,10 -21,10 -8,0 -12,-4 -9,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d687;fill-opacity:1;stroke-width:27.17825317"
+         id="path17058"
+         d="m 6128,1040 c -10,-6 -31,-31 -48,-55 l -31,-45 -22,25 c -21,23 -25,24 -67,13 -76,-18 -101,-30 -117,-55 -14,-21 -14,-26 -2,-34 19,-12 67,-11 109,2 19,6 66,15 105,20 60,8 74,14 107,46 33,32 45,37 85,38 42,0 48,3 51,22 3,20 -1,22 -35,21 -21,-1 -56,2 -78,5 -23,4 -47,3 -57,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cfd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17060"
+         d="m 4573,1003 c -16,-6 -17,-45 -1,-61 18,-18 44,-14 75,12 24,20 25,26 14,40 -13,15 -61,20 -88,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7e20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17062"
+         d="m 1570,975 c 0,-8 7,-15 15,-15 8,0 15,7 15,15 0,8 -7,15 -15,15 -8,0 -15,-7 -15,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620b1;fill-opacity:1;stroke-width:27.17825317"
+         id="path17064"
+         d="m 2170,973 c -19,-9 -64,-19 -100,-22 -61,-6 -65,-8 -65,-31 0,-17 6,-26 20,-28 11,-2 39,-13 63,-24 37,-16 56,-18 121,-12 62,5 84,3 109,-10 36,-19 77,-6 88,26 8,27 -12,46 -68,63 -27,8 -60,23 -75,35 -30,23 -45,24 -93,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d676;fill-opacity:1;stroke-width:27.17825317"
+         id="path17066"
+         d="m 1654,953 c -4,-13 -3,-27 1,-31 8,-8 265,-10 265,-1 0,3 -11,16 -25,29 -23,21 -35,24 -130,25 -103,2 -106,1 -111,-22 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65820;fill-opacity:1;stroke-width:27.17825317"
+         id="path17068"
+         d="m 5699,934 c -11,-14 -9,-20 15,-41 29,-24 76,-29 83,-7 2,6 -6,23 -17,37 -24,30 -61,35 -81,11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17070"
+         d="m 5569,902 c -22,-18 -46,-28 -73,-29 -205,-12 -256,-19 -273,-35 -16,-17 -16,-19 7,-43 24,-25 26,-26 120,-20 74,5 102,12 125,28 23,17 42,21 82,20 65,-3 99,20 89,60 -11,44 -39,51 -77,19 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#205cd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17072"
+         d="m 4221,864 c -30,-27 -31,-31 -19,-60 10,-27 9,-36 -5,-58 -42,-63 0,-94 111,-81 37,4 105,7 152,6 72,-2 90,1 110,17 15,12 21,25 17,36 -6,14 -18,15 -90,10 -90,-7 -127,3 -127,35 0,11 19,28 50,45 34,19 50,34 50,47 0,18 -6,20 -57,18 -32,-1 -81,2 -109,6 -47,7 -53,5 -83,-21 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62520;fill-opacity:1;stroke-width:27.17825317"
+         id="path17074"
+         d="m 4611,876 c -28,-33 30,-86 76,-70 37,13 52,40 33,58 -24,23 -94,30 -109,12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#5c20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17076"
+         d="m 1345,830 c -8,-13 42,-43 60,-36 23,8 18,25 -11,36 -32,12 -41,12 -49,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17078"
+         d="m 3153,833 c -18,-7 -16,-49 3,-67 32,-32 54,-39 73,-22 10,9 39,23 64,32 72,24 62,37 -38,49 -27,3 -59,8 -70,10 -11,1 -26,1 -32,-2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d67e;fill-opacity:1;stroke-width:27.17825317"
+         id="path17080"
+         d="m 4980,820 c -32,-11 -88,-19 -135,-20 -125,-3 -155,-19 -141,-73 8,-33 34,-41 77,-23 19,7 61,17 94,21 33,4 80,16 104,27 30,14 54,18 80,13 29,-5 43,-1 64,15 40,31 34,46 -19,54 -59,8 -58,8 -124,-14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#cf20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17082"
+         d="m 6140,831 c -42,-6 -45,-8 -45,-36 0,-28 3,-30 41,-33 51,-4 157,36 162,61 3,15 -5,17 -55,15 -32,0 -78,-4 -103,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620c2;fill-opacity:1;stroke-width:27.17825317"
+         id="path17084"
+         d="m 2965,825 c -5,-2 -22,-6 -37,-9 -18,-4 -28,-13 -28,-25 0,-28 19,-38 87,-44 55,-6 64,-4 73,13 16,30 12,40 -25,56 -34,14 -50,16 -70,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6b120;fill-opacity:1;stroke-width:27.17825317"
+         id="path17086"
+         d="m 1167,794 c -8,-8 1,-24 14,-24 5,0 9,7 9,15 0,15 -12,20 -23,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d693;fill-opacity:1;stroke-width:27.17825317"
+         id="path17088"
+         d="m 1643,784 c -3,-8 1,-23 10,-32 15,-14 17,-14 23,1 8,21 -1,47 -16,47 -6,0 -13,-7 -17,-16 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17090"
+         d="m 5872,774 c -35,-13 -43,-20 -40,-38 3,-19 9,-21 58,-20 30,0 79,4 108,9 46,7 52,11 52,31 0,20 -5,24 -32,24 -18,0 -49,2 -68,5 -19,2 -54,-3 -78,-11 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#add620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17092"
+         d="m 1830,755 c -14,-16 -6,-35 16,-35 8,0 14,-9 14,-19 0,-15 9,-20 43,-24 23,-3 55,-8 70,-12 22,-6 33,-2 52,15 19,18 27,20 43,11 49,-26 80,-6 68,44 -7,29 -35,32 -128,15 -45,-9 -65,-8 -99,5 -55,18 -64,19 -79,0 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d68b;fill-opacity:1;stroke-width:27.17825317"
+         id="path17094"
+         d="m 2270,745 c -20,-24 -4,-43 42,-49 130,-16 195,-17 206,-3 14,17 -6,39 -51,56 -44,17 -182,14 -197,-4 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d69320;fill-opacity:1;stroke-width:27.17825317"
+         id="path17096"
+         d="m 3855,723 c -35,-19 -45,-31 -38,-50 8,-20 45,-26 90,-14 56,15 68,32 42,59 -23,26 -53,27 -94,5 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17098"
+         d="m 5665,710 c -11,-5 -35,-9 -53,-9 -62,-2 -49,-61 13,-61 25,0 40,8 59,31 39,46 31,61 -19,39 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#208bd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17100"
+         d="m 5366,678 -25,-29 -40,21 c -48,24 -72,25 -112,5 -20,-11 -77,-18 -177,-24 -162,-8 -222,-25 -222,-60 0,-51 84,-52 198,-2 67,30 74,31 94,16 29,-20 94,-19 149,1 26,10 81,18 136,19 74,2 98,6 127,24 20,13 36,31 36,40 0,16 -10,18 -69,18 -64,0 -71,-2 -95,-29 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63220;fill-opacity:1;stroke-width:27.17825317"
+         id="path17102"
+         d="m 1505,640 c -23,-26 -5,-50 37,-50 24,0 29,4 26,21 -2,12 -12,28 -24,35 -18,13 -23,12 -39,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2098d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17104"
+         d="m 3131,640 c -25,-22 -66,-26 -77,-9 -7,13 -107,3 -137,-13 -10,-5 -25,-26 -34,-45 -20,-50 -8,-56 102,-47 50,4 116,8 147,9 65,1 91,18 91,59 0,31 -29,66 -52,66 -9,-1 -27,-10 -40,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#bad620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17106"
+         d="m 6123,648 c -30,-14 -29,-28 1,-28 21,0 56,22 56,36 0,8 -35,3 -57,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#ad20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17108"
+         d="m 1334,615 c 24,-18 39,-20 34,-2 -3,6 -15,13 -29,15 -23,2 -23,2 -5,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2043d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17110"
+         d="m 4314,595 c -13,-20 -15,-31 -7,-44 11,-16 15,-17 138,-11 33,1 101,-1 150,-5 82,-7 92,-6 108,12 30,34 13,48 -77,62 -66,10 -89,10 -107,1 -22,-12 -84,-10 -156,5 -27,6 -34,3 -49,-20 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#4bd620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17112"
+         d="m 5959,611 c -42,-13 -68,-30 -80,-52 -9,-18 -8,-20 8,-16 10,3 44,13 76,21 56,16 74,37 41,50 -9,3 -16,6 -17,5 -1,0 -14,-4 -28,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d65c;fill-opacity:1;stroke-width:27.17825317"
+         id="path17114"
+         d="m 4080,564 c -21,-21 -22,-27 -10,-35 20,-13 89,-4 108,14 24,25 8,47 -36,47 -28,0 -45,-7 -62,-26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ad6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17116"
+         d="m 2314,560 c -31,-13 -37,-26 -18,-45 11,-11 25,-14 38,-10 54,17 67,17 86,0 21,-19 54,-13 48,8 -10,30 -116,63 -154,47 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#65d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17118"
+         d="m 2620,557 c -13,-7 -28,-20 -34,-29 -26,-42 46,-77 85,-42 43,39 1,97 -51,71 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d620d3;fill-opacity:1;stroke-width:27.17825317"
+         id="path17120"
+         d="m 5671,549 c -30,-10 -63,-17 -73,-13 -13,4 -18,0 -18,-14 0,-15 12,-21 55,-31 67,-15 105,-8 136,25 24,25 24,26 5,40 -25,18 -39,17 -105,-7 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2520d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17122"
+         d="m 3987,546 c -3,-7 -1,-18 5,-24 14,-14 48,3 48,23 0,19 -46,20 -53,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d67620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17124"
+         d="m 5486,528 c -9,-12 -16,-31 -16,-41 0,-15 6,-18 33,-15 26,2 33,8 35,30 5,39 -31,57 -52,26 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6cf20;fill-opacity:1;stroke-width:27.17825317"
+         id="path17126"
+         d="m 5293,488 -42,-42 -26,24 c -14,13 -28,21 -31,18 -11,-12 17,-48 42,-54 53,-13 258,19 214,34 -8,2 -28,18 -44,33 -39,39 -64,36 -113,-13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d65420;fill-opacity:1;stroke-width:27.17825317"
+         id="path17128"
+         d="m 3259,466 c -24,-19 -64,-40 -89,-46 -25,-7 -51,-17 -57,-22 -18,-14 -16,-43 3,-62 20,-20 83,-12 136,17 29,16 43,18 60,11 40,-18 133,-9 164,15 14,11 33,21 40,21 8,0 14,9 14,19 0,16 -10,20 -60,26 -38,4 -73,16 -96,31 -46,32 -62,30 -115,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17130"
+         d="m 5090,475 c -11,-13 -10,-18 6,-30 25,-19 43,-19 50,0 7,17 -12,45 -31,45 -7,0 -18,-7 -25,-15 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20c2d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17132"
+         d="m 4848,459 c -16,-6 -28,-14 -28,-18 0,-12 83,-71 99,-71 9,1 32,9 51,18 28,14 35,23 35,47 v 30 l -65,2 c -36,1 -77,-3 -92,-8 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#207ed6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17134"
+         d="m 2950,440 c -27,-27 -25,-44 6,-69 34,-26 68,-27 94,-1 25,25 25,41 0,68 -26,28 -73,29 -100,2 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#8f20d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17136"
+         d="m 4530,429 c -62,-10 -110,-27 -110,-39 0,-16 62,-59 93,-65 18,-4 53,-2 78,4 31,7 66,7 105,1 32,-6 60,-10 61,-10 1,0 9,7 17,16 19,18 21,75 4,92 -14,14 -163,14 -248,1 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#2065d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17138"
+         d="m 4242,395 c -39,-17 -46,-33 -33,-68 13,-33 41,-35 105,-7 32,13 46,25 46,39 0,47 -54,64 -118,36 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d6b6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17140"
+         d="m 2644,335 -16,-25 -33,20 c -48,30 -100,25 -73,-7 15,-18 74,-43 102,-43 28,0 52,19 60,46 10,33 -20,39 -40,9 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d63620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17142"
+         d="m 1876,313 c -3,-3 -6,-15 -6,-25 0,-11 -11,-23 -27,-29 -27,-10 -28,-11 -8,-25 13,-11 32,-14 57,-10 24,4 52,0 78,-10 31,-13 44,-14 53,-5 9,9 4,17 -18,36 -43,34 -121,76 -129,68 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20cbd6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17144"
+         d="m 2100,296 c 0,-7 7,-19 15,-26 20,-16 38,-1 29,23 -7,20 -44,23 -44,3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#9820d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17146"
+         d="m 2735,280 c 3,-5 11,-10 16,-10 6,0 7,5 4,10 -3,6 -11,10 -16,10 -6,0 -7,-4 -4,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#87d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17148"
+         d="m 3740,238 c -19,-5 -53,-8 -74,-5 -45,6 -72,-4 -103,-42 -28,-32 -28,-47 -4,-61 35,-18 57,-11 82,28 28,42 58,46 94,12 12,-11 24,-20 27,-20 3,0 18,19 33,41 21,33 24,43 13,50 -16,10 -23,10 -68,-3 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#c2d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17150"
+         d="m 4800,220 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#47d620;fill-opacity:1;stroke-width:27.17825317"
+         id="path17152"
+         d="m 3408,159 c -37,-19 -50,-47 -25,-53 6,-1 36,-11 65,-20 42,-14 57,-15 68,-5 21,17 18,27 -20,65 -39,39 -39,39 -88,13 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d3d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17154"
+         d="m 2540,130 c 0,-5 5,-10 10,-10 6,0 10,5 10,10 0,6 -4,10 -10,10 -5,0 -10,-4 -10,-10 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#20d629;fill-opacity:1;stroke-width:27.17825317"
+         id="path17156"
+         d="m 3218,114 c -34,-18 -35,-30 -4,-38 35,-9 80,10 72,30 -3,9 -6,18 -6,20 0,9 -37,2 -62,-12 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d6203a;fill-opacity:1;stroke-width:27.17825317"
+         id="path17158"
+         d="m 2424,106 c -8,-21 3,-36 27,-36 15,0 20,6 17,22 -4,27 -35,37 -44,14 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#7120d6;fill-opacity:1;stroke-width:27.17825317"
+         id="path17160"
+         d="m 3926,82 c -9,-14 31,-45 49,-38 25,9 13,41 -17,44 -14,2 -29,-1 -32,-6 z"
+         inkscape:connector-curvature="0" />
+      <path
+         style="opacity:1;fill:#d62060;fill-opacity:1;stroke-width:27.17825317"
+         id="path17162"
+         d="m 3328,49 c -29,-17 -21,-38 18,-45 39,-7 58,4 52,32 -4,22 -44,29 -70,13 z"
+         inkscape:connector-curvature="0" />
+    </g>
+    <g
+       id="g17170"
+       transform="translate(0,21.166669)">
+      <rect
+         y="214.11124"
+         x="229.20349"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect17166"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccac"
+         inkscape:connector-curvature="0"
+         id="path17168"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <g
+       id="g17176"
+       transform="translate(27.642182,21.166669)">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="rect17172"
+         width="6.4190478"
+         height="6.0870934"
+         x="229.20349"
+         y="214.11124" />
+      <path
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         id="path17174"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccac" />
+    </g>
+    <g
+       transform="translate(0,63.500002)"
+       id="g17190">
+      <rect
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none"
+         id="rect17184"
+         width="6.4190478"
+         height="6.0870934"
+         x="271.02481"
+         y="171.77791" />
+      <path
+         id="path17186"
+         style="fill:none;stroke:#0000ff;stroke-width:0.30000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 276.76307,174.71979 -0.55614,0.62198 -0.43695,-0.73081 m -1.05123,2.34185 c -0.95683,0.31902 -1.98272,-0.0735 -2.49411,-0.95422 -0.51138,-0.88073 -0.37872,-2.02658 0.32253,-2.78574 0.70125,-0.75916 1.79345,-0.93931 2.65528,-0.43797 0.86184,0.50135 1.27501,1.55717 1.00445,2.56688"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccccsssc" />
+      <path
+         style="fill:none;stroke:#000000;stroke-width:0.40000001;stroke-linecap:butt;stroke-linejoin:miter;stroke-miterlimit:4;stroke-dasharray:none;stroke-opacity:1"
+         d="m 274.66038,173.5735 -0.45573,1.26593 1.50534,1.16286"
+         id="path17188"
+         inkscape:connector-curvature="0"
+         sodipodi:nodetypes="ccc" />
+    </g>
+    <g
+       transform="translate(41.659286,-44.450002)"
+       id="g43678">
+      <rect
+         y="214.11124"
+         x="229.20349"
+         height="6.0870934"
+         width="6.4190478"
+         id="rect43674"
+         style="fill:#ffffff;fill-opacity:1;stroke:#000000;stroke-width:0.25;stroke-miterlimit:4;stroke-dasharray:none" />
+      <path
+         sodipodi:nodetypes="ccac"
+         inkscape:connector-curvature="0"
+         id="path43676"
+         d="m 230.61096,217.74587 c 0.27385,0.16271 1.03847,0.92203 1.22342,1.17507 0.26091,-0.53184 0.73283,-1.30175 1.19808,-1.88185 0.49072,-0.61186 1.15692,-1.23459 1.66318,-1.66449"
+         style="fill:none;stroke:#008000;stroke-width:0.5;stroke-linecap:butt;stroke-linejoin:miter;stroke-opacity:1" />
+    </g>
+    <text
+       xml:space="preserve"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       x="282.00626"
+       y="195.08264"
+       id="text65721"><tspan
+         sodipodi:role="line"
+         x="282.00626"
+         y="195.08264"
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         id="tspan65719">Is there </tspan><tspan
+         sodipodi:role="line"
+         x="282.00626"
+         y="200.37431"
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         id="tspan65725">new content?</tspan></text>
+    <text
+       id="text65731"
+       y="228.09813"
+       x="282.00626"
+       style="font-style:normal;font-weight:normal;font-size:4.23333311px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.26458332"
+       xml:space="preserve"><tspan
+         id="tspan65729"
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         y="228.09813"
+         x="282.00626"
+         sodipodi:role="line">Syncing new</tspan><tspan
+         style="font-size:4.23333311px;stroke-width:0.26458332"
+         y="233.3898"
+         x="282.00626"
+         sodipodi:role="line"
+         id="tspan65735">content.</tspan></text>
+  </g>
+</svg>
diff --git a/src/doc/index.rst b/src/doc/index.rst
new file mode 100644
index 0000000000000000000000000000000000000000..ee266598cd6cfbcfaa6f54b8e39aa32e4c2b6915
--- /dev/null
+++ b/src/doc/index.rst
@@ -0,0 +1,27 @@
+Welcome to caosadvancedtools' documentation!
+============================================
+
+Welcome to the advanced Python tools for CaosDB!
+
+
+This documentation helps you to :doc:`get started<getting_started>`, explains the most important
+:doc:`concepts<concepts>` and offers a range of :doc:`tutorials<tutorials>`.
+
+.. toctree::
+   :maxdepth: 2
+   :caption: Contents:
+
+   Getting started <README_SETUP>
+   Concepts <concepts>
+   tutorials
+   Caosdb-Crawler <crawler>
+   _apidoc/modules
+
+
+
+Indices and tables
+==================
+
+* :ref:`genindex`
+* :ref:`modindex`
+* :ref:`search`
diff --git a/tox.ini b/tox.ini
index e40e0ad367fb7d909363b6f376734e3c923b9f11..3d7f652203ed0caf9cdfaebbb159784e6f9b2835 100644
--- a/tox.ini
+++ b/tox.ini
@@ -1,5 +1,5 @@
 [tox]
-envlist=py36, py37, py38
+envlist=py36, py37, py38, py39
 skip_missing_interpreters = true
 [testenv]
 deps=nose
@@ -8,5 +8,5 @@ deps=nose
     pytest
     pytest-cov
     openpyxl
-    xlrd
+    xlrd == 1.2
 commands=py.test --cov=caosadvancedtools -vv {posargs}